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
Get Updates on the Splunk Community!

Splunk MCP & Agentic AI: Machine Data Without Limits

  Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization ...

Finding Based Detections General Availability

Overview  We’ve come a long way, folks, but here in Enterprise Security 8.4 I’m happy to announce Finding ...

Get Your Hands Dirty (and Your Shoes Comfy): The Splunk Experience

Hands-On Learning and Technical Seminars  Sometimes, you just need to see the code. For those looking for a ...