Dashboards & Visualizations

Dashboard - Dynamic Property Height

danillopavan
Communicator

Hello all,

I would like to know if there is any way to implement a dynamic height for my elements on the Dashboard depending of their values. In my case I am using the element Horseshoe Meter custom app, and based on the value I would like to increase or decrease its height property value.

Thanks and regards,

Tags (1)
0 Karma
1 Solution

worshamn
Contributor

Yes there is a way, though I've got to say changing the height of the Horseshoe Meter app sounds like a strange use-case (are you sure you aren't trying to hide the panel? if you are this would not be the right way to do this). Inside your <search> element you will need to add a <done> element which will then do a condition match on whatever value your meter is using (I will assume the field count from a stats command) and set a height token like so (notice also a default height as well):

    <panel>
      <viz type="horseshoe_meter_app.horseshoe_meter">
        <search>
          <query>your search|stats count</query>
          <done>
            <condition match=" $result.count$ > 300 ">
              <set token="hsheight">500</set>
            </condition>
            <condition>
              <set token="hsheight">300</set>
            </condition>
          </done>
        </search>
        <option name="drilldown">none</option>
        <option name="height">$hsheight$</option>
      </viz>
    </panel>

You can find related information on token usage in dashboards here that covers this: http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens

View solution in original post

0 Karma

worshamn
Contributor

Yes there is a way, though I've got to say changing the height of the Horseshoe Meter app sounds like a strange use-case (are you sure you aren't trying to hide the panel? if you are this would not be the right way to do this). Inside your <search> element you will need to add a <done> element which will then do a condition match on whatever value your meter is using (I will assume the field count from a stats command) and set a height token like so (notice also a default height as well):

    <panel>
      <viz type="horseshoe_meter_app.horseshoe_meter">
        <search>
          <query>your search|stats count</query>
          <done>
            <condition match=" $result.count$ > 300 ">
              <set token="hsheight">500</set>
            </condition>
            <condition>
              <set token="hsheight">300</set>
            </condition>
          </done>
        </search>
        <option name="drilldown">none</option>
        <option name="height">$hsheight$</option>
      </viz>
    </panel>

You can find related information on token usage in dashboards here that covers this: http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...