File: labels.h

package info (click to toggle)
prometheus-cpp 1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 792 kB
  • sloc: cpp: 3,596; sh: 37; makefile: 12
file content (11 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <map>
#include <string>

namespace prometheus {

/// \brief Multiple labels and their value.
using Labels = std::map<std::string, std::string>;

}  // namespace prometheus