Splunk Search

Combining/appending multiple makeresults

splunkerer
Path Finder


I am providing data from one input in the dashboard, and want to search provided input strings in different fields which may include provided inputs. all the fields can contain same data format if they are not empty. 

I am using the following search, but not working.

Note: provided input can be single values as well.

Expected result:

 

index=hashstore

a.hash="aaaaaaaaa" OR a.hash="bbbbbbbbbb" OR a.hash="ccccccccccc"
OR
b.hash="aaaaaaaaa" OR b.hash="bbbbbbbbbb" OR b.hash="ccccccccccc"
OR
c.hash="aaaaaaaaa" OR c.hash="bbbbbbbbbb" OR c.hash="ccccccccccc"
OR
d.hash="aaaaaaaaa" OR d.hash="bbbbbbbbbb" OR d.hash="ccccccccccc"

 


CURRENT SEARCH -- not giving the expected result.

 

index=hashstore


[| makeresults
| rename a.hash{} as hash
| eval a.hash="aaaaaaaaa,bbbbbbbbbb,ccccccccccc"
| eval a.hash=split(a.hash,",")
| mvexpand a.hash

| append
[| makeresults
| rename b.hash{} as b.hash
| eval b.hash="aaaaaaaaa,bbbbbbbbbb,ccccccccccc" | eval b.hash=split(b.hash,",")
| mvexpand b.hash
]
| append
[| makeresults
| rename c.hash{} as c.hash
| eval c.hash ="aaaaaaaaa,bbbbbbbbbb,ccccccccccc" | eval c.hash =split(c.hash ,",")
| mvexpand c.hash
]

| append
[| makeresults
| rename d.hash{} as d.hash
| eval d.hash="aaaaaaaaa,bbbbbbbbbb,ccccccccccc" | eval d.hash=split(d.hash,",")
| mvexpand d.hash
]


| table a.hash, b.hash, c.hash, d.hash
]

 

Thanks,

Labels (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Since

index=hashstore

a.hash="aaaaaaaaa" OR a.hash="bbbbbbbbbb" OR a.hash="ccccccccccc"
OR
b.hash="aaaaaaaaa" OR b.hash="bbbbbbbbbb" OR b.hash="ccccccccccc"
OR
c.hash="aaaaaaaaa" OR c.hash="bbbbbbbbbb" OR c.hash="ccccccccccc"
OR
d.hash="aaaaaaaaa" OR d.hash="bbbbbbbbbb" OR d.hash="ccccccccccc"

can be written as

index=hashstore

a.hash="aaaaaaaaa" OR 
a.hash="bbbbbbbbbb" OR 
a.hash="ccccccccccc" OR
b.hash="aaaaaaaaa" OR 
b.hash="bbbbbbbbbb" OR 
b.hash="ccccccccccc" OR
c.hash="aaaaaaaaa" OR 
c.hash="bbbbbbbbbb" OR 
c.hash="ccccccccccc" OR
d.hash="aaaaaaaaa" OR 
d.hash="bbbbbbbbbb" OR 
d.hash="ccccccccccc"

your search can be something like

index=hashstore
    [| makeresults 
    | eval hash=split("abcd","")
    | mvexpand hash
    | eval hash=hash.".hash"
    | eval value=split("aaaaaaaaa,bbbbbbbbbb,ccccccccccc",",")
    | mvexpand value
    | eval {hash}=value
    | fields - _time hash value]

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Since

index=hashstore

a.hash="aaaaaaaaa" OR a.hash="bbbbbbbbbb" OR a.hash="ccccccccccc"
OR
b.hash="aaaaaaaaa" OR b.hash="bbbbbbbbbb" OR b.hash="ccccccccccc"
OR
c.hash="aaaaaaaaa" OR c.hash="bbbbbbbbbb" OR c.hash="ccccccccccc"
OR
d.hash="aaaaaaaaa" OR d.hash="bbbbbbbbbb" OR d.hash="ccccccccccc"

can be written as

index=hashstore

a.hash="aaaaaaaaa" OR 
a.hash="bbbbbbbbbb" OR 
a.hash="ccccccccccc" OR
b.hash="aaaaaaaaa" OR 
b.hash="bbbbbbbbbb" OR 
b.hash="ccccccccccc" OR
c.hash="aaaaaaaaa" OR 
c.hash="bbbbbbbbbb" OR 
c.hash="ccccccccccc" OR
d.hash="aaaaaaaaa" OR 
d.hash="bbbbbbbbbb" OR 
d.hash="ccccccccccc"

your search can be something like

index=hashstore
    [| makeresults 
    | eval hash=split("abcd","")
    | mvexpand hash
    | eval hash=hash.".hash"
    | eval value=split("aaaaaaaaa,bbbbbbbbbb,ccccccccccc",",")
    | mvexpand value
    | eval {hash}=value
    | fields - _time hash value]

splunkerer
Path Finder

@ITWhisperer 

Thanks for solution, this is working fine, but the issue is my original field names are ending with {}. I forget to mention it, original search should be like below. 

How can I get this result? 

 

index=hashstore

a.hash{}="aaaaaaaaa" OR 
a.hash{}="bbbbbbbbbb" OR 
a.hash{}="ccccccccccc" OR
b.hash{}="aaaaaaaaa" OR 
b.hash{}="bbbbbbbbbb" OR 
b.hash{}="ccccccccccc" OR
c.hash{}="aaaaaaaaa" OR 
c.hash{}="bbbbbbbbbb" OR 
c.hash{}="ccccccccccc" OR
d.hash{}="aaaaaaaaa" OR 
d.hash{}="bbbbbbbbbb" OR 
d.hash{}="ccccccccccc"

 

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
index=hashstore
    [| makeresults 
    | eval hash=split("abcd","")
    | mvexpand hash
    | eval hash=hash.".hash"
    | eval value=split("aaaaaaaaa,bbbbbbbbbb,ccccccccccc",",")
    | mvexpand value
    | eval {hash}=value
    | fields - _time hash value
    | rename * as *{}]

splunkerer
Path Finder

Thanks @ITWhisperer  you are the best! 

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