Web Server: OpenSSL Cipher Suite

From Resin 4.0 Wiki

(Difference between revisions)
Jump to: navigation, search
 
Line 1: Line 1:
#REDIRECT [[Resin Health System:Tracking And Reporting Anomalies]]
+
{{Health}} {{Cookbook}}
 +
 
 +
== Monitoring Application Server Health Through Statistical Analysis of JMX Attributes ==
 +
 
 +
Resin's health system provides many useful tools to monitor, report, and alert on the health of your application server.  Monitoring of all the typical metrics such as high cpu, low memory, deadlocked threads, etc, is pre-configured for you in health.xml.  We also include appropriately conservative remediation actions in health.xml, such as triggering thread dumps, heap dumps, and restarts when necessary.  It's up to you to tweak these settings to increase or decrease the aggressiveness of the health system as you see appropriate.
 +
 
 +
'''''Resin goes beyond typical metrics monitoring by looking for anomalies in JMX attributes.'''''
 +
 
 +
Any numeric attribute of any MBean in JMX can be configured as ''Meter'' in Resin, which then enables:
 +
 
 +
* Persistent historical tracking
 +
* Visual graphing in resin-admin
 +
* Visual graphing in PDF reports
 +
* Cluster wide reporting
 +
* Health monitoring
 +
* Anomaly analysis and logging
 +
* Triggering health actions (heap dump, thread dump, restart, etc)
 +
 
 +
=== Creating a Meter ===
 +
 
 +
Meters are typically configured in health.xml as a child of <resin>.  health.xml includes quite a few pre-configured meters you can use as examples in addition to the examples below.
 +
 
 +
<health:JmxMeter>
 +
  <name>JVM|Thread|JVM Blocked Count</name>
 +
  <objectName>resin:type=JvmThreads</objectName>
 +
  <attribute>BlockedCount</attribute>
 +
</health:JmxMeter>
 +
 
 +
In this example we've created a meter on the attribute BlockedCount on the MBean resin:type=JvmThreads.  This is an important attribute to track, since it reports blocked threads, which can indicate a serious issue when the value increases significantly.
 +
 
 +
We also provide JMXDeltaMeter, which reports the difference between the current and previous attribute values. 
 +
 
 +
<health:JmxDeltaMeter>
 +
  <name>JVM|Compilation|Compilation Time</name>
 +
  <objectName>java.lang:type=Compilation</objectName>
 +
  <attribute>TotalCompilationTime</attribute>
 +
</health:JmxDeltaMeter>
 +
 
 +
Above, a delta meter is created for compilation time, another important metric to monitor.
 +
 
 +
=== Analyzing a Meter ===
 +
 
 +
Meters alone are useful for manual inspection in resin-admin since every meter can be graphed.  However Resin provides an extremely useful automatic analysis tool called AnomalyAnalyzer.  AnomalyAnalyzer looks at the current meter value, checking for deviations from the average value.  So unusual changes like a spike in blocked threads can be detected
 +
 
 +
<health:AnomalyAnalyzer>
 +
  <meter>JVM|Thread|JVM Blocked Count</meter>
 +
  <health-event>caucho.thread.anomaly.jvm-blocked</health-event>
 +
</health:AnomalyAnalyzer>
 +
 
 +
In this example we've created an AnomalyAnalyzer on the blocked thread meter we created above, and assigned it to the health event "caucho.thread.anomaly.jvm-blocked".  The health-event attribute is optional.  Without a health-event, an anomaly analyzer alone will log anomalies it detects to the resin log at WARNING level.  These will also show up in PDF reports, and shown below.
 +
 
 +
(pdf screenshot)
 +
 
 +
=== Reacting to Anomalies ===
 +
 
 +
Resin's health system provides a set of remediation actions that you can configure to automatically execute in reaction to an anomaly.  The <health-event> attribute we configured above allows us to tie health actions to a detected anomaly, as shown below:
 +
 
 +
<health:DumpThreads>
 +
  <health:IfHealthEvent regexp="caucho.thread"/>
 +
  <health:IfNotRecent time="15m"/>
 +
</health:DumpThreads>
 +
 
 +
In this example we've created a DumpThreads action with 2 conditions.  The first condition, IfHealthEvent, tells the action to execute only if the health event starts with "caucho.thread".  The send condition, IfNotRecent, prevents the action from executing more than once every 15 minutes. 
 +
 
 +
Here is the full example:
 +
 
 +
<resin xmlns="http://caucho.com/ns/resin"
 +
            xmlns:resin="urn:java:com.caucho.resin"
 +
            xmlns:health="urn:java:com.caucho.health"
 +
            xmlns:ee="urn:java:ee">
 +
 
 +
  <health:JmxMeter>
 +
    <name>JVM|Thread|JVM Blocked Count</name>
 +
    <objectName>resin:type=JvmThreads</objectName>
 +
    <attribute>BlockedCount</attribute>
 +
  </health:JmxMeter>
 +
 
 +
  <health:AnomalyAnalyzer>
 +
    <meter>JVM|Thread|JVM Blocked Count</meter>
 +
    <health-event>caucho.thread.anomaly.jvm-blocked</health-event>
 +
  </health:AnomalyAnalyzer>
 +
 
 +
  <health:DumpThreads>
 +
    <health:IfHealthEvent regexp="caucho.thread"/>
 +
    <health:IfNotRecent time="15m"/>
 +
  </health:DumpThreads>
 +
 
 +
