Splunk Search

How to edit my timechart search to display time on the x-axis and duration on the y-axis?

HCadmins
Communicator
eventtype=cv "Source Client"=* "Destination Client"=slc-p-res* OR dab* Duration=* | convert ctime(_time) | convert dur2sec(Duration) AS Durationsec | eval Durationhrs=round(Durationsec/60/60,2) | fields - "Destination Client" | table _time Durationhrs 

Returns a beautiful table with time and duration in hours.

I want to have a line chart that shows time as the X axis, and duration as the Y axis, however

eventtype=cv "Source Client"=* "Destination Client"=slc-p-res* OR dab* Duration=* | convert ctime(_time) | convert dur2sec(Duration) AS Durationsec | eval Durationhrs=round(Durationsec/60/60,2) | fields - "Destination Client" | timechart span=1d sum(Durationhrs)

Returns only the time stamp, and the Duration column is empty.

What am I doing wrong?

0 Karma
1 Solution

niketn
Legend

Take out convert ctime(_time) from your search

Timechart expects the time field in epoch format not ASCII.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

0 Karma

niketn
Legend

Take out convert ctime(_time) from your search

Timechart expects the time field in epoch format not ASCII.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Prove Your Splunk Prowess at .conf25—No Prereqs Required!

Your Next Big Security Credential: No Prerequisites Needed We know you’ve got the skills, and now, earning the ...

Splunk Observability Cloud's AI Assistant in Action Series: Observability as Code

This is the sixth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Answers Content Calendar, July Edition I

Hello Community! Welcome to another month of Community Content Calendar series! For the month of July, we will ...