aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/update_metric_set.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/vespa/storage/distributor/update_metric_set.cpp')
-rw-r--r--storage/src/vespa/storage/distributor/update_metric_set.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/distributor/update_metric_set.cpp b/storage/src/vespa/storage/distributor/update_metric_set.cpp
index 2505003d2ba..1edde270517 100644
--- a/storage/src/vespa/storage/distributor/update_metric_set.cpp
+++ b/storage/src/vespa/storage/distributor/update_metric_set.cpp
@@ -12,7 +12,10 @@ UpdateMetricSet::UpdateMetricSet(MetricSet* owner)
: PersistenceOperationMetricSet("updates", owner),
diverging_timestamp_updates("diverging_timestamp_updates", {},
"Number of updates that report they were performed against "
- "divergent version timestamps on different replicas", this)
+ "divergent version timestamps on different replicas", this),
+ fast_path_restarts("fast_path_restarts", {}, "Number of safe path (write repair) updates "
+ "that were restarted as fast path updates because all replicas returned "
+ "documents with the same timestamp in the initial read phase", this)
{
}