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!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...