- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

asarran
Path Finder
11-22-2016
08:47 AM
Good Morning, Fellow Splunkers
I'm looking to list all events of an extracted field one time.
Example:
Extracted Field= [Direction]
However, I don't know all the possible outcomes, so I would like to list out all the values
North
West
South East
North East
East
Does anyone have an idea how I can generate this list for further reports?
Thank You,
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

masonmorales
Influencer
11-22-2016
12:12 PM
base search | stats values(yourfield)
base search | stats count by yourfield | table yourfield
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

masonmorales
Influencer
11-22-2016
12:12 PM
base search | stats values(yourfield)
base search | stats count by yourfield | table yourfield
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

sundareshr
Legend
11-22-2016
08:55 AM
Couple of options
base search | table fieldName | dedup fieldName
*OR*
base search | stats count by fieldName
