Splunk Search

Create table of exception

harishd
Explorer

Hi,

I have tried to list out all the tomcat exceptions from my application logs like this.

host="Tom1" sourcetype="out" | rex field=_raw "\b(?(java|javax).[\w.]+Exception)" | chart count by exception_type

However I am able to do this only for one single host. But I need something like this.

Exception                        host1          host2           host4 ......
java.net.exception                32             4               54
javax.nullpointerexception        34             56              34
java.netcommandException          34             34              22

How can I achieve this.

Regards,
Harish

Tags (3)
0 Karma
1 Solution

Ayn
Legend

Just add another by directive to chart:

sourcetype="out" 
| rex field=_raw "b(?<exception_type>(java|javax).[w.]+Exception)" 
| chart count by exception_type,host

View solution in original post

Ayn
Legend

Just add another by directive to chart:

sourcetype="out" 
| rex field=_raw "b(?<exception_type>(java|javax).[w.]+Exception)" 
| chart count by exception_type,host

dwaddle
SplunkTrust
SplunkTrust

If this answer solved your problem, please make sure to click the "accepted" check-mark next to it so it gets marked as "answered". Thanks.

harishd
Explorer

Cool thanks a lot.

splunk is really awesome and you guys too..

Regards,
Harish

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

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

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...