JMX Stats MBean is also exposed for Stream Container Module, in addition to the Stream Module and VOD Module. JMX Stats MBean expose the following attributes:
| Name | Type | Description | Example |
|---|---|---|---|
| get_requests | long | The number of GET requests to the module | 756 |
| put_requests | long | The number of PUT/POST requests to the module | 231 |
| delete_requests | long | The number of DELETE requests to the module | 7 |
| get_errors | String | It's a string representation of the number of
error response(4xx/5xx) for HTTP GET requests on the given module. The format
for the String is:
errorCode1 : counter1 ; errorCode2 : counter 2 ; |
500 : 10 ; 503 : 178 ; |
| put_errors | String | It's a string representation of the number of
error response(4xx/5xx) for HTTP PUT/POST requests on the given module. The
format for the String is:
errorCode1 : counter1 ; errorCode2 : counter 2 ; |
409 : 72 ; 500 : 283 ; |
| delete_errors | String | It's a string representation of the number of
error response(4xx/5xx) for HTTP DELETE requests on the given module. The
format for the String is:
errorCode1 : counter1 ; errorCode2 : counter 2 ; |
409 : 72 ; 500 : 283 ; |