#pragma once
#include <trantor/utils/Date.h>
#include <vector>
#include <string>
namespace drogon
{
namespace monitoring
{
struct Sample
{
    double value{0};
    trantor::Date timestamp{0};
    std::string name;
    std::vector<std::pair<std::string, std::string>> exLabels;
};
}  
}  