Splunk Search

Only show every 7th day in timechart

akhan8928
New Member

Currently I have the following -

index="mysql_uc_orders" earliest=-7d@d latest=now | bucket span=1m _time | timechart count span=30m | timewrap d

This works fine as it shows the latest day and the 7th day but it also shows 1day, 2days, 3days etc.

I'd like to only show the latest day and the 7 days before (I.e. week over week on a specific day).

Does anyone know what filter I need to use?

Tags (1)
0 Karma

lguinn2
Legend

With timewrap, I think you want timewrap w not d.

You could also do this manually. Here is another way

index="mysql_uc_orders" earliest=-7d@d latest=now 
| bucket span=1m _time 
| timechart count span=30m
| eval today=strftime(now(),"%A")
| eval dayOfWeek = strftime(_time,"%A")
| where dayOfWeek == today
0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...