I have Grafana metrics (Graphite as backend) with metrics named like this:
stats.counters.appserver.det.timeout.5287534957488140100.count
I'd like to replace the guid (5287534957488140100) with a more human readable string but at the time of sending the metrics to statsd (which in turn sends data to graphite) I don't have that available.
Is it possible to do this replacement afterwards? I have the human readable string connected to the guid in a separate database but I can send that to statsd/graphite/grafana in intervals / whenever a new one is added if I know how.
It seems like the graphite function aliasByNode
could be used for this but how would I get the data I want to replace with into graphite dynamically?