Splunk Search

Listing out dates and appending to search??

tb5821
Communicator

I'm trying to list out all dates between my time picker and have that as a column in my table. I do both things individually but just not together 🙂

index="myindex"
| rex "jobID (?<jobid>\d+)"
| rex "dayID (?<dayid>\d+)"
| eval daydt=strptime(dayid, "%Y%m%d")
| eval daydt=strftime(daydt,"%Y-%m-%d")
| transaction jobid dayid endswith="data consumed for jobID"
|eval duration=tostring(duration,"duration")
| eval status=if(closed_txn=="0","Complete","Incomplete")
| appendpipe
[ |gentimes start=-1|addinfo|eval date=strftime(mvrange(info_min_time,info_max_time,"1d"),"%F")|mvexpand date
]
| sort -date
| table date closed_txn daydt _time duration

 

Can someone tell me whats wrong here?

Labels (3)
0 Karma

rvany
Communicator

What do you exactly mean with "all dates between my time picker"? What is the output of your SPL? What did you expect? Could you give some example data?

0 Karma

tb5821
Communicator

if I select last 30 days - I want one column that has a row for each day regardless of what my main search has

 

0 Karma

rvany
Communicator

Should this "day column" go on a row of its own? What if you have more than one data rows for a particular day?

Maybe you want to have a look at the "bin" command (https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Bin) to group your events by day with a "span=1d" parameter.

0 Karma

richgalloway
SplunkTrust
SplunkTrust
What should be in that one column? Can you mock it up?
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...