Splunk Search

How to change the format of column timechart labels?

dhavamanis
Builder

Need your help,

We are aggregating data for 6 months and showing it in column charts to compare each year's data using the search below:

index="myindex" source="/opt/apps/myapp/views/myapp_PV_UV_Data_4.csv" |timechart sum(PAGE_VIEWS) as PageViews span=6mon | eval Timestamp=strftime(_time,"%m-%Y-%b-%Y") | table Timestamp PageViews | sort Timestamp | eval Timestamp=substr(Timestamp,9)

results showing as,

Jan-2013,Jan-2014,Jan2015,Jul-2013,Jul-2014,Jul-2015

It's showing correct results, but we want to modify the label in the below format:

Jan-Jun'2013,Jan-Jun'2014,Jan-Jun'2015,Jul-Dec'2013,Jul-Dec'2014,Jul-Dec'2015

Can you please help us how to do this.

1 Solution

somesoni2
Revered Legend

Try something like this

 index="myindex" source="/opt/apps/myapp/views/myapp_PV_UV_Data_4.csv" |timechart sum(PAGE_VIEWS) as PageViews span=6mon | eval Timestamp=strftime(_time,"%m-%Y-%b-").strftime(relative_time(_time,"+5mon"),"%b'").strftime(_time,"%Y") | table Timestamp PageViews | sort Timestamp | eval Timestamp=substr(Timestamp,9)

View solution in original post

somesoni2
Revered Legend

Try something like this

 index="myindex" source="/opt/apps/myapp/views/myapp_PV_UV_Data_4.csv" |timechart sum(PAGE_VIEWS) as PageViews span=6mon | eval Timestamp=strftime(_time,"%m-%Y-%b-").strftime(relative_time(_time,"+5mon"),"%b'").strftime(_time,"%Y") | table Timestamp PageViews | sort Timestamp | eval Timestamp=substr(Timestamp,9)

dhavamanis
Builder

it works fine. thank you so much, just adjusted this alone strftime(relative_time(_time,"+5mon")

0 Karma
Get Updates on the Splunk Community!

Transforming Financial Data into Fraud Intelligence

Every day, banks and financial companies handle millions of transactions, logins, and customer interactions ...

How to send events & findings from AWS to Splunk using Amazon EventBridge

Amazon EventBridge is a serverless service that uses events to connect application components together, making ...

Exciting News: The AppDynamics Community Joins Splunk!

Hello Splunkers,   I’d like to introduce myself—I’m Ryan, the former AppDynamics Community Manager, and I’m ...