Dashboards & Visualizations

Can the field be displayed dynamically in splunk?

flzhang132
Explorer

I want to show the data in the last few months.
For example, in the combox, when choosing the last a month, there is only one field in the table.
When choosing the last two months, there are two fields in the same table.
When choosing the last three months, there are three fields in the same table. And so on
alt text
Can the field be displayed dynamically in splunk?

Tags (1)
0 Karma

niketn
Legend

@flzhang132, it would be tough to assist without existing data and query you are trying to run. However, please try the following run anywhere example based on Splunk's _internal index:

<form>
  <label>Time Range Based on Dropdown</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="tokTime" searchWhenChanged="true">
      <label>Select Time</label>
      <choice value="earliest=-1mon@mon latest=now">Last 1 Month</choice>
      <choice value="earliest=-2mon@mon latest=now">Last 2 Months</choice>
      <choice value="earliest=-3mon@mon latest=now">Last 3 Months</choice>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>index=_internal sourcetype=splunkd log_level!=INFO $tokTime$
| bin _time span=1mon
| stats count by _time log_level
| eval Time=strftime(_time,"%Y%m")
| chart sum(count) by log_level Time</query>
          <earliest>-30d@d</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="refresh.display">progressbar</option>
        <option name="rowNumbers">false</option>
        <option name="totalsRow">false</option>
        <option name="wrap">true</option>
      </table>
    </panel>
  </row>
</form>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...