Hey there,
Thank you for writing this, awesome project!
Curious, should there be support for tagging metrics? I could imagine something like this:
client.incr("some.metric", vec!["service:api"])
or maybe even better:
let client = Client::new("127.0.0.1:8125", "project", vec!["service:api"]).unwrap()
and this would add the tag service with value api to all metrics.
Thanks!
Edit: I think I was confused; tags seem to be a Datadog extension of StatsD, and it's not part of the StatsD spec.
Hey there,
Thank you for writing this, awesome project!
Curious, should there be support for tagging metrics? I could imagine something like this:
or maybe even better:
and this would add the tag
servicewith valueapito all metrics.Thanks!
Edit: I think I was confused; tags seem to be a Datadog extension of StatsD, and it's not part of the StatsD spec.