Hi,
I have a CSV file, which is generaded by Rsyslog and used as input file for Telegraf. The raw file looks like:
2021-09-06T17:47:31.094688+02:00,web01,"83d006387","select","1.5259"
I convert with Telegraf the “select” into a numeric field, so that I can have it on Grafana in a graph:
- select → 0
- update → 1
- insert → 2
So, I want to have three different (stakked? )graphs, with the fields for select / update / insert and the duration (last field in the csv).
I search for something, which let me bring the content of the SQL type (converted to numers) with the duration (ms) into one graph, so that I can see, how long an INSERT or UPDATE took.
Is that possible ?
cu denny