- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
mohitab
Path Finder
12-08-2014
04:13 AM
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
aweitzman
Motivator
12-08-2014
06:55 AM
Something like this:
...your search...
| stats values(field1) as f1values values(field2) as f2values
| eval allvalues=mvdedup(mvappend(f1values,f2values))
ought to work.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
btt
Path Finder
12-12-2014
06:09 AM
HI
I propose this
Index=… field1=*|table field1|append[search index=… field2=*|table field2]| eval allvalues=mvappend(field1,field2)|dedup allvalues |table field1 field2 allvalues |sort allvalues
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
12-08-2014
06:57 AM
It's not clear what you want the output to be. This will show all the combinations of field1 and field2 in your data.
<your search> | dedup field1 field2 | ...
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
aweitzman
Motivator
12-08-2014
06:55 AM
Something like this:
...your search...
| stats values(field1) as f1values values(field2) as f2values
| eval allvalues=mvdedup(mvappend(f1values,f2values))
ought to work.
