summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem Zuikov <[email protected]>2022-05-20 13:24:16 +0300
committerArtem Zuikov <[email protected]>2022-05-20 13:24:16 +0300
commit0fc17c063fb04779ceefcfc272368703a0b632e3 (patch)
treef2f9dacc27b79d6477a9fae94f7789e615fb1390
parentff30424bb35bc312d6af47aa410862f5b7262673 (diff)
KIKIMR-14904: fix counter ms -> us
ref:666e957b27577e1c22cccb31fdb3529557ed43d6
-rw-r--r--ydb/core/tx/columnshard/columnshard_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/columnshard/columnshard_impl.h b/ydb/core/tx/columnshard/columnshard_impl.h
index 0becdcff7da..6d62b60aab1 100644
--- a/ydb/core/tx/columnshard/columnshard_impl.h
+++ b/ydb/core/tx/columnshard/columnshard_impl.h
@@ -158,7 +158,7 @@ class TColumnShard
}
void IncCounter(NColumnShard::EPercentileCounters counter, const TDuration& latency) const {
- TabletCounters->Percentile()[counter].IncrementFor(latency.MilliSeconds());
+ TabletCounters->Percentile()[counter].IncrementFor(latency.MicroSeconds());
}
protected: