Don't sanitize dots in metrics.

This commit is contained in:
Michael Friedrich 2013-10-18 20:53:57 +02:00
parent b734b71ff3
commit 3c6226a223
1 changed files with 0 additions and 1 deletions

View File

@ -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, "/", "_");
}