Dashboards & Visualizations

How to show last weeks data in trellis for single value visualization?

mukhil
New Member

Hi,

Im working on showing last week data in trellis for single value visualization. I have 7 values in trellis which is showing current week's data. I would like to see last week data as well in form of providing token to it, but unable to perform. Please help me in it.

0 Karma

woodcock
Esteemed Legend
0 Karma

jodyfsu
Path Finder

I think you might be looking for something like this:

index=INDEX sourcetype=SOURCETYPE "REST OF SEARCH"
 earliest=-8d@d latest=-1d@d 
| multikv 
| eval ReportKey="Last Week" 
| append 
    [ search index=INDEX sourcetype=SOURCETYPE "REST OF SEARCH"
 earliest=-15d@d latest=-8d@d
    | multikv 
    | eval ReportKey="Previous Week" 
    | eval _time=_time+60*60*24*7] 
| stats FUNCTION by ReportKey 

I use this to compare weeks without having to do each week manually.

0 Karma

woodcock
Esteemed Legend

Just stack the time specifiers like this:

index=?INDEX sourcetype=SOURCETYPE "REST OF SEARCH" (earliest=-8d@d latest=-1d@d OR earliest=-15d@d latest=-8d@d)
| multikv
| timechart span=1w FUNCTION
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!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

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

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...