mirror of https://github.com/Icinga/icinga2.git
Don't sanitize dots in metrics.
This commit is contained in:
parent
b734b71ff3
commit
3c6226a223
|
@ -262,7 +262,6 @@ void GraphiteWriter::SanitizeMetric(String& str)
|
|||
{
|
||||
boost::replace_all(str, " ", "_");
|
||||
boost::replace_all(str, "-", "_");
|
||||
boost::replace_all(str, ".", "_");
|
||||
boost::replace_all(str, "\\", "_");
|
||||
boost::replace_all(str, "/", "_");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue