Dashboards & Visualizations

Question with time chart and Round

arieffel
New Member

host="ESX" NOT (host="GA*" OR host="WA*") | timechart span=1m eval(round(avg(Temperatures{}.CurrentReading),2)) by host

Trying to get just 2 decimal places on the "Temperatures{}.CurrentReading" but getting expression is malformed.

Sorry, I'm a Splunk newbie and I"m trying to read on the webs and piece together what makes sense.

Tags (2)
0 Karma

somesoni2
Revered Legend

Try this

host="ESX" NOT (host="GA*" OR host="WA*") | timechart span=1m avg(Temperatures{}.CurrentReading) by host
| foreach * [| eval "<<FIELD>>"=round('<<FIELD>>',2)]
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...