aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/document_db_commit_metrics.h
blob: 45c826a7ccfcc423a57b70d6df7be5fbd2a0aa0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/metrics/metricset.h>
#include <vespa/metrics/valuemetric.h>

namespace proton {

/*
 * Metrics for commits during feeding within a document db.
 */
struct DocumentDBCommitMetrics : metrics::MetricSet
{
    metrics::DoubleAverageMetric operations;
    metrics::DoubleAverageMetric latency;

    DocumentDBCommitMetrics(metrics::MetricSet* parent);
    ~DocumentDBCommitMetrics() override;
};

}