Dashboards & Visualizations

How to display a certain value in a single value chart when the value is not equal to zero?

mdmaala
Communicator

hi! I have a single value chart wherein I want to display a certain value if that value is not equal to zero. I have three values, BAD, WARNING GOOD. when either each of these values turns to zero I will not display it in the single value and the non zero value will be the one displayed in my single value chart.

here is my search:

| ... mysearch 
|eval RT = T + Tt
|eval Rt = R + Rr
|eval Target= Rt * 600

|eval Bad = if((RT>Target),RT,0)
|eval Warning = if((RT<=(Target-1)) AND (RT>(Target/2)),RT,0)
|eval Good = if((RT<=((Target/2)-1)),RT,0)
0 Karma

mrunals
Path Finder

I'd try a case statement. If I follow your logic it might look something like this. This way you end up with just one field and one value to then display in your single value visualization. The "fixme" at the end is just in case there is some logic issues to work out you get some result vs everything not evaluating as true.

| eval foo = case(RT>Target, "Bad", RT<=(Target-1) AND (RT>(Target/2)), "Warning", RT<=((Target/2)-1), "Good", 1=1, "fixme")
| fields foo

0 Karma

mdmaala
Communicator

I will try this then I will get back if this works for me, thank you so much!

0 Karma

somesoni2
Revered Legend

Can you provide expected output with sample values of fields Bad/Warning/Good?

0 Karma

mdmaala
Communicator

Depending on the condition, these values can go Like this,

Good Warning Bad
0 0 100
100 0 0

as you notice, depending on the condition, only one contains a value while two values remain at zero

0 Karma
Get Updates on the Splunk Community!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...