Splunk Search

help on coloring a threshold number with a unit value

jip31
Motivator

hi

I use a search wich add a unit value at the end of the result (GB)

| eval FreeSpace=FreeSpace." GB", TotalSpace=TotalSpace." GB" 

I need to use a threshold coloring on this value but it doesnt works due to the unit value at the end...

      <colorPalette type="list">[#DC4E41,#F1813F,#53A051]</colorPalette>
      <scale type="threshold">10,80</scale>
    </format>

what i have to do please??

Tags (1)
0 Karma
1 Solution

vnravikumar
Champion

Hi

Check this sample

<dashboard>
  <label>table</label>
  <row>
    <panel>
      <table>
        <search>
          <query>index="_internal" |stats count by sourcetype </query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <format type="number" field="count">
           <option name="precision">0</option>
          <option name="useThousandSeparators">false</option>
          <option name="unit">GB</option>
          <option name="unitPosition">after</option>
        </format>
        <format type="color" field="count">
          <colorPalette type="list">[#DC4E41,#F1813F,#53A051]</colorPalette>
          <scale type="threshold">0,30,70,100</scale>
        </format>
      </table>
    </panel>
  </row>
</dashboard>

View solution in original post

0 Karma

vnravikumar
Champion

Hi

Check this sample

<dashboard>
  <label>table</label>
  <row>
    <panel>
      <table>
        <search>
          <query>index="_internal" |stats count by sourcetype </query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <format type="number" field="count">
           <option name="precision">0</option>
          <option name="useThousandSeparators">false</option>
          <option name="unit">GB</option>
          <option name="unitPosition">after</option>
        </format>
        <format type="color" field="count">
          <colorPalette type="list">[#DC4E41,#F1813F,#53A051]</colorPalette>
          <scale type="threshold">0,30,70,100</scale>
        </format>
      </table>
    </panel>
  </row>
</dashboard>
0 Karma

jip31
Motivator

It doesnt works
stats latest(time) as time latest(FreeSpace) as FreeSpace by host
| eval FreeSpace=FreeSpace." GB", TotalSpace=TotalSpace." GB"
| rename FreeSpace as "Free space"

 <format type="number" field="Free space">
           <option name="useThousandSeparators">false</option>
           <option name="unit">GB</option>
           <option name="unitPosition">after</option>
         </format>
         <format type="color" field="Free space">
           <colorPalette type="list">[#DC4E41,#F1813F,#53A051]</colorPalette>
           <scale type="threshold">0,10,20,100</scale>
         </format>
0 Karma

vnravikumar
Champion

Hi
Remove | eval FreeSpace=FreeSpace." GB", TotalSpace=TotalSpace." GB" from your query and check

0 Karma

jip31
Motivator

ok thanks.

0 Karma
Get Updates on the Splunk Community!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...