blob: d01ac4e2b5849510bcce6f4bf8940f1687587d51 [file] [log] [blame]
Krzysztof Grobelnyc8e3a642020-10-23 12:29:16 +02001#pragma once
2
3#include <cstdint>
4#include <string>
5
6struct MetricValue
7{
8 std::string id;
9 std::string metadata;
10 double value;
11 uint64_t timestamp;
12};