Knowledge Management

How to compare index usage for specific day within last 4 weeks?

tlow
Explorer

Hello this search query is very neat and I want to know how I can compare it with last 4 weeks based on the day of week I run this.

index=_internal source=license_usage.log type=Usage
| timechart span=1day sum(b) AS volume_b by idx

ie...today is Tuesday, I want to know the average index usage of the last 4 Tuesdays and compare it with today's date.

pick out the day of the week.

Tags (3)
0 Karma

aweitzman
Motivator

Try something like this:

index=_internal source=license_usage.log type=Usage earliest=-4w@w | eval tdw=upper(strftime(now(),"%A")) | eval cdw=upper(strftime(_time,"%A")) | where cdw==tdw | timechart span=1day sum(b) AS volume_b by idx

Adding the earliest clause limits you to the last four weeks of data. The first eval clause computes today's day of the week. The second eval clause computes the day of the week for each event. Finally, the where clause compares the two and filters out data that doesn't match.

0 Karma
Get Updates on the Splunk Community!

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 ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...