Hello,
I’m running Grafana 9.1.3 on Rocky Linux 8. I am using Telegraf with Influx for SNMP Data. I’ve got a column called last run time returning a String that looks like this
2022/Sep/13/15.18.22UTC
I’m trying to reformat this to be a Time value, or even just reformat the string to support different formatting for time. I’m trying to use Transforms for this, but it seems like this might not be the actual solution, or at least if it is, I’m unable to get it to work.
Rename by Regex isn’t doing anything for me and based on other articles I’m not sure it is meant to do this. I’m trying to display the data as a table.
The regex I have written seems to work online when I test my syntax, but also has no impact on the results.
Match:
(…)/(…)/(…)/(…).(…).(…)(UTC)
Replace:
$3-$4-$1 $4:$5:$6 $7
Thanks for any help. I haven’t found anything on the community so far or in other searches.