Reporting

Can one generate a report with a "N/A" entry if no data found, but with real data if present

Gawker
Path Finder

I can generate an incident report by server that looks like this:

Host_Name Event_Count
myhost-01 11
myhost-02 2

If there isn't any data for the observation period, I want to generate something like this:

Host_Name Event_Count
n/a 0

I've tried using several eval and fillnull statements to get past this. Example:

       ...| stats sum(linecount) as Total_Events BY host | fillnull host value="N/A"

Thank you.

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

...| stats sum(linecount) as Total_Events BY host | appendpipe [| stats count | where count=0 | rename count as Total_Events | eval host="N/A" | table host Total_Events]

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

...| stats sum(linecount) as Total_Events BY host | appendpipe [| stats count | where count=0 | rename count as Total_Events | eval host="N/A" | table host Total_Events]
0 Karma

Gawker
Path Finder

Works great. Thank you for the solution and insight.

0 Karma
Get Updates on the Splunk Community!

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...