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