Dashboards & Visualizations

how to refresh a panel values based on input token

krishnarajb2304
Explorer

Right now refreshing the panel using <option name="refresh.auto.interval">120</option>

would like to keep the drop down (token=refresh) 30,60,120,never. Tried to populate with <option name="refresh.auto.interval">$refresh$</option>

Anyway thoughts will be helpful?

0 Karma
1 Solution

niketn
Legend

@krishnarajb2304, refresh.auto.interval has been deprecated. Post Splunk Enterprise 6.5 onwards, you should be using <refresh> option within search to refresh the panel/s which is/are dependent on the same. Parameter to refresh option can be passed as token similar to the way you intend to via Simple XML. Following is an example (PS: You should be on 6.5 or later for using both refresh and init option as used in the following example).

I have set Interval as 2 minute (2m) in the init section using set command

<dashboard>
    <label>Auto Refresh Search and Panel/s</label>
      <init>
        <set token="Interval">2m</set>
      </init>
      <row>
        <panel>
          <single>
            <search>
              <query>index=_internal sourcetype=splunkd log_level!="INFO"
    | stats count</query>
              <earliest>-7d@d</earliest>
              <latest>now</latest>
              <sampleRatio>1</sampleRatio>
              <refresh>$Interval$</refresh>
            </search>
            <option name="drilldown">none</option>
          </single>
        </panel>
      </row>
</dashboard>

<refresh>$Interval$</refresh> sets the Search to refresh every 2 minutes through the token set in the init section.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

@krishnarajb2304, refresh.auto.interval has been deprecated. Post Splunk Enterprise 6.5 onwards, you should be using <refresh> option within search to refresh the panel/s which is/are dependent on the same. Parameter to refresh option can be passed as token similar to the way you intend to via Simple XML. Following is an example (PS: You should be on 6.5 or later for using both refresh and init option as used in the following example).

I have set Interval as 2 minute (2m) in the init section using set command

<dashboard>
    <label>Auto Refresh Search and Panel/s</label>
      <init>
        <set token="Interval">2m</set>
      </init>
      <row>
        <panel>
          <single>
            <search>
              <query>index=_internal sourcetype=splunkd log_level!="INFO"
    | stats count</query>
              <earliest>-7d@d</earliest>
              <latest>now</latest>
              <sampleRatio>1</sampleRatio>
              <refresh>$Interval$</refresh>
            </search>
            <option name="drilldown">none</option>
          </single>
        </panel>
      </row>
</dashboard>

<refresh>$Interval$</refresh> sets the Search to refresh every 2 minutes through the token set in the init section.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
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 ...