Dashboards & Visualizations

How to display a message in dashboard like "PROCESS IS DOWN" when certain events showed up in log?

krishnacasso
Path Finder

I want to display a message in dashboard like "PROCESS IS DOWN" when certain events showed up in log.

"sm waiting for threads to terminate" OR
"sm proceeding with shutdown" OR
"sm is down" OR
"Thread pool stopped; proceeding with shutdown" OR
"Released sm"

If any of the string when occurred in log, I want to show a message like host and Process is down.

Thanks!

0 Karma
1 Solution

cmerriman
Super Champion
....|appendpipe [search "sm waiting for threads to terminate" OR "sm proceeding with shutdown" OR "sm is down" OR "Thread pool stopped; proceeding with shutdown" OR "Released sm"|eval newMessage="PROCESS IS DOWN"|table newMessage]|search newMessage=*|stats count by newMessage|fields - count

I tested this quicky on my system and it seems to work.

View solution in original post

0 Karma

aaraneta_splunk
Splunk Employee
Splunk Employee

@krishnacasso - Did one of the answers below help provide a solution your question? If yes, please click “Accept” below the best answer to resolve this post. If no, please leave a comment with more feedback. Thanks.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi krishnacasso,
try something like this:

your_search "sm waiting for threads to terminate" OR "sm proceeding with shutdown" OR "sm is down" OR "Thread pool stopped; proceeding with shutdown" OR "Released sm" | eval Message="PROCESS IS DOWN" | rex "(?<Error>(sm proceeding with shutdown)|(sm is down)|(Thread pool stopped; proceeding with shutdown)|(Released sm)) | table _time host Message Error

In this way you show TimeStamp, host, your message and in addition also the Error String you found.

Bye.
Giuseppe

0 Karma

cmerriman
Super Champion
....|appendpipe [search "sm waiting for threads to terminate" OR "sm proceeding with shutdown" OR "sm is down" OR "Thread pool stopped; proceeding with shutdown" OR "Released sm"|eval newMessage="PROCESS IS DOWN"|table newMessage]|search newMessage=*|stats count by newMessage|fields - count

I tested this quicky on my system and it seems to work.

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