aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcorespi/index/index_manager_explorer.h
blob: 79a0d8c9fdccff48cf5db33978a7d3fe8e5621fc (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

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

namespace searchcorespi {

/**
 * Class used to explore the state of an index manager.
 */
class IndexManagerExplorer : public vespalib::StateExplorer
{
private:
    IIndexManager::SP _mgr;

public:
    IndexManagerExplorer(IIndexManager::SP mgr);

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

} // namespace searchcorespi