Hi kavekon,
let me try to help you, but you almost answered the question yourself....
to get a search result where all the rows where rank <11 should appear, append the following to your search: ... | where rank < 11
Once I get the data, I want to show a chart of concurrent program execution time over all the weeks each concurrent program in one chart, append the following to your search: ... | chart values(ETIME) over WEEK by ConcurrentProgramName If this fails because of the WEEK, use instead ... | timechart span=1w values(ETIME) by ConcurrentProgramName
Another charts of the top 10 ConcurrentProgramName on x axis and etime on y axis per week, use this search (top will return by default the top 10 of the provided field) and modify the report the match your request: ... | top ConcurrentProgramName | chart values(ETIME) values(ConcurrentProgramName)
hope this helps to get you started...
cheers, MuS
... View more