Splunk Search

Is there a way to dynamically set latest in tstats?

fredclown
Builder

I've done this in the past and it works to get data for today up to the latest 5 minute span, but I'm hoping to speed it up with tstats.

 

index="foo" sourcetype="foo" earliest=-0d@d latest=[|makeresults | eval snap=floor(now()/300)*300 | return $snap]
| stats sum(b) as bytes ....

 

 

I tried this but it doesn't work.

 

| tstats sum(stuff.b)as bytes from datamodel="mymodel.stuff" where index="foo" sourcetype="foo" earliest=-0d@d latest=[|makeresults | eval snap=floor(now()/300)*300 | return $snap]
| ....

 

 

 I could do this potentially but it doesn't seem to be much better and quite frankly is a bit more confusing.

 

| tstats sum(stuff.b)as bytes from datamodel="mymodel.stuff" where index="foo" sourcetype="foo" earliest=-0d@d by _time span=1min
| where _time < floor(now()/300)*300
| rename stuff.* as *
| stats sum(bytes) as bytes ....

 

 

If there is anyway to do it in the tstats  command that would be great ... thoughts? 

Labels (3)
0 Karma

somesoni2
Revered Legend

Try like this

| tstats sum(stuff.b)as bytes from datamodel="mymodel.stuff" where index="foo" AND sourcetype="foo" AND earliest=-0d@d AND [|makeresults | eval latest=floor(now()/300)*300 | table latest] 
| ....
0 Karma

fredclown
Builder

It's odd. When I run it like that I basically get double the counts, than if I just hard code the values.

0 Karma

VatsalJagani
SplunkTrust
SplunkTrust

@fredclown - Please check the job inspector to see are you getting the proper latest value as you expect or not.

Get Updates on the Splunk Community!

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...