Splunk Search

How to adjust the time in a timechart?

pavanae
Builder

I have a timechart which displays the results for the past 7 days. But now i don't want the Splunk to display the results for 24 hours of the each day in last 7 days. Instead of that, I just want to display the timechart from evening 7'o clock to morning 7'o clock for the last 7 days.

Is this scenario possible in Splunk? If yes, how can we do that?

0 Karma
1 Solution

gokadroid
Motivator

Can you try this please:

your Query that returns data of last seven days
|eval myHour=strftime(_time, "%H") 
| where myHour>=19  OR myHour<7
| complete your query to draw the timechart

OR adding per suggestion below:

your Query that returns data of last seven days
| where date_hour>=19 OR date_hour<7
| complete your query to draw the timechart

View solution in original post

0 Karma

gokadroid
Motivator

Can you try this please:

your Query that returns data of last seven days
|eval myHour=strftime(_time, "%H") 
| where myHour>=19  OR myHour<7
| complete your query to draw the timechart

OR adding per suggestion below:

your Query that returns data of last seven days
| where date_hour>=19 OR date_hour<7
| complete your query to draw the timechart
0 Karma

lquinn
Contributor

You could also just use the date_hour field in splunk, that is already extracted, instead of creating the myHour field.

gokadroid
Motivator

thanks @Iquinn Let me update that in the query as per suggestions. Awesome stuff.

0 Karma

ppablo
Retired

It might be good to read up on some cautionary advice by search gurus @lguinn and @sideview on this post:
https://answers.splunk.com/answers/387130/why-is-date-hour-inconsistent-with-h.html#answer-387134

gokadroid
Motivator

ok, so sounds like extracting the %H using strftime is the way to go as suggested in the read and as was in the initial answer. Thanks @ppablo_splunk

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...

Global Splunk User Group Events: May + June 2026

Your Splunk Community Awaits: Discover Upcoming User Group Events Worldwide    Staying ahead in the fast-paced ...