WebSphere 6.1 Webapp service
WebSphere 6.1 Webapp service
Log Track Supported: No
Config Track Supported: No
Custom Properties Supported: None
Supported Control Actions: None
Supported Metrics:
| Name | Alias | Units | Category | Default On | Default Interval |
|---|---|---|---|---|---|
| Webapp Availability | Availability | percentage | AVAILABILITY | true | 10 min |
| Webapp Number of Loaded Servlets | NumLoadedServlets | none | UTILIZATION | false | 5 min |
| Webapp Number of Servlet Reloads | NumReloads | none | UTILIZATION | false | 10 min |
| Webapp Number of Servlet Reloads per Minute | NumReloads1m | none | UTILIZATION | false | 10 min |
| Webapp Total Requests | TotalRequests | none | UTILIZATION | true | 10 min |
| Webapp Total Requests per Minute | TotalRequests1m | none | UTILIZATION | true | 10 min |
| Webapp Concurrent Requests | ConcurrentRequests | none | UTILIZATION | false | 5 min |
| Webapp Number of Errors | NumErrors | none | UTILIZATION | false | 10 min |
| Webapp Number of Errors per Minute | NumErrors1m | none | UTILIZATION | false | 10 min |
Configuration help:
Enable Webapp Response Time
- Edit ${installpath}/config/cells/${server.node}/applications/${app}.ear/deployments/${app}/${webapp}/WEB-INF/web.xml
Add the following snippet of XML just after the last <context-param> tag, and before the first <servlet> tag.
<!-- HYPERIC HQ RESPONSE TIME FILTER -->
<filter>
<filter-name>JMXFilter</filter-name>
<filter-class>org.hyperic.hq.product.servlet.filter.JMXFilter</filter-class>
<init-param>
<param-name>responseTimeLogDir</param-name>
<param-value>${installpath}/logs</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>JMXFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- END HYPERIC RESPONSE TIME FILTER -->
- Add the filter jar
% mkdir ${installpath}/installedApps/${server.node}/${app}.ear/${webapp}/WEB-INF/lib
% cp agent-${HQVersion}/product_connectors/servlet/libs/hq-filter.jar \
${installpath}/installedApps/${server.node}/${app}.ear/${webapp}/WEB-INF/lib
- Restart the WebSphere server.