userver: userver/utils/graphite.hpp Source File
Loading...
Searching...
No Matches
graphite.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/utils/graphite.hpp
4/// @brief @copybrief utils::graphite::EscapeName
5
6#include <string>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace utils::graphite {
11
12/// @brief Escapes a string for use as a Graphite metric name
13std::string EscapeName(const std::string& s);
14
15} // namespace utils::graphite
16
17USERVER_NAMESPACE_END