Deployment Architecture

Run a different code for different values

jiaqya
Builder

i do have type=1 , type=2, and type=3

based on the type that is selected, i would like to run a different set of codes.
can you help me with syntax or provide direction.

Tags (1)
0 Karma

niketn
Legend

@jiaqya, try the following run anywhere dashboard which sets the query to run based on type selected in the dropdown through its <change> event handler.

<form>
  <label>Query based on Type</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="tokType" searchWhenChanged="true">
      <label>Select Type to run corresponding query</label>
      <choice value="type1">Type 1</choice>
      <choice value="type2">Type 2</choice>
      <choice value="type3">Type 3</choice>
      <selectFirstChoice>true</selectFirstChoice>
      <change>
        <condition value="type1">
          <set token="tokQuery">|  makeresults|  eval dummy="Search Query 1"</set>
        </condition>
        <condition value="type2">
          <set token="tokQuery">|  makeresults|  eval dummy="Search Query 2"</set>
        </condition>
        <condition value="type3">
          <set token="tokQuery">|  makeresults|  eval dummy="Search Query 3"</set>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>$tokQuery$</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="count">50</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">none</option>
        <option name="percentagesRow">false</option>
        <option name="rowNumbers">true</option>
        <option name="totalsRow">false</option>
        <option name="wrap">true</option>
      </table>
    </panel>
  </row>
</form>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

jiaqya
Builder

Thanks Niket, ill try this and let you know.

0 Karma
Get Updates on the Splunk Community!

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...