Dashboards & Visualizations

How to set count for the alert condition

aditsss
Motivator

Hi Everyone,

I have one requirement.

I need to set one alert  when node response time is greater the 5000ms and that to 2-3 node response time should be greater then 5000ms.

I have taken one not sure how to take multiple count of node response time

Can someone guide me on that.

Below is my query:

index=abc ns=blazegateway (app_name=way-a)OR(app_name=way-b) (nodeUrl ="*") Trace_Id=* "*" | stats count by Trace_Id Span_Id ns app_name Log_Time caller nodeUrl nodeHttpStatus nodeResponseTime |rename caller as "Caller"|rename nodeUrl as "Node" |rename nodeHttpStatus as "NodeHttpStatus"|rename nodeResponseTime as "NodeResponseTime"| fields - count| |sort 10 -NodeResponseTime|where NodeResponseTime >5000

Thanks in advance

Labels (3)
0 Karma
1 Solution

manjunathmeti
Champion

hi @aditsss,
You can count multiple NodeResponseTime and apply conditions on the count.

index=abc ns=blazegateway (app_name=way-a)OR(app_name=way-b) (nodeUrl ="*") Trace_Id=* "*" | stats count by Trace_Id Span_Id ns app_name Log_Time caller nodeUrl nodeHttpStatus nodeResponseTime |rename caller as "Caller", nodeUrl as "Node", nodeHttpStatus as "NodeHttpStatus", nodeResponseTime as "NodeResponseTime" | fields - count | where NodeResponseTime >5000 | eventstats count(NodeResponseTime) as ncount | where ncount > 2 | fields - ncount

 

If this reply helps you, an upvote/like would be appreciated.

View solution in original post

0 Karma

manjunathmeti
Champion

hi @aditsss,
You can count multiple NodeResponseTime and apply conditions on the count.

index=abc ns=blazegateway (app_name=way-a)OR(app_name=way-b) (nodeUrl ="*") Trace_Id=* "*" | stats count by Trace_Id Span_Id ns app_name Log_Time caller nodeUrl nodeHttpStatus nodeResponseTime |rename caller as "Caller", nodeUrl as "Node", nodeHttpStatus as "NodeHttpStatus", nodeResponseTime as "NodeResponseTime" | fields - count | where NodeResponseTime >5000 | eventstats count(NodeResponseTime) as ncount | where ncount > 2 | fields - ncount

 

If this reply helps you, an upvote/like would be appreciated.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...