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