index=my_index
earliest=-30d
"[ERR] Failed to connect with downstream node"
OR "[ERR] Failed to authenticate downstream node"
OR "[ERR] Downstream node sent invalid response"
I want to get the count of these log messages and plot their count using timechart like
| timechart count(NodeConnectionError), count(AuthenticationError), count(InvalidResponseError) limit=0
Can someone let me know how to determine this also is it possible to aggregate few message count like
| timechart (count(NodeConnectionError) + count(InvalidResponseError) ) as GenericError, count(AuthenticationError), limit=0
↧