blob: 5e7c6df792f211894bd626b7e7ba6faab69528f7 [file] [log] [blame]
#pragma once
#include <cstdint>
#include <string>
struct MetricValue
{
std::string metadata;
double value;
uint64_t timestamp;
MetricValue(std::string_view metadataIn, double valueIn,
uint64_t timestampIn) :
metadata(metadataIn),
value(valueIn), timestamp(timestampIn)
{}
};