I have logs which tell me the service name, time and domain name where this service was called.
I have a query to chart the number of services that were invoked for each domain (channel) as below :
index=realtimelogs earliest=-15m@m | chart count(SERVICE) AS "No. of Services Invoked" by channel
It results in below :
channel No. of Services Invoked
TSYS 1234
Fidelity 2345
I am looking for a single query that can pull the count in two different time intervals so that I can compare the count by channel in those two time ranges. (I am looking for a way to add a new column to the existing result which lists data from a different time range.
I am not looking for plotting the results against time. I just need a side by side comparison.
... View more