Splunk Search

Plot graph using timechart

hikari992
Explorer

Hi everyone, I'm quite new to splunk. I'm trying to plot a graph using timechart with starting time of the event and the ending time of the event.

This is my search query:


sourcetype="Traffic" | stats earliest(_time) as startOfEvent latest(_time) as endOfEvent range(_time) as duration by Message

This is the return result from the query:


Message | startOfEvent | endOfEvent| duration

msg1 | 1368457298 | 1368459923 | 2625

msg2 | 1368457298 | 1368457821 | 523


How can i turn this into a timechart?

Any help is appreciated.
Thanks!

0 Karma

alacercogitatus
SplunkTrust
SplunkTrust

If you could include some metrics you would like, it might be easier to show you specifics. But the general format is:

sourcetype="Traffic" | timechart count by Message span=5m

This will show the count by Message over time.

http://docs.splunk.com/Documentation/Splunk/5.0.2/SearchReference/Timechart

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!

Keep the Learning Going with the New Best of .conf Hub

Hello Splunkers, With .conf26 getting closer, there’s already a lot of excitement building around this year’s ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

How to find the worst searches in your Splunk environment and how to fix them

Everyone knows Splunk is a powerful platform for running searches and doing data analytics. Your ...