Splunk Search

Timechart with Time (X-) Axis delineated in "T-minutes before now"?

woodcock
Esteemed Legend

I have a timechart that shows latency in minutes for the last 24 hours snapped to the hour. What I would like to see for the X-axis is NOT the time of day as is shown by default but The rigthmost point shown as "0" and the leftmost edge shown as either T-1400, -1440 or 1440. The benefit should be obvious: If my latency is running 300 minutes, I need to know where T-300 minutes is because everything after that is useless.

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Assumming you timechart commmand give _time and latency field, try something like this

Your base search with timechart giving _time and latency field| eventstats max(_time) as T_Minutes| eval T_Minutes=round((_time-T_Minutes)/60) | table T_Minutes, latency 

Gives minutes values on x-axis from 0 to 1440 at the interval of 60.

You can format the value of T_Minutes per your need by updating the "| eval T_Minutes..."
e.g. to get x-axis values like T-0, T-180,...T-1440" use this

| eval T_Minutes="T-".round((_time-T_Minutes)/60)

View solution in original post

0 Karma

somesoni2
Revered Legend

Assumming you timechart commmand give _time and latency field, try something like this

Your base search with timechart giving _time and latency field| eventstats max(_time) as T_Minutes| eval T_Minutes=round((_time-T_Minutes)/60) | table T_Minutes, latency 

Gives minutes values on x-axis from 0 to 1440 at the interval of 60.

You can format the value of T_Minutes per your need by updating the "| eval T_Minutes..."
e.g. to get x-axis values like T-0, T-180,...T-1440" use this

| eval T_Minutes="T-".round((_time-T_Minutes)/60)
0 Karma

somesoni2
Revered Legend

Updated answer to use max(_time) (missed the right most tick should be 0 clue)

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...