Prometheus Client Library for Modern C++
Loading...
Searching...
No Matches
check_names.h
1#pragma once
2
3#include <string>
4
5#include "prometheus/detail/core_export.h"
6#include "prometheus/metric_type.h"
7
8namespace prometheus {
9
10PROMETHEUS_CPP_CORE_EXPORT bool CheckMetricName(const std::string& name);
11PROMETHEUS_CPP_CORE_EXPORT bool CheckLabelName(const std::string& name,
12 MetricType type);
13} // namespace prometheus