mirror of
https://github.com/Icinga/icinga2.git
synced 2026-06-09 08:42:59 -04:00
Fixed opentsdb metric name with colon chars
This commit is contained in:
parent
303d9c61c8
commit
2fd94073ba
1 changed files with 1 additions and 0 deletions
|
|
@ -254,6 +254,7 @@ String OpenTsdbWriter::EscapeMetric(const String& str)
|
|||
boost::replace_all(result, " ", "_");
|
||||
boost::replace_all(result, ".", "_");
|
||||
boost::replace_all(result, "\\", "_");
|
||||
boost::replace_all(result, ":", "_");
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue