Dashboards & Visualizations

Time in Min to plot on a chart

gravi
Explorer

I have a time field in the format 00:07:34.271009 format.

I want to plot the time on y-axis of a line chart and tried to convert using | eval timeinmin=time/60 but it gives an empty value

How do I convert above mentioned time format to be able to be plotted on a chart?

Tags (1)

oscar84x
Contributor

You can use timechart and specify a span of 1 minute. For example:

<your search>
| timechart count  span=1m
0 Karma

woodcock
Esteemed Legend

Like this:

| makeresults 
| eval time="00:07:34.271009" 
| rex field=time "(?J)(?:(?<tt_hours>\d+):(?<tt_minutes>\d+):)?(?:(?<tt_minutes>\d+):)?(?<tt_seconds>.+)$" 
| fillnull value=0 tt_hours tt_minutes 
| eval _time = tt_seconds + (60 * (tt_minutes + (60 * tt_hours))) + relative_time(now(), "@d")
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...