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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...