Splunk Search

Can I concatenate a complete search query to the already filtered stats results which only executes if an input checkbox is checked

varun99
Path Finder

I want to add a checkbox input which just concatenates my search with something like " | search Error" if I check that. Is it possible ?

0 Karma
1 Solution

micahkemp
Champion

This is easy with a dropdown, as the below run anywhere dashboard XML illustrates:

<form>
  <label>616525</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="filter_errors" searchWhenChanged="true">
      <label>Filter Errors</label>
      <choice value="| search">No</choice>
      <choice value="| search Error">Yes</choice>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>index=_internal $filter_errors$ | stats count</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="count">20</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">none</option>
        <option name="percentagesRow">false</option>
        <option name="rowNumbers">false</option>
        <option name="totalsRow">false</option>
        <option name="wrap">true</option>
      </table>
    </panel>
  </row>
</form>

But, unless I'm missing something, using a checkbox will effectively cause your search not to run (at all) if nothing is checked, as the token would be unset, and hence the search would think it needs to wait for input (until the token is set).

View solution in original post

micahkemp
Champion

This is easy with a dropdown, as the below run anywhere dashboard XML illustrates:

<form>
  <label>616525</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="filter_errors" searchWhenChanged="true">
      <label>Filter Errors</label>
      <choice value="| search">No</choice>
      <choice value="| search Error">Yes</choice>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>index=_internal $filter_errors$ | stats count</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="count">20</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">none</option>
        <option name="percentagesRow">false</option>
        <option name="rowNumbers">false</option>
        <option name="totalsRow">false</option>
        <option name="wrap">true</option>
      </table>
    </panel>
  </row>
</form>

But, unless I'm missing something, using a checkbox will effectively cause your search not to run (at all) if nothing is checked, as the token would be unset, and hence the search would think it needs to wait for input (until the token is set).

varun99
Path Finder

I just tried with the Dropdown and it worked. Thanks a lot.

0 Karma
Get Updates on the Splunk Community!

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Community Content Calendar, October Edition

Welcome to the October edition of our Community Spotlight! The Splunk Community is a treasure trove of ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...