Getting Data In

How to create a drop-down that displays values for the selected inputlookup csv file?

CHINTASH
New Member

So let's says I have 2 lookup fields |inputlookup abc.csv & |inputlookup def.csv

I want to tokenize and create a drop-down label called "lookup file" . Now I should be able to click the drop-down and select the abc.csv and I should be able to see values for only the abc file. Similarly I want another option in drop-down for def.csv, so when I select the def.csv from the drop-down, I should be able to see values for that inputlookup file.

Please help

0 Karma

somesoni2
Revered Legend

Try like this

<form>
  <label>Test</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="lookupname">
      <label>Lookup Name</label>
      <choice value="Fils1.csv">File1</choice>
      <choice value="FIle2.csv">File2</choice>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>| gentimes start=-1 |  eval "search to run"="|inputlookup $lookupname$" | table search*</query>
          <earliest>-60m@m</earliest>
          <latest>now</latest>
        </search>
        <option name="wrap">true</option>
        <option name="rowNumbers">false</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">cell</option>
        <option name="count">10</option>
      </table>
    </panel>
  </row>
</form>
0 Karma
Get Updates on the Splunk Community!

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 ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...