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#include <string_view>
8
9USERVER_NAMESPACE_BEGIN
10
11namespace utils::graphite {
12
13/// @brief Escapes a string for use as a Graphite metric name
14std::string EscapeName(std::string_view s);
15
16} // namespace utils::graphite
17
18USERVER_NAMESPACE_END