Dashboards & Visualizations

Can you assign input text value depending on input checkbox in a dashboard?

praspai
Path Finder

Hi,

We want to assign a value to input text box depending on checkbox values selected in the dashboard. User should also able to update the values in text box.

alt text

We want user able to update the search condition, depending on attributes selected. Search results will be displayed depending on the search condition.

Is it possible with splunk dashbord ?

0 Karma
1 Solution

renjith_nair
Legend

@praspai,

Try

<form>
  <fieldset submitButton="false" autoRun="false">
    <input type="checkbox" token="attribute">
      <label>Attribute</label>
      <choice value="Receiver=&quot; &quot;">Receiver</choice>
      <choice value="Status=&quot; &quot;">Status</choice>
      <choice value="UserStatus=&quot; &quot;">UserStatus</choice>
      <choice value="*">All</choice>
      <delimiter> AND </delimiter>
      <change>
        <set token="srcFilter">$attribute$</set>
      </change>
    </input>
    <input type="text" token="searchFilter" searchWhenChanged="true">
      <label>Search</label>
      <default>$srcFilter$</default>
      <initialValue>$srcFilter$</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <html>
      <h1>This is my search filter from text box $searchFilter$</h1>
    </html>
    </panel>
  </row>
</form>
Happy Splunking!

View solution in original post

0 Karma

renjith_nair
Legend

@praspai,

Try

<form>
  <fieldset submitButton="false" autoRun="false">
    <input type="checkbox" token="attribute">
      <label>Attribute</label>
      <choice value="Receiver=&quot; &quot;">Receiver</choice>
      <choice value="Status=&quot; &quot;">Status</choice>
      <choice value="UserStatus=&quot; &quot;">UserStatus</choice>
      <choice value="*">All</choice>
      <delimiter> AND </delimiter>
      <change>
        <set token="srcFilter">$attribute$</set>
      </change>
    </input>
    <input type="text" token="searchFilter" searchWhenChanged="true">
      <label>Search</label>
      <default>$srcFilter$</default>
      <initialValue>$srcFilter$</initialValue>
    </input>
  </fieldset>
  <row>
    <panel>
      <html>
      <h1>This is my search filter from text box $searchFilter$</h1>
    </html>
    </panel>
  </row>
</form>
Happy Splunking!
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 ...