Nagios Exchange
  • Home
  • Directory
  • About

Advanced Search

Build precise queries to find exactly what you need

Search Logic

Select compatible versions

Press ESC to close

Sign In Sign Up

Join our next live webinar: “Advanced Nagios Monitoring Techniques” – Register Now

Plugins4379Themes and Skins11Addons732Documentation283Graphics and Logos36View All Categories
LinuxSecuritySNMPFile SystemCloud
New Listings Recently Updated Listings Most Favored Listings Most Popular Listings Most Rated Listings Most Reviewed Listings
Random Project
SQLServer Check MSSQL Server Centric Status
RSS Feed
Newest Listings Updated Listings
Top Contributors
Julien DESMAREST (4)Davide Lemma (4)deskwork_itunes142 (4)Joerg Hoerter (3)TcoUpLoad (1)
See More
Newest Contributors
Community Member (51)Davide Lemma (4)Alarig Le Lay (1)Penn Rabb (1)Sean Falzon (1)
See More
Home > Aurélien
A

Aurélien

@aurelien44230

User Stats

Favorites0

Views

Projects0

No Projects Found
check_jvm

Excellent check

Hi, So happy to find this check. I add -k optional parameter to check multiple JVM on the same machine : ... Usage: $SCRIPT_NAME -n|--name -k -p|--property -w|--warning -c|--critical Where: is one of: "heap|non-heap|threads|classes" Hint: You can use "jps -l" or "java -jar JvmInspector.jar all" to get the java name Example: $SCRIPT_NAME -n org.apache.catalina.startup.Bootstrap -p heap -w 1073741824 -c 2147483648 EOF exit 0 } [ "$#" -eq 0 ] && usage while [ ! -z "$1" ]; do case $1 in -n|--name) shift; NAME="$1";; -k|--keyword) shift; KEYWORD="$1";; -p|--property) shift; PROPERTY="$1";; -w|--warning) shift; WARNING="$1";; -c|--critical) shift; CRITICAL="$1";; -h|--help) usage;; esac shift done [ -z "$NAME" ] && p_unknown "Missing JVM app class name, use -n " [ -z "$PROPERTY" ] && p_unknown "Missing property, use -p " [ -z "$WARNING" ] && p_unknown "Missing warning thresholds, use -w " [ -z "$CRITICAL" ] && p_unknown "Missing critical thresholds, use -c " expr ${WARNING} : '[0-9]+$' >/dev/null || p_unknown "Invalid warning threshold" expr ${CRITICAL} : '[0-9]+$' >/dev/null || p_unknown "Invalid critical threshold" [ -f "$JVMINSPECTOR" ] || p_unknown "Can't find JvmInspector.jar, please install it and set JVMINSPECTOR var in this script" if [ -z "$KEYWORD" ]; then PSLINE="$(ps axo pid,uid,command | grep [j]ava | grep $NAME | head -1)" else PSLINE="$(ps axo pid,uid,command | grep [j]ava | grep $NAME | grep $KEYWORD)" fi ... So, now, you can use the script like this : ./check_jvm --name org.apache.catalina.startup.Bootstrap -k confluence -p heap -w 100 -c 200 ./check_jvm --name org.apache.catalina.startup.Bootstrap -k jira -p heap -w 100 -c 200 Thanks a lot Bye

Reviewed 8 years ago

No Favorites Found

Copyright © 2009-2025 Nagios Enterprises, LLC. All rights reserved.

Privacy PolicyTerms of UseTrademarks