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!

Splunk Observability for AI

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

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...