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

#include "document_db_commit_metrics.h"

namespace proton {

/*
 * Metrics for feeding within a document db.
 */
struct DocumentDBFeedingMetrics : metrics::MetricSet
{
    DocumentDBCommitMetrics commit;

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

}