Reporting

How to split columns in a bar chart based on part of a field?

skhushalani
New Member

I have input data from a software runtime log in the form:

DATE TIME, SEVERITY, ERROR MESSAGE

The "ERROR MESSAGE" field could be one of two messages:

  • "Could not connect to : Timed out"
  • "Could not connect to : No route to host"

I'd like to split the columns in the chart by colour between the two types (timed out vs no route), but because of the "server IP" being in the message, instead of two columns every hour, I get about 100, one for each server IP, since the IP address makes each message look unique.

By the way, I'm relatively new to Splunk so if there is an obvious answer or my question sounds trivial and has been answered plenty of times before, I apologize.
Is there any way to split the columns into just two, ignoring the server IP in the message - therefore just splitting based on part of the message.

0 Karma

aweitzman
Motivator

There are two things you want to do here. First is to grab the back part of the error message, and the second is to count them separately.

To do the first thing, create a new field using rex (I'm calling it EndMessage here). To do the second thing, split the result by that message:

...your search... | rex field="ERROR MESSAGE" ":\s(?<EndMessage>.*)" | timechart span=1h count by EndMessage

You should be able to create a stacked bar chart or split column chart based on this information.

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