aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/bucketdb/bucket_db_explorer.h
blob: 922ca9f1ad276c01163c0a36a9723bf89c935ec2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "bucket_db_owner.h"
#include <vespa/vespalib/net/http/state_explorer.h>

namespace proton {

/**
 * Class used to explore the state of a bucket db and its buckets.
 */
class BucketDBExplorer : public vespalib::StateExplorer
{
private:
    bucketdb::Guard _bucketDb;

public:
    explicit BucketDBExplorer(bucketdb::Guard bucketDb);
    ~BucketDBExplorer() override;

    void get_state(const vespalib::slime::Inserter &inserter, bool full) const override;
};

} // namespace proton