Dashboards & Visualizations

How to color the column based upon time?

Veeru
Path Finder

Hello,

I have the dashboard panel  which gives latest time with respect to source and host,

now I want to give a color to the rows where time exceeds more than one in last 7 days. Please help me out.

index=A OR index=B | stats latest(_time) as latest_time by source,host | eval latest_time=strftime(latest_time,"%d/%m/%y %H:%M:%S:%Q") | table latest_time,source,host|sort -latest_time

when the time range is more than 24 hours the column should be in red.as mentioned below

Thnak you in advance,

Veeru.

latest_time source host

01/05/22 23:19:08:898 trace.log y
30/04/22 23:19:08:597 SystemOut.log y
30/04/22 23:19:08:388 SystemOut.log x
30/04/22 23:19:08:388 trace.log x
30/04/22 23:19:05:611 SystemOut.log y
30/04/22 23:19:05:611 trace.log x
30/04/22 23:09:40:000 SystemOut.log y
30/04/22 23:06:05:000 SystemOut.log x
30/04/22 22:57:14:000 SystemOut.log y
Labels (4)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index=A OR index=B
| stats latest(_time) as latest_time by source,host
| table latest_time,source,host
| sort latest_time
| streamstats window=2 range(latest_time) as timerange
| eval colour=if(timerange>24*60*60),"red",null())
| fields -timerange
| sort -latest_time
| fieldformat latest_time=strftime(latest_time,"%d/%m/%y %H:%M:%S:%Q")

Then use colour to indicate that the row needs to be coloured  - there are many answers on how to do this

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 ...