Splunk Search

How to write a search to find the count and group linkdown traps based on interface?

Velugs
Explorer

Dear All,

I am new to Splunk and got a request to create dashboard on Splunk. Criteria is to collect/group linkdown traps and need to have a count based on interface.

So example output needs to be like

Host --- Interface --- Count

Right now I am able to get Host --Count, but need to edit the search such that I get a count based on Interface and not host. Hope this is clear.

Kind Regards

0 Karma
1 Solution

renjith_nair
Legend

Try this :

<your search> |stats count,latest(Host) as Host by Interface

This can be modified to your final requirement

Happy Splunking!

View solution in original post

renjith_nair
Legend

Try this :

<your search> |stats count,latest(Host) as Host by Interface

This can be modified to your final requirement

Happy Splunking!

Velugs
Explorer

Hey Thank you.. just want to update the forum .. I got it..

index=XXX sourcetype="YYY" "Server Interface Down" | rex "(?i) Interface Down on (?P[^ ]+)" | rex "on [^ ]+ - (?P[^\"]+)" | stats count,latest(Description) as Description by host,Interface | search count >=100 | sort - count 

Velugs
Explorer

Hi Thank you.. well using the below I get Interface--count--host any chance I modify the output such as I can see host--interface--count

0 Karma

Velugs
Explorer

Thanks for your time

it worked but with the below command

index=XXX sourcetype="YYY" "Server Interface Down" | head 10000  | rex "(?i) Interface Down on (?P[^ ]+)" | stats count,latest(host) as host by INTERFACE

Thank you Renjith 🙂

0 Karma

renjith_nair
Legend

Just replace latest(host) by values(host) to display all hosts in case there are multiple values

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...