Dashboards & Visualizations

How to change cell color based on condition in a dashboard?

priya1926
Path Finder

Here is my query:

<table id="tableColorFinalRowBasedOnData7">
<search>
<query>index="xxxx" source=service (DisplayName="a*" OR DisplayName="b*") host IN (abc xyz) earliest=-60m
| dedup host Name
| table host Name StartMode State | sort Name
| eval color=case(State="Stopped","#880808",State="Running","#008000")
| foreach host Name StartMode State[eval &lt;&lt;FIELD&gt;&gt;=mvappend('&lt;&lt;FIELD&gt;&gt;',color)]
| fields - color</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<format type="color">
<colorPalette type="map">{"Manual":#FF7F50}</colorPalette>
</format>
<format type="color" field="host">
<colorPalette type="expression">mvindex(value,1)</colorPalette>
</format>
<format type="color" field="Name">
<colorPalette type="expression">mvindex(value,1)</colorPalette>
</format>
<format type="color" field="StartMode">
<colorPalette type="expression">mvindex(value,1)</colorPalette>
</format>
<format type="color" field="State">
<colorPalette type="expression">mvindex(value,1)</colorPalette>
</format>
</table>

Service running is getting displayed as green and stopped as red but startmode manual is not setting to orange.

Labels (3)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval color=case(State="Stopped","#880808",State="Running","#008000",State="Manual","#FF7F50")
0 Karma

priya1926
Path Finder

@ITWhisperer I already tried this and it doesnot work because i have StartMode as Manual and State as Stopped.. So the entire cell is displayed as RED. But i need Manual to be in Orange.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval color=case(State="Stopped","#880808",State="Running","#008000")
| foreach host Name State[eval &lt;&lt;FIELD&gt;&gt;=mvappend('&lt;&lt;FIELD&gt;&gt;',color)]
| eval StartMode=if(StartMode="Manual",mvappend(StartMode,"#FF7F50"),StartMode)
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 ...