aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.h b/searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.h
deleted file mode 100644
index 8fa15dffc9d..00000000000
--- a/searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.h
+++ /dev/null
@@ -1,26 +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 "documentdb_tagged_metrics.h"
-#include "legacy_documentdb_metrics.h"
-
-namespace proton {
-
-/**
- * A collection of all the metrics for a document db (both tagged and no-tagged).
- */
-class DocumentDBMetricsCollection
-{
-private:
- LegacyDocumentDBMetrics _metrics;
- DocumentDBTaggedMetrics _taggedMetrics;
-
-public:
- DocumentDBMetricsCollection(const vespalib::string &docTypeName, size_t maxNumThreads);
- ~DocumentDBMetricsCollection();
- LegacyDocumentDBMetrics &getLegacyMetrics() { return _metrics; }
- DocumentDBTaggedMetrics &getTaggedMetrics() { return _taggedMetrics; }
-};
-
-} // namespace proton
-