Dashboards & Visualizations

Using a search base with inputlookup, how do I add a static value to the data set so "All" is the first value in the drop-down?

rharrisssi
Path Finder

I've basically created a base search and am using it with a lookup. The results of the base search are all my regions. However, I want to have an "All" option in the drop-down without updating the lookup table as it's generated hourly.

  <search id="regions">
    <query>
      <![CDATA[
| inputlookup abc_sd_ipam
| stats by abc_region
      ]]>
    </query>
  </search>

[...]

    <input type="dropdown" token="abc_region" searchWhenChanged="true">
      <label>Region</label>
      <selectFirstChoice>true</selectFirstChoice>
      <allowCustomValues>false</allowCustomValues>
      <search base="regions"><query>| table abc_region</query></search>
      <fieldForLabel>abc_region</fieldForLabel>
      <fieldForValue>abc_region</fieldForValue>
    </input>

Can someone assist me with adding a static value to this data set so that "All" is the first value in the drop-down?

0 Karma
1 Solution

rharrisssi
Path Finder

This turned out to be the solution:

    <input type="dropdown" token="abc_region" searchWhenChanged="true">
      <label>Region</label>
      <selectFirstChoice>false</selectFirstChoice>
      <allowCustomValues>true</allowCustomValues>
      <choice value="*">All</choice>
      <search base="regions">
        <query>| table abc_region</query>
      </search>
      <fieldForLabel>abc_region</fieldForLabel>
      <fieldForValue>abc_region</fieldForValue>
    </input>

Notice:

  <choice value="*">All</choice>

View solution in original post

0 Karma

rharrisssi
Path Finder

This turned out to be the solution:

    <input type="dropdown" token="abc_region" searchWhenChanged="true">
      <label>Region</label>
      <selectFirstChoice>false</selectFirstChoice>
      <allowCustomValues>true</allowCustomValues>
      <choice value="*">All</choice>
      <search base="regions">
        <query>| table abc_region</query>
      </search>
      <fieldForLabel>abc_region</fieldForLabel>
      <fieldForValue>abc_region</fieldForValue>
    </input>

Notice:

  <choice value="*">All</choice>
0 Karma

icyfeverr
Path Finder

In your search query you can do something like the below:

| inputlookup abc_sd_ipam | stats by abc_region | append [ | stats count | eval count="All" | rename count AS abc_region ]

Want to give credit to https://answers.splunk.com/answers/41525/add-a-row-to-end-of-table.html

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