Dashboards & Visualizations

Is there an easy way to change the color of a non numeric 'single value' visualization?

rvoninski_splun
Splunk Employee
Splunk Employee

I am working on creating a dashboard of my home status that looks like the graphic attached. Ideally I would like to have a green background around the word 'Secure' and a red background around the word 'Open'. It seems like the single value type is designed to change colors based on numeric values. Is there an easy way to make it change based on some text or other condition?alt text

Tags (2)
1 Solution

somesoni2
Revered Legend

Look at the Splunk 6.x Dashboard Example app for different customization's available https://splunkbase.splunk.com/app/1603/

Something like this would work for your case (run anywhere sample)

<dashboard>
  <label>Custom Color</label>
  <row>
    <panel>
      <single>
        <search>
          <query>| gentimes start=-1 | eval Result="Secure" | table Result | eval range=if(Result="Secure","low","severe")</query>
        </search>
      </single>
      <single>
        <search>
          <query>| gentimes start=-1 | eval Result="Open" | table Result | eval range=if(Result="Secure","low","severe")</query>
        </search>        
      </single>
    </panel>
  </row>
</dashboard>

View solution in original post

somesoni2
Revered Legend

Look at the Splunk 6.x Dashboard Example app for different customization's available https://splunkbase.splunk.com/app/1603/

Something like this would work for your case (run anywhere sample)

<dashboard>
  <label>Custom Color</label>
  <row>
    <panel>
      <single>
        <search>
          <query>| gentimes start=-1 | eval Result="Secure" | table Result | eval range=if(Result="Secure","low","severe")</query>
        </search>
      </single>
      <single>
        <search>
          <query>| gentimes start=-1 | eval Result="Open" | table Result | eval range=if(Result="Secure","low","severe")</query>
        </search>        
      </single>
    </panel>
  </row>
</dashboard>

rvoninski_splun
Splunk Employee
Splunk Employee

Works like a champion!! I looked over the dashbaord examples but didnt catch that snippet of code. So easy once you see how this works. Thank you again.

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...