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!

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...