@ManagedObject @Description(value="The HttpServerFilter is the entity responsible for providing and processing higher level abstractions based on HTTP protocol.") public class HttpServerFilter extends JmxObject
HttpServerFilter.| Constructor and Description |
|---|
HttpServerFilter(HttpServerFilter httpServerFilter) |
| Modifier and Type | Method and Description |
|---|---|
String |
getJmxName() |
long |
getRequestsCancelledCount() |
long |
getRequestsCompletedCount() |
long |
getRequestsReceivedCount() |
int |
getRequestsSuspendedCount() |
long |
getRequestsTimedOutCount() |
protected void |
onDeregister(GrizzlyJmxManager mom) |
protected void |
onRegister(GrizzlyJmxManager mom,
org.glassfish.gmbal.GmbalMBean bean) |
public HttpServerFilter(HttpServerFilter httpServerFilter)
public String getJmxName()
getJmxName in class JmxObjectprotected void onRegister(GrizzlyJmxManager mom, org.glassfish.gmbal.GmbalMBean bean)
onRegister in class JmxObjectprotected void onDeregister(GrizzlyJmxManager mom)
onDeregister in class JmxObject@ManagedAttribute(id="requests-received-count") @Description(value="The total number of requests received.") public long getRequestsReceivedCount()
HttpServerFilter
has received.@ManagedAttribute(id="requests-completed-count") @Description(value="The total number of requests that have been successfully completed.") public long getRequestsCompletedCount()
HttpServerFilter
has completed servicing.@ManagedAttribute(id="current-suspended-request-count") @Description(value="The current number of requests that are suspended to be processed at a later point in time.") public int getRequestsSuspendedCount()
@ManagedAttribute(id="requests-timed-out-count") @Description(value="The total number of suspended requests that have been timed out.") public long getRequestsTimedOutCount()
@ManagedAttribute(id="requests-cancelled-count") @Description(value="The total number of suspended requests that have been cancelled.") public long getRequestsCancelledCount()
Copyright © 2013 Oracle Corporation. All Rights Reserved.