Hide count paramterin my chart
....
....
| num(response_time)/1000 as response_time
| pct(response_time,95) as pct_95, count by URL
| sort by pct_95 desc
| compare with timeshift 1d
Above is the final part of my query. As expected, the chart visualization will have pct_95 and _count parameters in it. However, I would like to hide/suppress the count and want only the pct_95 response time data in the chart. How do I hide the _count in the chart?
-
Vineeth,
You can use the fields operator to specify which fields you want to show/hide.
https://help.sumologic.com/05Search/Search-Query-Language/Search-Operators/fields
I believe if you add the following line art the end of your query, this should take care of it:
| fields - _count
Please sign in to leave a comment.
Comments
2 comments