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!

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