| #include "tlbmc/collector/bulk_sensor_collector_base.h" | |
| #include <string_view> | |
| #include "absl/status/status.h" | |
| #include <nlohmann/json.hpp> | |
| #include "sensor.pb.h" | |
| namespace milotic_tlbmc { | |
| absl::Status BulkSensorCollectorBase::WriteToSensor(std::string_view sensor_key, | |
| const SensorValue& value) { | |
| return absl::UnimplementedError("Write is not supported."); | |
| } | |
| nlohmann::json BulkSensorCollectorBase::GetSchedulerStats() const { | |
| return nlohmann::json::object(); | |
| } | |
| } // namespace milotic_tlbmc |