Splunk Search

Can I with one search, graph two different time chart spans?

omarlira
Explorer

I have a simple search only to count the events per timelapse.

I am trying to graph that in only one graph with two time spans: day and hour

I am using for separated

"...| timechart count span=1d"
"...| timechart count span=1h"

Can I join i one sentence a graph that?

0 Karma

somesoni2
Revered Legend

Try like this
Update- Fixed typo in the timechart/appendpipe subsearch, updated fieldname

your base search | timechart span=1h count as count_h | appendpipe [ | timechart span=1d sum(count_h) as count_d] | sort 0 _time
0 Karma

omarlira
Explorer

not yet...

0 Karma

omarlira
Explorer

Look that:

"... | timechart span=1h count | appendpipe [ | timechart span=1d sum(count) as count_d] | sort 0 _time"

works fine.

Thanks a lot man!

0 Karma

sundareshr
Legend

The timechart command is missing an alias. Try this

 your base search | timechart span=1h AS count_h | appendpipe [ | timechart span=1d sum(count) as count_d] | sort 0 _time
0 Karma

omarlira
Explorer

Nope

Error in 'timechart' command: The specifier 'count_h' is invalid. It must be in form (). For example: max(size).
The search job has failed due to an error. You may be able view the job in the Job Inspector.

😕

0 Karma
Get Updates on the Splunk Community!

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...