Splunk Search

Data file

suraj44
Engager

I have a data file , this source file does not contain any data on most days .. Its a valid scenario only . But since it does not have any data my panel in dashboards shows "" No results found"

 

index="xyz" source="*RatedUsg_OutSeq.dat" | eventstats max(Extract_Time) AS most_recent | where (Extract_Time = most_recent) | table Extract_Time File_Name File_Sequence Source_System_Key.

 

i am new to Splunk . My requirment is on those days where .dat file is empty it should dispaly a message "No Records Today" on other days that particular query should work.

 

Please help .I needed it to procced further .

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The appendpipe command can do that.

index="xyz" source="*RatedUsg_OutSeq.dat" 
| eventstats max(Extract_Time) AS most_recent 
| where (Extract_Time = most_recent) 
| appendpipe [ stats count | eval File_Name = "No Records Today" | where count = 0 | fields - count ]
| table Extract_Time File_Name File_Sequence Source_System_Key
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

The appendpipe command can do that.

index="xyz" source="*RatedUsg_OutSeq.dat" 
| eventstats max(Extract_Time) AS most_recent 
| where (Extract_Time = most_recent) 
| appendpipe [ stats count | eval File_Name = "No Records Today" | where count = 0 | fields - count ]
| table Extract_Time File_Name File_Sequence Source_System_Key
---
If this reply helps you, Karma would be appreciated.

suraj44
Engager

Thank You so much . It helped

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...