// 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 namespace proton { /** * Class used to explore the state of a maintenance controller and its jobs. */ class MaintenanceControllerExplorer : public vespalib::StateExplorer { private: std::vector _jobs; public: explicit MaintenanceControllerExplorer(std::vector jobs); ~MaintenanceControllerExplorer() override; void get_state(const vespalib::slime::Inserter &inserter, bool full) const override; }; } // namespace proton