Dashboards & Visualizations

How to get the calender week from the date?

anooshac
Communicator

Hi Everyone,

I want to plot a chart according to the calendar week. I plotted a timechart like this,

 

|timechart span=7d distinct_count(Task_num) as Tasks by STATUS

 

But this doesn't give the exact calendar weeks. Also i am keeping this charts data to last 3 months.

Anyone have idea how to plot a bar chart based on calendar week? instead of date i want to see the data for current calendar weeks of last 3 months.

I got from the splunk community on how to get the Calendar week. But i am not to plot a graph out of it.

| eval weeknum=strftime(strptime(yourdatefield,"%d-%m-%Y"),"%V")

 

 

Labels (3)
Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

_time is already in epoch form so it does not need to be (and cannot be) converted using strptime.

| eval weeknum=strftime(_time, "%V")
| chart dc(Task_num) as Tasks over weeknum by STATUS
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

maybe you could try to get data by adding this into your base search ?

earliest=-3mon@w+d latest=@w+d

 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Untested, but try the chart command.

| eval weeknum=strftime(strptime(yourdatefield,"%d-%m-%Y"),"%V")
| chart dc(Task_num) as Tasks over weeknum by STATUS

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

anooshac
Communicator

Mt date field is _time. When i use this query i'm getting as no results found.

| eval weeknum=strftime(strptime(_time,"%d-%m-%Y"),"%V")
| chart dc(Task_num) as Tasks over weeknum by STATUS

 

0 Karma

richgalloway
SplunkTrust
SplunkTrust

_time is already in epoch form so it does not need to be (and cannot be) converted using strptime.

| eval weeknum=strftime(_time, "%V")
| chart dc(Task_num) as Tasks over weeknum by STATUS
---
If this reply helps you, Karma would be appreciated.
0 Karma

anooshac
Communicator

Hi @richgalloway ,

Is it possible to sort this according to the year? My search query i have set for last 3 months data, it is taking last years data. But in chart the calendar week 48,49 etc are coming at the end. But they should be in the beginning. I am trying out some solutions but not able to do it properly. Do you know any suggestion for this?

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Numbers always sort in numerical order.  To change the order, change the numbers by adding the year to them.

| eval weeknum=strftime(_time, "%y-%V")
| chart dc(Task_num) as Tasks over weeknum by STATUS
---
If this reply helps you, Karma would be appreciated.
0 Karma

anooshac
Communicator

Hi @richgalloway , i added the year and it is working fine now. I want to only show the calendar week in the chart, any solution for this?

What i understand is that we cannot change the labels.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

It is true one cannot change the labels.  That means we have to choose between having week numbers in numerical rather than calendar order or having year-week numbers in calendar order.

---
If this reply helps you, Karma would be appreciated.
0 Karma

anooshac
Communicator

Thank you so much.. I totally forgot that it is already in epoch format.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...