Splunk Search

How to show XX lines per sourcetype per host

a212830
Champion

Hi,

I want to look at the format for a number of hosts that are using the same sourcetype (I suspect that the format is different per host). Is there a way to do that?

Something like:

Host 1 - event 1
Host 1 - event 2
Host 1 - event 3...

Host 2 - event 1
Host 2 - event 2
Host 2 - event 3...

Tags (2)
0 Karma

gschmitz
Path Finder

sourcetype=foo (host=Host1 OR host=Host2) |table host, _raw ?

gschmitz
Path Finder

Hence my question mark. The answer I agve was a bit too obvious, so I already figured I was missing some detail.
I haven't tried it, but what would top 3 _time by host do? Since every time is probably unique, it should just take the first ones, right?

head unfortunately doesn't have a by clause.

0 Karma

a212830
Champion

Sorry, thought my example was pretty obvious. Apparently not. I'll try this and see what I get.

Thanks.

0 Karma

jkat54
SplunkTrust
SplunkTrust

You may also be interested in punct for this analysis

sourcetype=foo host=Host1 | head 10 | table host, punct| append [search sourcetype=foo host=Host2 | head 10 | table host, punct]

0 Karma

jkat54
SplunkTrust
SplunkTrust

gschmitz was correct, you can't tell him he's not because you didnt give him the correct requirements in your question. To limit the number of events per host use gschmitz answer but add a head. To do so will require two searches. Since we need two searches, we'll use the append command. With the append command, there will be no need to sort by host.

sourcetype=foo host=Host1 | head 10 | table host, _raw | append [search sourcetype=foo host=Host2 | head 10 | table host, _raw ]

a212830
Champion

That won't do it - I want to limit the number of events per host, and then display them in host and then time order. Not sure if it's even possible..

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...