15 lines
269 B
C++
15 lines
269 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
namespace prometheus {
|
|
|
|
/// \brief Multiple labels and their value.
|
|
using Labels = std::map<std::string, std::string>;
|
|
|
|
/// \brief Single label and its value.
|
|
using Label = Labels::value_type;
|
|
|
|
} // namespace prometheus
|