we have a log of some metrics that look like this
20:45:00 10.10.71.01 values : [12035313, 233658, 0, 0, 24249, 13058, 0, 229867, 0, 0, 0, 0, 24249, 0, 0, 0, 37307, 0, 257907, 42125, 320380, 0]
I can pull out each of the values an produce a table.
| rex field=_raw "\[(?.*)]"
| eval counters = split( results,",")
| eval Requests=mvindex(counters,1) etc
But, I want to produce a multiline graph is this possible?
↧