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
SplunkTrust
SplunkTrust

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
SplunkTrust
SplunkTrust

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
SplunkTrust
SplunkTrust

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!

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...