Dashboards & Visualizations

How to display values in a CSV Lookup based on a selected time

Kyle_Dylan
New Member

Hi, I was asked to create a simple dashboard as part of my task.

I created a CSV Lookup as source and i want to display the values when i choose a specific "Reporting Date" 

For example, I choose in a drop down a Reporting Date of  Oct 23 2020.... then it should only display in the dashboard the values in the lookup being associated in that date. And if i choose another reporting date it should do the same.

Sample.PNG

i only pasted a portion of my lookup since it has several columns.  i would like to get a simple idea on how before i get to put it in a dashboard. Hope someone can provide some insights into this. Thank you

Labels (4)
0 Karma

renjith_nair
Legend

Please check this run anywhere example for reference

<form>
  <label>LookUp</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="country">
      <label>Country</label>
      <default>Aruba</default>
      <initialValue>Aruba</initialValue>
      <fieldForLabel>country</fieldForLabel>
      <fieldForValue>country</fieldForValue>
      <search>
        <query>|inputlookup geo_attr_countries|fields country</query>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </search>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>|inputlookup geo_attr_countries where country="$country$"</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</form>

 

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...