I have a timechart that traffic volume over time and the top 15% of API performance times. I would like to add URI_Stem to the timechart so that I can track performance over time for each of my API calls. Not sure how that can be done.
| timechart span=1h count(_raw) as "Traffic Volume", perc85(time_taken) as "85% Longest Time Taken"
Example of table by URI_Stem
| stats count avg(time_taken) as Average BY cs_uri_stem | eval Average = round(Average, 2)
| table cs_uri_stem count Average
| sort -Average
| rename Average as "Average Response Time in ms"
... View more