aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/maintenance_controller_explorer.h
blob: 2f5a4749f7180f66ece40954388be58ca0cdcded (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

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

namespace proton {

/**
 * Class used to explore the state of a maintenance controller and its jobs.
 */
class MaintenanceControllerExplorer : public vespalib::StateExplorer
{
private:
    std::vector<MaintenanceJobRunner::SP> _jobs;

public:
    explicit MaintenanceControllerExplorer(std::vector<MaintenanceJobRunner::SP> jobs);
    ~MaintenanceControllerExplorer() override;

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

} // namespace proton