blob: 25b727ab1c7bd4d9d3e0fbf4c0904ce80cef419a [file]
#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