SlideShare una empresa de Scribd logo
1 de 20
Descargar para leer sin conexión
Monitoring your WO apps
Pascal Robert
Why monitoring?

•   Because you want to find out problems before your customers
    find them!

•   This is not about finding bugs in your app, more about finding
    deployment problems.

•   Have to be notified about any problems, including OS, hardware
    and Web server problems.
Nagios

•   My favorite tool for monitoring.

•   Been around since 1999 (was called Netsaint back in the days).

•   Open source (C and PERL code).

•   Works fine on Linux and OS X (use MacPorts to install on OS
    X).
Nagios
•   Can monitor many things with the default plugins : HTTP, SNMP,
    disk space, load, etc.

•   Can do remote checks (checks runs on the "client", essential for
    things like disk space or load).

•   Tons of plugins on Nagios Exchange, including for RDMBS like
    Oracle or MySQL.

•   Easy to write plugins, be it in PERL, Bash, C or even Java.
Nagios HTTP check
•   You can use the default "check_http" plugin.

•   Will check its state based on content's response, timeout, or
    HTTP response code (404, 500, etc.)

•   Can post data (might be useful for REST services).

•   Can specify a specific HTTP method (HEAD, OPTIONS, TRACE,
    PUT, DELETE, POST, GET).

•   Can even check if your SSL certificate is still valid!
DEMO
Java-specific checks


•   Checks with check_http are fine... but won't find some problems
    like "Out of memory" errors.

•   You can use JMX for that!
Java-specific checks

•   With JMX, you can monitor things like heap memory usage,
    number of threads, number of loaded classes and CPU usage.

•   Works fine on Java 5 and 6.

•   Easy to enable.
Enabling JMX in your app
bash-3.2# cp /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management/
jmxremote.password.template /Library/WebObjects/jmxremote.password

bash-3.2# chown appserver /Library/WebObjects/jmxremote.password

bash-3.2# chmod 600 /Library/WebObjects/jmxremote.password

In your apps launch arguments:

-Dcom.sun.management.jmxremote.port=XXXX
-Dcom.sun.management.jmxremote.authenticate=true
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management.jmxremote.password.file=/Library/WebObjects/jmxremote.password
WO-specific checks

•   With WO 5.4, the stats available from WOStats are also available
    by JMX.

•   It give you access to data like memory usage, average session
    memory, and average requests per session.

•   You need to enable JMX + add one line in your Application class
    constructor.
JConsole output
Enabling WO JMX in your app
   import com.webobjects.appserver.WOStatisticsStore;
	
public Application() {
...
    registerMBean((Object)statisticsStore(), getJMXDomain(), WOStatisticsStore.class.getName());
}
check_jmx

•   check_jmx is a Nagios plugin to connect to JMX-enabled apps.

•   Written in Java, source code is available.

•   Sadly, it can only check results of type number or string, no
    hashmap support.
DEMO
Finding EOF deadlocks

•   Create two DirectActions : one that use EOF, the other pure
    JDBC.

•   Make sure the DA returns the same result everytime.

•   Call the DA with check_http, and validate the result.

•   If the JDBC check is good, but not the EOF one, good chance
    that you have a EOF deadlock.
Checking wotaskd config

•   Nagios plugin that I wrote to check for various settings, based on
    the /admin direct actions available in Wonder's JavaMonitor.

•   Useful to check settings, like if auto recover or refuse new
    sessions is off, number of deaths have reached a certain level or
    that the app is not running.

•   Work in progress, will release it in late September.
Graphing

•   Would be nice to graph some data, like memory usage.

•   Lot of tools can do this (Cacti, SNMP tools, etc.), but you can do
    it with Nagios too.

•   Graphing and performance data are useful when stress loading
    your application with JMeter.

•   Look at PNP4Nagios or NagiosGraph if you want graphing.
Sample NagiosGraph chart
Resources


•   Nagios : http://www.nagios.org

•   JMX : http://download-llnw.oracle.com/javase/1.5.0/docs/guide/management/agent.html

•   check_jmx : http://exchange.nagios.org/directory/Plugins/Java-Applications-and-Servers/Syabru-
    Nagios-JMX-Plugin/details
Q&A
Monitoring your WO apps

Más contenido relacionado

La actualidad más candente

Casual mass parallel data processing in Java
Casual mass parallel data processing in JavaCasual mass parallel data processing in Java
Casual mass parallel data processing in Java
Altoros
 
How to Analyze Reports in Jmeter
How to Analyze Reports in JmeterHow to Analyze Reports in Jmeter
How to Analyze Reports in Jmeter
Viviana Lesmes
 
Why internal pen tests are still fun
Why internal pen tests are still funWhy internal pen tests are still fun
Why internal pen tests are still fun
pyschedelicsupernova
 
Gatling - Bordeaux JUG
Gatling - Bordeaux JUGGatling - Bordeaux JUG
Gatling - Bordeaux JUG
slandelle
 
Performance testing using Jmeter for apps which needs authentication
Performance testing using Jmeter for apps which needs authenticationPerformance testing using Jmeter for apps which needs authentication
Performance testing using Jmeter for apps which needs authentication
Jay Jha
 
Speed geeking-lotusscript
Speed geeking-lotusscriptSpeed geeking-lotusscript
Speed geeking-lotusscript
Bill Buchan
 

La actualidad más candente (15)

Speed Up Synchronization Locks: How and Why?
Speed Up Synchronization Locks: How and Why?Speed Up Synchronization Locks: How and Why?
Speed Up Synchronization Locks: How and Why?
 
ONOS System Test - ONS2016
ONOS System Test - ONS2016ONOS System Test - ONS2016
ONOS System Test - ONS2016
 
How To Get The Most Out Of Your Hibernate, JBoss EAP 7 Application (Ståle Ped...
How To Get The Most Out Of Your Hibernate, JBoss EAP 7 Application (Ståle Ped...How To Get The Most Out Of Your Hibernate, JBoss EAP 7 Application (Ståle Ped...
How To Get The Most Out Of Your Hibernate, JBoss EAP 7 Application (Ståle Ped...
 
From 0 to 0xdeadbeef - security mistakes that will haunt your startup
From 0 to 0xdeadbeef - security mistakes that will haunt your startupFrom 0 to 0xdeadbeef - security mistakes that will haunt your startup
From 0 to 0xdeadbeef - security mistakes that will haunt your startup
 
Gatling
GatlingGatling
Gatling
 
Casual mass parallel data processing in Java
Casual mass parallel data processing in JavaCasual mass parallel data processing in Java
Casual mass parallel data processing in Java
 
Monitoring What Matters: The Prometheus Approach to Whitebox Monitoring (Berl...
Monitoring What Matters: The Prometheus Approach to Whitebox Monitoring (Berl...Monitoring What Matters: The Prometheus Approach to Whitebox Monitoring (Berl...
Monitoring What Matters: The Prometheus Approach to Whitebox Monitoring (Berl...
 
How to Analyze Reports in Jmeter
How to Analyze Reports in JmeterHow to Analyze Reports in Jmeter
How to Analyze Reports in Jmeter
 
Three Lessons about Gatling and Microservices
Three Lessons about Gatling and MicroservicesThree Lessons about Gatling and Microservices
Three Lessons about Gatling and Microservices
 
Why internal pen tests are still fun
Why internal pen tests are still funWhy internal pen tests are still fun
Why internal pen tests are still fun
 
Gatling - Bordeaux JUG
Gatling - Bordeaux JUGGatling - Bordeaux JUG
Gatling - Bordeaux JUG
 
Performance testing using Jmeter for apps which needs authentication
Performance testing using Jmeter for apps which needs authenticationPerformance testing using Jmeter for apps which needs authentication
Performance testing using Jmeter for apps which needs authentication
 
Who Should Use Powershell? You Should Use Powershell!
Who Should Use Powershell?  You Should Use Powershell!Who Should Use Powershell?  You Should Use Powershell!
Who Should Use Powershell? You Should Use Powershell!
 
Analyzing Java Applications Using Thermostat (Omair Majid)
Analyzing Java Applications Using Thermostat (Omair Majid)Analyzing Java Applications Using Thermostat (Omair Majid)
Analyzing Java Applications Using Thermostat (Omair Majid)
 
Speed geeking-lotusscript
Speed geeking-lotusscriptSpeed geeking-lotusscript
Speed geeking-lotusscript
 

Similar a Monitoring your WebObjects apps

Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...
Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...
Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...
seleniumconf
 
Using Nagios to monitor your WO systems
Using Nagios to monitor your WO systemsUsing Nagios to monitor your WO systems
Using Nagios to monitor your WO systems
WO Community
 
Crash reports pycodeconf
Crash reports pycodeconfCrash reports pycodeconf
Crash reports pycodeconf
lauraxthomson
 

Similar a Monitoring your WebObjects apps (20)

Oracle WebLogic Diagnostics & Perfomance tuning
Oracle WebLogic Diagnostics & Perfomance tuningOracle WebLogic Diagnostics & Perfomance tuning
Oracle WebLogic Diagnostics & Perfomance tuning
 
ITFT - Java Coding
ITFT - Java CodingITFT - Java Coding
ITFT - Java Coding
 
Prometheus - Intro, CNCF, TSDB,PromQL,Grafana
Prometheus - Intro, CNCF, TSDB,PromQL,GrafanaPrometheus - Intro, CNCF, TSDB,PromQL,Grafana
Prometheus - Intro, CNCF, TSDB,PromQL,Grafana
 
Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...
Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...
Testing Rapidly Changing Applications With Self-Testing Object-Oriented Selen...
 
Performance tuning Grails Applications GR8Conf US 2014
Performance tuning Grails Applications GR8Conf US 2014Performance tuning Grails Applications GR8Conf US 2014
Performance tuning Grails Applications GR8Conf US 2014
 
Here Be Dragons – Advanced JavaScript Debugging
Here Be Dragons – Advanced JavaScript DebuggingHere Be Dragons – Advanced JavaScript Debugging
Here Be Dragons – Advanced JavaScript Debugging
 
FITC - Here Be Dragons: Advanced JavaScript Debugging
FITC - Here Be Dragons: Advanced JavaScript DebuggingFITC - Here Be Dragons: Advanced JavaScript Debugging
FITC - Here Be Dragons: Advanced JavaScript Debugging
 
Surge2012
Surge2012Surge2012
Surge2012
 
OWASP ZAP Workshop for QA Testers
OWASP ZAP Workshop for QA TestersOWASP ZAP Workshop for QA Testers
OWASP ZAP Workshop for QA Testers
 
Create an architecture for web test automation
Create an architecture for web test automationCreate an architecture for web test automation
Create an architecture for web test automation
 
introduction to node.js
introduction to node.jsintroduction to node.js
introduction to node.js
 
Modern application development with oracle cloud sangam17
Modern application development with oracle cloud sangam17Modern application development with oracle cloud sangam17
Modern application development with oracle cloud sangam17
 
How to build a debuggle runtime
How to build a debuggle runtimeHow to build a debuggle runtime
How to build a debuggle runtime
 
StorageQuery: federated querying on object stores, powered by Alluxio and Presto
StorageQuery: federated querying on object stores, powered by Alluxio and PrestoStorageQuery: federated querying on object stores, powered by Alluxio and Presto
StorageQuery: federated querying on object stores, powered by Alluxio and Presto
 
Debugging webOS applications
Debugging webOS applicationsDebugging webOS applications
Debugging webOS applications
 
Using Nagios to monitor your WO systems
Using Nagios to monitor your WO systemsUsing Nagios to monitor your WO systems
Using Nagios to monitor your WO systems
 
Next-gen Automation Framework
Next-gen Automation FrameworkNext-gen Automation Framework
Next-gen Automation Framework
 
Crash reports pycodeconf
Crash reports pycodeconfCrash reports pycodeconf
Crash reports pycodeconf
 
Writing Well Abstracted Automation on Foundations of Jello
Writing Well Abstracted Automation on Foundations of JelloWriting Well Abstracted Automation on Foundations of Jello
Writing Well Abstracted Automation on Foundations of Jello
 
Performance testing with VSTs on- and off-premises
Performance testing with VSTs on-  and off-premisesPerformance testing with VSTs on-  and off-premises
Performance testing with VSTs on- and off-premises
 

Más de WO Community

Más de WO Community (20)

KAAccessControl
KAAccessControlKAAccessControl
KAAccessControl
 
In memory OLAP engine
In memory OLAP engineIn memory OLAP engine
In memory OLAP engine
 
Build and deployment
Build and deploymentBuild and deployment
Build and deployment
 
High availability
High availabilityHigh availability
High availability
 
Reenabling SOAP using ERJaxWS
Reenabling SOAP using ERJaxWSReenabling SOAP using ERJaxWS
Reenabling SOAP using ERJaxWS
 
Chaining the Beast - Testing Wonder Applications in the Real World
Chaining the Beast - Testing Wonder Applications in the Real WorldChaining the Beast - Testing Wonder Applications in the Real World
Chaining the Beast - Testing Wonder Applications in the Real World
 
D2W Stateful Controllers
D2W Stateful ControllersD2W Stateful Controllers
D2W Stateful Controllers
 
Deploying WO on Windows
Deploying WO on WindowsDeploying WO on Windows
Deploying WO on Windows
 
Unit Testing with WOUnit
Unit Testing with WOUnitUnit Testing with WOUnit
Unit Testing with WOUnit
 
Life outside WO
Life outside WOLife outside WO
Life outside WO
 
Apache Cayenne for WO Devs
Apache Cayenne for WO DevsApache Cayenne for WO Devs
Apache Cayenne for WO Devs
 
Advanced Apache Cayenne
Advanced Apache CayenneAdvanced Apache Cayenne
Advanced Apache Cayenne
 
Migrating existing Projects to Wonder
Migrating existing Projects to WonderMigrating existing Projects to Wonder
Migrating existing Projects to Wonder
 
iOS for ERREST - alternative version
iOS for ERREST - alternative versioniOS for ERREST - alternative version
iOS for ERREST - alternative version
 
iOS for ERREST
iOS for ERRESTiOS for ERREST
iOS for ERREST
 
"Framework Principal" pattern
"Framework Principal" pattern"Framework Principal" pattern
"Framework Principal" pattern
 
Filtering data with D2W
Filtering data with D2W Filtering data with D2W
Filtering data with D2W
 
WOver
WOverWOver
WOver
 
Localizing your apps for multibyte languages
Localizing your apps for multibyte languagesLocalizing your apps for multibyte languages
Localizing your apps for multibyte languages
 
WOdka
WOdkaWOdka
WOdka
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 

Monitoring your WebObjects apps

  • 1. Monitoring your WO apps Pascal Robert
  • 2. Why monitoring? • Because you want to find out problems before your customers find them! • This is not about finding bugs in your app, more about finding deployment problems. • Have to be notified about any problems, including OS, hardware and Web server problems.
  • 3. Nagios • My favorite tool for monitoring. • Been around since 1999 (was called Netsaint back in the days). • Open source (C and PERL code). • Works fine on Linux and OS X (use MacPorts to install on OS X).
  • 4. Nagios • Can monitor many things with the default plugins : HTTP, SNMP, disk space, load, etc. • Can do remote checks (checks runs on the "client", essential for things like disk space or load). • Tons of plugins on Nagios Exchange, including for RDMBS like Oracle or MySQL. • Easy to write plugins, be it in PERL, Bash, C or even Java.
  • 5. Nagios HTTP check • You can use the default "check_http" plugin. • Will check its state based on content's response, timeout, or HTTP response code (404, 500, etc.) • Can post data (might be useful for REST services). • Can specify a specific HTTP method (HEAD, OPTIONS, TRACE, PUT, DELETE, POST, GET). • Can even check if your SSL certificate is still valid!
  • 7. Java-specific checks • Checks with check_http are fine... but won't find some problems like "Out of memory" errors. • You can use JMX for that!
  • 8. Java-specific checks • With JMX, you can monitor things like heap memory usage, number of threads, number of loaded classes and CPU usage. • Works fine on Java 5 and 6. • Easy to enable.
  • 9. Enabling JMX in your app bash-3.2# cp /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management/ jmxremote.password.template /Library/WebObjects/jmxremote.password bash-3.2# chown appserver /Library/WebObjects/jmxremote.password bash-3.2# chmod 600 /Library/WebObjects/jmxremote.password In your apps launch arguments: -Dcom.sun.management.jmxremote.port=XXXX -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.password.file=/Library/WebObjects/jmxremote.password
  • 10. WO-specific checks • With WO 5.4, the stats available from WOStats are also available by JMX. • It give you access to data like memory usage, average session memory, and average requests per session. • You need to enable JMX + add one line in your Application class constructor.
  • 12. Enabling WO JMX in your app import com.webobjects.appserver.WOStatisticsStore; public Application() { ... registerMBean((Object)statisticsStore(), getJMXDomain(), WOStatisticsStore.class.getName()); }
  • 13. check_jmx • check_jmx is a Nagios plugin to connect to JMX-enabled apps. • Written in Java, source code is available. • Sadly, it can only check results of type number or string, no hashmap support.
  • 14. DEMO
  • 15. Finding EOF deadlocks • Create two DirectActions : one that use EOF, the other pure JDBC. • Make sure the DA returns the same result everytime. • Call the DA with check_http, and validate the result. • If the JDBC check is good, but not the EOF one, good chance that you have a EOF deadlock.
  • 16. Checking wotaskd config • Nagios plugin that I wrote to check for various settings, based on the /admin direct actions available in Wonder's JavaMonitor. • Useful to check settings, like if auto recover or refuse new sessions is off, number of deaths have reached a certain level or that the app is not running. • Work in progress, will release it in late September.
  • 17. Graphing • Would be nice to graph some data, like memory usage. • Lot of tools can do this (Cacti, SNMP tools, etc.), but you can do it with Nagios too. • Graphing and performance data are useful when stress loading your application with JMeter. • Look at PNP4Nagios or NagiosGraph if you want graphing.
  • 19. Resources • Nagios : http://www.nagios.org • JMX : http://download-llnw.oracle.com/javase/1.5.0/docs/guide/management/agent.html • check_jmx : http://exchange.nagios.org/directory/Plugins/Java-Applications-and-Servers/Syabru- Nagios-JMX-Plugin/details