Dashboards & Visualizations

Dashboard visualization

Mrig342
Contributor

Hi All,

I am trying to create a dashboard panel in trellis view. I have used the below query:

(my search query) | stats count | eval Result=if("count"="0","Ok","Error") | fields - Exception,count

With this I can get the dashboard panel as 

Mrig342_0-1635139279852.png

Please look into the source below:

<option name="colorBy">value</option>
<option name="colorMode">block</option>
<option name="drilldown">none</option>
<option name="numberPrecision">0</option>
<option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
<option name="rangeValues">[0,30,70,100]</option>
<option name="showSparkline">1</option>
<option name="showTrendIndicator">1</option>
<option name="trellis.enabled">1</option>
<option name="trellis.scales.shared">1</option>
<option name="trellis.size">medium</option>
<option name="trendColorInterpretation">standard</option>
<option name="trendDisplayMode">absolute</option>
<option name="unitPosition">after</option>
<option name="useColors">1</option>
<option name="useThousandSeparators">1</option>
</single>
</panel>

Here I have a requirement to change the color of the trellis box. I want it to be green when "Ok" and red when it is "Error". 

Please help guide me to achieve the desired output.

 

Thank you..!!

Labels (1)
0 Karma

Mrig342
Contributor

Hi... Can anyone please comment..?

0 Karma

jhanvidattani
Path Finder

@Mrig342 

Can you try below solution:

<form>
  <label>test</label>
  <fieldset submitButton="false">
    <input type="time" token="field1">
      <label></label>
      <default>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </default>
    </input>
  </fieldset>
  <row>
    <panel>
      <single>
        <title>Test</title>
        <search>
          <query>index="_internal" | stats count by source  | eval Result=if("count"="0","Ok","Error")| fields Result, count | rangemap field=count low=0-0 default=severe</query>
          <earliest>$field1.earliest$</earliest>
          <latest>$field1.latest$</latest>
        </search>
        <option name="drilldown">none</option>
      </single>
    </panel>
  </row>
</form>


We will be using Splunk's rangemap command, with which we can give colour to required field. 

Refer Link to know which colour applies to which severity.

If you find my solution fruitful, then an upvote would be appreciated.

 

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...