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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...