</resin>

Revision as of 00:00, 25 January 2012

Heart-48.pngCookbook-48.png

Contents

Monitoring Application Server Health Through Statistical Analysis of JMX Attributes

Resin's health system provides many useful tools to monitor, report, and alert on the health of your application server. Monitoring of all the typical metrics such as high cpu, low memory, deadlocked threads, etc, is pre-configured for you in health.xml. We also include appropriately conservative remediation actions in health.xml, such as triggering thread dumps, heap dumps, and restarts when necessary. It's up to you to tweak these settings to increase or decrease the aggressiveness of the health system as you see appropriate.

Resin goes beyond typical metrics monitoring by looking for anomalies in JMX attributes.

Any numeric attribute of any MBean in JMX can be configured as Meter in Resin, which then enables:

  • Persistent historical tracking
  • Visual graphing in resin-admin
  • Visual graphing in PDF reports
  • Cluster wide reporting
  • Health monitoring
  • Anomaly analysis and logging
  • Triggering health actions (heap dump, thread dump, restart, etc)

Creating a Meter

Meters are typically configured in health.xml as a child of <resin>. health.xml includes quite a few pre-configured meters you can use as examples in addition to the examples below.

<health:JmxMeter>
  <name>JVM|Thread|JVM Blocked Count</name>
  <objectName>resin:type=JvmThreads</objectName>
  <attribute>BlockedCount</attribute>
</health:JmxMeter>

In this example we've created a meter on the attribute BlockedCount on the MBean resin:type=JvmThreads. This is an important attribute to track, since it reports blocked threads, which can indicate a serious issue when the value increases significantly.

We also provide JMXDeltaMeter, which reports the difference between the current and previous attribute values.

<health:JmxDeltaMeter>
  <name>JVM|Compilation|Compilation Time</name>
  <objectName>java.lang:type=Compilation</objectName>
  <attribute>TotalCompilationTime</attribute>
</health:JmxDeltaMeter>

Above, a delta meter is created for compilation time, another important metric to monitor.

Analyzing a Meter

Meters alone are useful for manual inspection in resin-admin since every meter can be graphed. However Resin provides an extremely useful automatic analysis tool called AnomalyAnalyzer. AnomalyAnalyzer looks at the current meter value, checking for deviations from the average value. So unusual changes like a spike in blocked threads can be detected

<health:AnomalyAnalyzer>
  <meter>JVM|Thread|JVM Blocked Count</meter>
  <health-event>caucho.thread.anomaly.jvm-blocked</health-event>
</health:AnomalyAnalyzer>

In this example we've created an AnomalyAnalyzer on the blocked thread meter we created above, and assigned it to the health event "caucho.thread.anomaly.jvm-blocked". The health-event attribute is optional. Without a health-event, an anomaly analyzer alone will log anomalies it detects to the resin log at WARNING level. These will also show up in PDF reports, and shown below.

(pdf screenshot)

Reacting to Anomalies

Resin's health system provides a set of remediation actions that you can configure to automatically execute in reaction to an anomaly. The <health-event> attribute we configured above allows us to tie health actions to a detected anomaly, as shown below:

<health:DumpThreads>
  <health:IfHealthEvent regexp="caucho.thread"/>
  <health:IfNotRecent time="15m"/>
</health:DumpThreads>

In this example we've created a DumpThreads action with 2 conditions. The first condition, IfHealthEvent, tells the action to execute only if the health event starts with "caucho.thread". The send condition, IfNotRecent, prevents the action from executing more than once every 15 minutes.

Here is the full example:

<resin xmlns="http://caucho.com/ns/resin"
           xmlns:resin="urn:java:com.caucho.resin"
           xmlns:health="urn:java:com.caucho.health"
           xmlns:ee="urn:java:ee">
  <health:JmxMeter>
    <name>JVM|Thread|JVM Blocked Count</name>
    <objectName>resin:type=JvmThreads</objectName>
    <attribute>BlockedCount</attribute>
  </health:JmxMeter>
  <health:AnomalyAnalyzer>
    <meter>JVM|Thread|JVM Blocked Count</meter>
    <health-event>caucho.thread.anomaly.jvm-blocked</health-event>
  </health:AnomalyAnalyzer>
  <health:DumpThreads>
    <health:IfHealthEvent regexp="caucho.thread"/>
    <health:IfNotRecent time="15m"/>
  </health:DumpThreads>
 
</resin>
Personal tools
TOOLBOX
LANGUAGES