Dashboards & Visualizations

Update query when multiselect changed/updated

vschrodda
Explorer

How can I get the my queries to update when I change the contents of the multiselect input (Select Users)?  Right now, the data will only update the data with the updated $user_tok$ when changing the selection in the Log type dropdown:

vschrodda_0-1623102274013.png

 

 

<form>
  <label>Data Lookup</label>
  <description>Display stats for a given user</description>
  <search id="baseSearch">
    <query>index=source_db sourcetype=source_type Username="*$site_tok$*" | table _time,_raw,Username,roundtrip_ms,client_to_agent_packetloss</query>
    <earliest>$time_tok.earliest$</earliest>
    <latest>$time_tok.latest$</latest>
  </search>
  <fieldset submitButton="false" autoRun="true">
    <input type="text" token="site_tok" searchWhenChanged="true">
      <label>Enter Site</label>
      <default></default>
    </input>
    <input type="time" token="time_tok" searchWhenChanged="true">
      <label>Date</label>
      <default>
        <earliest>-7d@h</earliest>
        <latest>now</latest>
      </default>
    </input>
    <input type="multiselect" token="user_tok" searchWhenChanged="true">
      <label>Select Users</label>
      <search base="baseSearch" id="user_search">
        <query>| eval Username=mvindex(split(Username,"\\"),-1) | dedup Username | sort Username</query>
      </search>
      <fieldForLabel>Username</fieldForLabel>
      <fieldForValue>Username</fieldForValue>
      <valuePrefix>Username="*</valuePrefix>
      <delimiter> OR </delimiter>
      <valueSuffix>"</valueSuffix>
    </input>
    <input type="dropdown" token="result_type" searchWhenChanged="true">
      <label>Log type</label>
      <choice value="P_LOSS">Packet Loss</choice>
      <choice value="MGMT_PROTO_DATA">Latency</choice>
      <default></default>
      <change>
        <condition label="Latency">
          <unset token="result1"></unset>
          <set token="result1">| search _raw="*$result_type$*" $user_tok$ | where roundtrip_ms!=" " | sort _time | table _time,_raw,roundtrip_ms</set>
          <unset token="result2"></unset>
          <set token="result2">| search _raw="*$result_type$*" $user_tok$ | where roundtrip_ms!=" " | sort _time | eval roundtrip_ms=roundtrip_ms | timechart span=1s values(roundtrip_ms) BY Username</set>
        </condition>
        <condition label="Packet Loss">
          <unset token="result1"></unset>
          <set token="result1">| search _raw="*$result_type$*" $user_tok$ | table _time,_raw,client_to_agent_packetloss</set>
          <unset token="result2"></unset>
          <set token="result2">| search _raw="*$result_type$*" $user_tok$ | eval packet_loss=client_to_agent_packetloss | timechart span=1s values(packet_loss) BY Username</set>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel>
      <title>Performance statistics</title>
      <chart>
        <search base="baseSearch">
          <query>$result2$</query>
        </search>
        <option name="charting.chart">line</option>
        <option name="charting.chart.nullValueMode">connect</option>
        <option name="charting.drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </chart>
      <table>
        <title>Query Data</title>
        <search base="baseSearch">
          <query>$result1$</query>
        </search>
      </table>
    </panel>
  </row>
</form>

 

 

Labels (3)
0 Karma
1 Solution

vschrodda
Explorer

Fixed my issue by updating the queries

    <panel>
      <title>Performance statistics</title>
      <chart>
        <search base="baseSearch">
          <query>search $user_tok$ | search $result2$</query>
        </search>
        <option name="charting.chart">line</option>
        <option name="charting.chart.nullValueMode">connect</option>
        <option name="charting.drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </chart>
      <table>
        <title>Query Data</title>
        <search base="baseSearch>
          <query>| search $user_tok$ | search $result1$</query>
        </search>
      </table>
    </panel>

View solution in original post

0 Karma

vschrodda
Explorer

Fixed my issue by updating the queries

    <panel>
      <title>Performance statistics</title>
      <chart>
        <search base="baseSearch">
          <query>search $user_tok$ | search $result2$</query>
        </search>
        <option name="charting.chart">line</option>
        <option name="charting.chart.nullValueMode">connect</option>
        <option name="charting.drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </chart>
      <table>
        <title>Query Data</title>
        <search base="baseSearch>
          <query>| search $user_tok$ | search $result1$</query>
        </search>
      </table>
    </panel>
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 ...