Showing two searches in the same graph
I have two queries with aggregated fields. Is there a way to graph these two results in the same panel?
-
Official comment
Hey Soumya,
You can plot both series in one table like this:
(_sourceCategory=app1 or _sourceCategory=app2) "HTTP/1.1 500"
| count by _sourceCategory
| sort _countYou could also plot these over time like this:
(_sourceCategory=app1 or _sourceCategory=app2) "HTTP/1.1 500"
| timeslice 15m
| count by _sourceCategory, _timeslice
| transpose row _timeslice column _sourceCategoryComment actions
Please sign in to leave a comment.
Comments
3 comments