Dashboards & Visualizations

Change background of single value based on its text

allan_newton
Path Finder

Dear Saviours,

I have multiple single-value elements which have three possible values (Passed, Failed, Executed). Now my single value background has to turn green if the value is "Passed", red if the value is "Failed" and grey if the value is "Executed".

I know i can achieve this with range maps, but I want to retain the text in the final view.

0 Karma
1 Solution

sundareshr
Legend

See if this helps

https://answers.splunk.com/answers/103239/change-color-of-single-value-visualization.html

*UPDATED*

    <dashboard>
      <row>
        <panel>
          <single>
            <search>
              <query>| makeresults | eval state="Failed" | table state | eval severity=case(state="Passed", 0, state="Failed", 10, state="Executed", 5) | rangemap field=severity low=0-4 elevated=4-6 default=severe</query>
              <earliest>-15m</earliest>
              <latest>now</latest>
            </search>
            <option name="colorBy">value</option>
            <option name="colorMode">block</option>
            <option name="useColors">0</option>
            <option name="useThousandSeparators">1</option>
            <option name="classField">severity</option>
            <option name="field">state</option>
          </single>
        </panel>
      </row>
    </dashboard>

View solution in original post

sundareshr
Legend

See if this helps

https://answers.splunk.com/answers/103239/change-color-of-single-value-visualization.html

*UPDATED*

    <dashboard>
      <row>
        <panel>
          <single>
            <search>
              <query>| makeresults | eval state="Failed" | table state | eval severity=case(state="Passed", 0, state="Failed", 10, state="Executed", 5) | rangemap field=severity low=0-4 elevated=4-6 default=severe</query>
              <earliest>-15m</earliest>
              <latest>now</latest>
            </search>
            <option name="colorBy">value</option>
            <option name="colorMode">block</option>
            <option name="useColors">0</option>
            <option name="useThousandSeparators">1</option>
            <option name="classField">severity</option>
            <option name="field">state</option>
          </single>
        </panel>
      </row>
    </dashboard>

allan_newton
Path Finder

Thanks much Sundareshr! You saved my day.

0 Karma

allan_newton
Path Finder

I have already seen this. If your help is not a direct/targeted one to the question, others would assume the question is answered. 😞

0 Karma

sundareshr
Legend

Try update ans

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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