Splunk Search

How to get result for device grouped by two different fields

hcastell
Path Finder

I have the following scenario:

x number of devices connected to 8 different nodes. The 8 nodes are connected to 3 switches. What I'm trying to do is generate a report that will show me the number of nodes that have device failures broken down by switch. I can generate a report that shows me the device failure by node but can't figure out how to get nodes with device failures broken down by switch.

The following search string allows me to get the device (STB) failure count by node (NodeName):

| eval foo=if(stb_fail==0, 0, 1)
| stats sum(foo) AS TotalBox by NodeName
| eval fooNode=case(TotalBox==1,"1", TotalBox==2,"2",TotalBox>2,">2")
| stats count by fooNode

I have a field called NodeName as well as another called SwitchName and have a table with values for both these fields. Hope my question is clear. Appreciate any assistance offered.

Tags (1)
0 Karma

MuS
Legend

Hi hcastell,

if I get this correct you should be able to use something like this run everywhere command:

index=_internal  source=*metrics.log | stats count(sourcetype) AS c_st by series

If you adapt it to your needs it would look like this:

your base search here
| eval foo=if(stb_fail==0, 0, 1)
| stats sum(foo) AS TotalBox by NodeName
| eval fooNode=case(TotalBox==1,"1", TotalBox==2,"2",TotalBox>2,">2")
| stats count(fooNode) by SwitchName

hope this helps ...

cheers, MuS

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...