Thomas Casteleyn
Thomas Casteleyn
Hi @pvlltvk, best way to go forward with this is to create the PR anyway 😉
cc @neelayu
Also underscores do not work: > invalid label in plugin inputs.ping: invalid value "foo_bar"
Why are special chars not allowed as the first or last character? Otherwise the Regex could be more simple: ```golang reKey = regexp.MustCompile(`^[\w\.\-]+$`) reValue = regexp.MustCompile(`^\S+$`) ```
I don't see what these label keys or values have anything to do with internet hosts. I feel like its limiting too much without any technical reason..
I don't feel like #18108 completely resolved this issue, see my comments. Current nightly builds accepts this label: ```toml [[inputs.ping]] [inputs.ping.labels] key = "FOObar?*" ```
@srebhan Any feedback? Has this been discussed with the team? IMO telegraf still doesn't correctly implement TSD-011. Should I just create the PR and see feedback on there?
Didn't know that, I just thought you needed example files of the requested language. My request is mainly to have syntax highlighting in markdown: ## Example template ```gotmpl Dear {{.Name}},...
You can add this to override the snmp_trap behaviour: ```toml [[processors.override]] namepass = "snmp_trap" [processors.override.tags] source = "source_trap_snmp" ``` The actual behaviour is normal, as the source tag should be...
The tags you define there are some kind of default. Their value will be used if the plugin itself did not yet create a tag with the same name yet....