Splunk Search

Filter host based on patterns

richaGindodia
Path Finder

Hello All,

I have 100 hosts with two patterns client1, client2, client3..... and server1, server2, server3....
I want to list these host in two different dropdowns

Dropdown1 contains clients
Dropdown2 contains servers

How do I do it.
Please help.

Tags (4)
0 Karma
1 Solution

rsennett_splunk
Splunk Employee
Splunk Employee

You would do something like this

<form>
  <label>New_dashboard</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="clients">
       <label>dropdown1(clients)</label>
      <search>
        <query>index=whatever host=client*|stats count by host</query>
        <earliest>-60m@m</earliest>
        <latest>now</latest>
      </search>
      <fieldForLabel>host</fieldForLabel>
      <fieldForValue>host</fieldForValue>
      <prefix>host="</prefix>
      <suffix>"</suffix>
    </input>
    <input type="dropdown" token="servers">
       <label>dropdown1(clients)</label>
      <search>
        <query>index=whatever host=server*|stats count by host</query>
        <earliest>-60m@m</earliest>
        <latest>now</latest>
      </search>
      <fieldForLabel>host</fieldForLabel>
      <fieldForValue>host</fieldForValue>
      <prefix>host="</prefix>
      <suffix>"</suffix>
    </input>
  </fieldset>
   <!-- The Rest of your Dashboard goes here -->
</form>

This will produce two tokens, the value of which would be "host=clientxxx" or "host=serverxxx"

With Splunk... the answer is always "YES!". It just might require more regex than you're prepared for!

View solution in original post

jmallorquin
Builder

Hi

It could be usefull if you create before a lookup file to create the list and save theses searches to run every night.

index=xxx host=cliente* |table host |outputlookup clients.csv <- ALL TIME
index=xxx host=server* |table host | outputlookup servers.csv <- ALL TIME

0 Karma

rsennett_splunk
Splunk Employee
Splunk Employee

You would do something like this

<form>
  <label>New_dashboard</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="clients">
       <label>dropdown1(clients)</label>
      <search>
        <query>index=whatever host=client*|stats count by host</query>
        <earliest>-60m@m</earliest>
        <latest>now</latest>
      </search>
      <fieldForLabel>host</fieldForLabel>
      <fieldForValue>host</fieldForValue>
      <prefix>host="</prefix>
      <suffix>"</suffix>
    </input>
    <input type="dropdown" token="servers">
       <label>dropdown1(clients)</label>
      <search>
        <query>index=whatever host=server*|stats count by host</query>
        <earliest>-60m@m</earliest>
        <latest>now</latest>
      </search>
      <fieldForLabel>host</fieldForLabel>
      <fieldForValue>host</fieldForValue>
      <prefix>host="</prefix>
      <suffix>"</suffix>
    </input>
  </fieldset>
   <!-- The Rest of your Dashboard goes here -->
</form>

This will produce two tokens, the value of which would be "host=clientxxx" or "host=serverxxx"

With Splunk... the answer is always "YES!". It just might require more regex than you're prepared for!

richaGindodia
Path Finder

Thanks alot rsennett. This worked.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...