Prometheus Client Library for Modern C++
Loading...
Searching...
No Matches
labels.h
1#pragma once
2
3#include <functional>
4#include <map>
5#include <string>
6
7namespace prometheus {
8
12using Labels = std::map<std::string, std::string, std::less<>>;
13
15using Label = Labels::value_type;
16
17} // namespace prometheus