Hi Everyone,
I have created the below query in Splunk to fetch the Error messages
index=abc ns=blazegateway-c2 CASE(ERROR)|rex field=_raw "(?<!LogLevel=)ERROR(?<Error_Message>.*)"|eval _time = st...
See more...
Hi Everyone,
I have created the below query in Splunk to fetch the Error messages
index=abc ns=blazegateway-c2 CASE(ERROR)|rex field=_raw "(?<!LogLevel=)ERROR(?<Error_Message>.*)"|eval _time = strftime(_time,"%Y-%m-%d %H:%M:%S.%3N")| cluster showcount=t t=0.3|table app_name, Error_Message ,cluster_count,_time, environment, pod_name,ns |dedup Error_Message| rename app_name as APP_NAME, _time as Time, environment as Environment, pod_name as Pod_Name, cluster_count as Count
I observe that for particular Error message like below:
[reactor-http-epoll-4,cd5411f55ef5b309d8c4bc3f558e8af2,269476b43c74118e,01] reactor.core.publisher.Operators - Operator called default onErrorDropped
Count is coming as 42.Although the Event with this Error Messages are 13 only.
I want to know is this the problem with cluster_count .
How the cluster is working in splunk. Is my query taking cluster_count instead of actual counts.
Can someone guide me on this.