Splunk Search

Use stats to show multiple values resulting from fields generated by eval command

christopheryu
Communicator

Sorry, for some reason I cannot post my code, so attaching photo instead (please post my code if you can).

Result shows "Active Links" which is the distinct count of Link with both PASS and FAIL KPI. I would also want to include distinct count of Link with FAILCOUNT.

Link is a subset of LINKREGION as shown below:

Link LINKREGION
Dallas-Tokyo USA-APAC
LosAngeles-Manila USA-APAC
Boston-Paris USA-EUR
Chicago-Frankfurt USA-EUR
Paris-Frankfurt EUR-EUR

Thank you in advance!

0 Karma
1 Solution

somesoni2
Revered Legend

Before Stats, add following eval command

| eval FailLINK=if(KPI="FAIL",LINK,null())

Now add following to your stats

dc(FailLINK) as "Failed Links"

View solution in original post

0 Karma

somesoni2
Revered Legend

Before Stats, add following eval command

| eval FailLINK=if(KPI="FAIL",LINK,null())

Now add following to your stats

dc(FailLINK) as "Failed Links"
0 Karma

christopheryu
Communicator

That worked (just changed LINK to Link) - thank you!

0 Karma
Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...