Prometheus Client Library for Modern C++
labels.h
1 #pragma once
2 
3 #include <map>
4 #include <string>
5 
6 namespace prometheus {
7 
9 using Labels = std::map<std::string, std::string>;
10 
11 } // namespace prometheus