Skip to content

Commit

Permalink
Add doc for special chars
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhwinder33445 authored and nilmerg committed Mar 22, 2022
1 parent 0b08e68 commit 5a29c43
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions doc/05-Troubleshooting.md
Expand Up @@ -57,3 +57,28 @@ Example result of the first URL:
```
{"results": ["icinga2.icinga_com.host.hostalive.perfdata.rta.value"]}
```

## Special chars in host or service name

Graphite cannot work with special characters. The host and service name should
therefore only contain Latin characters. If you want to use special characters
in host and service names, please set a `display_name` for the object.

### Example

```
object Host "Only latin chars here" {
display_name = "Special chars are welcome"
...
}
object Service "Only latin chars here" {
display_name = "Special chars are welcome"
...
}
apply Service "Only latin chars here" {
display_name = "Special chars are welcome"
...
}
```

0 comments on commit 5a29c43

Please sign in to comment.