Splunk Search

How to search two different events by two different eventtypes?

sunnyparmar
Communicator

Hi,

I have two different eventtypes in which I have defined two different events given below:

event_attachment contains index=abc sourcetype=xyz "is attachment"
event_extract contains index=abc sourcetype=asd "is Extract"

Both have the same index and sourcetype. Both share the same tag "http-access-in"

Now I want to make one dashboard under which I can grep the value of both different eventtypes "event_attachment" & "event_extract"

My search is something like below, but not getting the exact result:

eventtype="event_attachment" OR eventtype="event_extract"  tag::http-access-in | timechart count by http-access-in

It is giving me the values with the column name "null" with the time frame, but I want to see the both eventtypes in the result output instead of a null column.

Thanks

0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

(eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by tag::http-access-in

Or maybe this:

(eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by tag::http-access-in eventtype

Or maybe this:

(eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by eventtype

View solution in original post

woodcock
Esteemed Legend

Like this:

(eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by tag::http-access-in

Or maybe this:

(eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by tag::http-access-in eventtype

Or maybe this:

(eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by eventtype

woodcock
Esteemed Legend

Try this:

 (eventtype="event_attachment" OR eventtype="event_extract") tag::http-access-in | timechart count by eventtype | fields - access_attachment access_event

sunnyparmar
Communicator

Sorry woodcock for replying late as my off is going on.. well your above given query gave me the exact result what I want so once again thanks a lot..

Regards

0 Karma

sunnyparmar
Communicator

Thanks for reply but your first query gave result with null column, second query showing error (Error in 'timechart' command: The argument 'eventtype' is invalid. ) and third query showing result with my desired column names but there are 2 more extra column showing in output that is "access_attachment" and "access_event" because these two also are showing in splunk settings -> eventtypes so how to get out these two from the output?

Regards

0 Karma

grijhwani
Motivator

... | timechart count by eventtype

There is nothing forcing your display-by to be any of your select criteria.

0 Karma

sunnyparmar
Communicator

query showing result with my desired column names but there are 2 more extra column showing in output that is "access_attachment" and "access_event" because these two also are showing in splunk settings -> eventtypes so how to get out these two from the output?

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