So I am trying to create the graph now... my search is...
host=... source = "..." SP Position="Finished" | timechart limit=0 latest(TIME) as Completion_Time by FinishedName | eval Completion_Time=tonumber(replace(Completion_Time,"(\d+):(\d+):(\d+)","\1.\2"))
So I get the x axis having dates, y axis with numbers, and a legend including all the FinishedNames. However, there are no lines on graph. Is it because something is not a number, but a string?
... View more