Dashboards & Visualizations

How to show data for second week of tuesday every month

pavithra
Explorer
 
Labels (2)
0 Karma
1 Solution

emdaax
Explorer

Hi @pavithra

you could try with the ceiling function: ceiling or ceil 

example:

| eval day_of_month=strftime(_time, "%d")
| eval day_of_week=strftime(_time, "%A")
| eval week_of_month=ceil(day_of_month/7)
| where day_of_week="Tuesday" AND week_of_month=2

 
best regards,

View solution in original post

0 Karma

emdaax
Explorer

Hi @pavithra

you could try with the ceiling function: ceiling or ceil 

example:

| eval day_of_month=strftime(_time, "%d")
| eval day_of_week=strftime(_time, "%A")
| eval week_of_month=ceil(day_of_month/7)
| where day_of_week="Tuesday" AND week_of_month=2

 
best regards,

0 Karma

pavithra
Explorer

Thanks!!  Its working

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @pavithra ,

good for you, see next time!

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated by all the contributors 😉

emdaax
Explorer

Great, I'm glad to hear that this solution was helpful for your use case 👍
happy splunking and best regards ; )


P.S.: Karma Points are always appreciated 😉

gcusello
SplunkTrust
SplunkTrust

Hi @pavithra 

at first it isn't so clear with timeframe you want to display, but this is inside your search, so if it's the previous month, you could run something like this:

<your_search> earliest=-mon@mon latest=@mon
| stats count BY key

and schedule your search using this cron:

0 0 8-15 * 3

Ciao.

Giuseppe

Get Updates on the Splunk Community!

Earn a $35 Gift Card for Answering our Splunk Admins & App Developer Survey

Survey for Splunk Admins and App Developers is open now! | Earn a $35 gift card!      Hello there,  Splunk ...

Continuing Innovation & New Integrations Unlock Full Stack Observability For Your ...

You’ve probably heard the latest about AppDynamics joining the Splunk Observability portfolio, deepening our ...

Monitoring Amazon Elastic Kubernetes Service (EKS)

As we’ve seen, integrating Kubernetes environments with Splunk Observability Cloud is a quick and easy way to ...