Splunk Search

How to chart months on the X-axis in chronological order, not alphabetical?

hkosuru
Explorer

Hi,

My database query returns the following columns
monthNum,month,year,value
01, Jan, 2014, 20
01, Jan, 2015, 30
02, Feb, 2014, 40
02, Feb, 2015, 34
...
When I plot the chart with this data

|sort -monthNum| chart max(value) by month,year

I get months in alphabetical order on the X-axis. "sort -monthNum" does not seem to do anything. I want to see Calendar order- Jan, Feb, Mar

I don't want to prepend numbers to months like 1-Jan,2-Feb,3-Mar...

Thanks!

0 Karma
1 Solution

somesoni2
Revered Legend

How about this

your base db search... | eval month=monthNum."-".month | chart max(value) by month,year | rex field=month "(?<monthNum>\d+)-(?<month>.*)" |sort -monthNum | fields - monthNum

View solution in original post

somesoni2
Revered Legend

How about this

your base db search... | eval month=monthNum."-".month | chart max(value) by month,year | rex field=month "(?<monthNum>\d+)-(?<month>.*)" |sort -monthNum | fields - monthNum

hkosuru
Explorer

Thank you! I just had add "reverse" for ascending order: |sort -monthNum | reverse| fields - monthNum

0 Karma

yuanliu
SplunkTrust
SplunkTrust

Alternatively, you simply | sort monthNum (without -). That'll sort in ascending order.

0 Karma

hkosuru
Explorer

Thanks, yuanliu!

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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