All Apps and Add-ons

Dropdown with eventtypes

dackamen
Engager

Is there a way to create dropdown box where you can select one of all the eventtypes?

I currently have this but it takes long time and resources to collect and display all the eventtypes:

  <input type="dropdown" token="field2">
    <label>Eventtype</label>
    <populatingSearch fieldForValue="eventtype">index=* | stats count by host, eventtype</populatingSearch>
  </input>

Is it possible at all or no?

Tags (1)
0 Karma

somesoni2
Revered Legend

The fastest way to do it is using REST API calls. Try this

 <input type="dropdown" token="field2">
<label>Eventtype</label>
<populatingSearch fieldForValue="eventtype">| rest /services/saved/eventtypes | table title | rename title as eventtype</populatingSearch>
</input>

gabetheISguy
Explorer

Yes! It is

Here is a Sample

<input type="dropdown" token="eventtype" searchWhenChanged="false">
<label>Select an Event Type to proceed</label>
<choice value="*">All</choice>
<populatingSearch fieldForLabel="eventtype" fieldForValue="eventtype">
<![CDATA[index="xxxxxxxindex" sourcetype=xxxxxx | stats count by eventtype | dedup eventtype | fields eventtype]]>
</populatingSearch>
<default>*</default>
</input>
0 Karma

Raghav2384
Motivator

Try it without stats and host.

Index =x sourcetype=x|top 25 eventtypes

0 Karma

Raghav2384
Motivator

Try narrowing it down to eventtypes field only

Index= * |fields eventtype|top 25 eventtypes

Keep changing the top x
Thanks,
Raghav

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