aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/legacy_proton_metrics.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/metrics/legacy_proton_metrics.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/metrics/legacy_proton_metrics.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/metrics/legacy_proton_metrics.h b/searchcore/src/vespa/searchcore/proton/metrics/legacy_proton_metrics.h
deleted file mode 100644
index 03b73761ce5..00000000000
--- a/searchcore/src/vespa/searchcore/proton/metrics/legacy_proton_metrics.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-#include <vespa/metrics/metrics.h>
-#include "executor_metrics.h"
-
-namespace proton {
-
-/**
- * Metric set for all legacy metrics reported by proton.
- *
- * @deprecated Use ContentProtonMetrics for all new metrics.
- */
-struct LegacyProtonMetrics : metrics::MetricSet
-{
- struct DocumentTypeMetrics : metrics::MetricSet {
- // documentdb metrics will be wired in here (by the metrics engine)
- DocumentTypeMetrics(metrics::MetricSet *parent);
- ~DocumentTypeMetrics();
- };
-
- DocumentTypeMetrics docTypes;
- ExecutorMetrics executor;
- ExecutorMetrics flushExecutor;
- ExecutorMetrics matchExecutor;
- ExecutorMetrics summaryExecutor;
- metrics::SumMetric<metrics::LongValueMetric> memoryUsage;
- metrics::SumMetric<metrics::LongValueMetric> diskUsage;
- metrics::SumMetric<metrics::LongValueMetric> docsInMemory;
- metrics::SumMetric<metrics::LongValueMetric> numDocs;
- metrics::SumMetric<metrics::LongValueMetric> numActiveDocs;
- metrics::SumMetric<metrics::LongValueMetric> numIndexedDocs;
- metrics::SumMetric<metrics::LongValueMetric> numStoredDocs;
- metrics::SumMetric<metrics::LongValueMetric> numRemovedDocs;
- // transport metrics will be wired in here
-
- LegacyProtonMetrics();
- ~LegacyProtonMetrics();
-};
-
-} // namespace proton
-