Getting Data In

Multiple sourcetypes in a search?

PHRaymond
Explorer

Just curious, can this search parameter be streamlined at all?

sourcetype=typeone OR sourcetype=typetwo OR sourcetype=typethree OR sourcetype=typefour

I'm just looking for something more elegant, so this isn't critical by any means. I was hoping for something like:

sourcetype=(typeone,typetwo,typethree,typefour)

but no love. Any thoughts?

Thank you.

1 Solution

dwaddle
SplunkTrust
SplunkTrust

There isn't anything directly like that in the search language. For a small set of sourcetypes (or any other field), an OR between each is the best approach. You can encapsulate this inside of a macro to make for less typing.

For a larger set (large enough to be willing to maintain a lookup table), you can emulate this using inputlookup and a subsearch. For example, define a lookup table in $SPLUNK_HOME/etc/system/lookups called many_sourcetypes.csv as follows:

sourcetype
typeone
typetwo
typethree
.
.
.
typefiftyseven

Then, in your search --

[ | inputlookup many_sourcetypes.csv | fields sourcetype ] ...

View solution in original post

mux
Explorer

You can also use tags on the sourcetypes.

tag=yourtagname yousearchhere

and it will search all the sourcetypes with that tag name.

0 Karma

dwaddle
SplunkTrust
SplunkTrust

There isn't anything directly like that in the search language. For a small set of sourcetypes (or any other field), an OR between each is the best approach. You can encapsulate this inside of a macro to make for less typing.

For a larger set (large enough to be willing to maintain a lookup table), you can emulate this using inputlookup and a subsearch. For example, define a lookup table in $SPLUNK_HOME/etc/system/lookups called many_sourcetypes.csv as follows:

sourcetype
typeone
typetwo
typethree
.
.
.
typefiftyseven

Then, in your search --

[ | inputlookup many_sourcetypes.csv | fields sourcetype ] ...

PHRaymond
Explorer

That's pretty much what I figured. Thank you!

0 Karma
Get Updates on the Splunk Community!

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...

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