You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to send a tag in my metrics that would look something like this get_/v1/data/:id. However, in datadog, I can see that in datadog, the colon was replaced by an underscore, resulting in get_/v1/data/_id. Colons are listed as allowed characters in tags by datadog: https://docs.datadoghq.com/getting_started/tagging/
From the code, I can see from the tests in globalTags.js that this is the expected behavior. Why is that?
Thanks
The text was updated successfully, but these errors were encountered:
In the examples linked on that page, they show that env:staging:east would turn into key=env and value=staging:east. Thus, they should probably still be prohibited in keys here:
I.e. if you pass an object like { 'env:staging': 'east' }, it's not going to work out how you expect on the other end...
As a workaround, I don't see it doing any such sanitization if passed as an array... I could be overlooking it happen elsewhere, but shouldn't this work?
Hi,
I am trying to send a tag in my metrics that would look something like this
get_/v1/data/:id
. However, in datadog, I can see that in datadog, the colon was replaced by an underscore, resulting inget_/v1/data/_id
. Colons are listed as allowed characters in tags by datadog: https://docs.datadoghq.com/getting_started/tagging/From the code, I can see from the tests in globalTags.js that this is the expected behavior. Why is that?
Thanks
The text was updated successfully, but these errors were encountered: