aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/transactionlog/trans_log_server_explorer.h
blob: 191a9670d91727ab0b9d728dd741aa0bde1aca54 (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
26
27
28
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

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

namespace search::transactionlog {

class TransLogServer;

/**
 * Class used to explore the state of a transaction log server.
 */
class TransLogServerExplorer : public vespalib::StateExplorer
{
private:
    using TransLogServerSP = std::shared_ptr<TransLogServer>;
    TransLogServerSP _server;

public:
    TransLogServerExplorer(TransLogServerSP server) : _server(std::move(server)) {}
    ~TransLogServerExplorer() override;
    void get_state(const vespalib::slime::Inserter &inserter, bool full) const override;
    std::vector<vespalib::string> get_children_names() const override;
    std::unique_ptr<StateExplorer> get_child(vespalib::stringref name) const override;
};

}