xref: /openbmc/telemetry/src/metric_value.hpp (revision 5ade2b1d0ccb71a3de23396dea77c375bedc0362)
1 #pragma once
2 
3 #include <cstdint>
4 #include <string>
5 
6 struct MetricValue
7 {
8     std::string id;
9     std::string metadata;
10     double value;
11     uint64_t timestamp;
12 };
13