public interface TomcatConnectorStatus
| Modifier and Type | Method and Description |
|---|---|
com.codahale.metrics.Gauge<Long> |
getActiveConnectionsGauge()
Retrieves the number of active connections.
|
com.codahale.metrics.Gauge<Integer> |
getBusyThreadsGauge()
Retrieves the number of busy threads in the thread pool utilized by the connector.
|
com.codahale.metrics.Gauge<Integer> |
getCurrentPoolSizeGauge()
Retrieves the current number of threads in the thread pool utilized by the connector.
|
com.codahale.metrics.Gauge<Integer> |
getErrorsGauge()
Retrieves the number of error responses returned by this connector.
|
com.codahale.metrics.Gauge<Integer> |
getMaxConnectionsGauge()
Retrieves the maximum number of connections.
|
com.codahale.metrics.Gauge<Integer> |
getMaxPoolSizeGauge()
Retrieves the maximum size of the thread pool utilized by the connector.
|
String |
getName()
Retrieves the name of the connector.
|
Integer |
getPort()
Retrieves the port associated with the connector.
|
com.codahale.metrics.Gauge<Integer> |
getQpsGauge()
Retrieves the current request rate per second (QPS).
|
com.codahale.metrics.Gauge<Long> |
getReceivedBytesGauge()
Retrieves the number of bytes received by this connector.
|
com.codahale.metrics.Gauge<Long> |
getSentBytesGauge()
Retrieves the number of bytes sent by this connector.
|
com.codahale.metrics.Gauge<Integer> |
getTotalRequestsGauge()
Retrieves the total number of requests processed by this connector.
|
boolean |
isAjp()
Indicates whether this connector is an AJP connector or not.
|
boolean |
isInternalPort()
Indicates whether this connector is deployed under internal port (a private port) or not.
|
boolean |
isSecure()
Indicates whether this connector is secure (SSL/TLS) or not.
|
String getName()
Integer getPort()
boolean isInternalPort()
boolean isSecure()
boolean isAjp()
com.codahale.metrics.Gauge<Integer> getCurrentPoolSizeGauge()
com.codahale.metrics.Gauge<Integer> getMaxPoolSizeGauge()
com.codahale.metrics.Gauge<Integer> getBusyThreadsGauge()
com.codahale.metrics.Gauge<Long> getActiveConnectionsGauge()
com.codahale.metrics.Gauge<Integer> getMaxConnectionsGauge()
com.codahale.metrics.Gauge<Integer> getTotalRequestsGauge()
com.codahale.metrics.Gauge<Integer> getErrorsGauge()
com.codahale.metrics.Gauge<Integer> getQpsGauge()
com.codahale.metrics.Gauge<Long> getReceivedBytesGauge()
com.codahale.metrics.Gauge<Long> getSentBytesGauge()
Copyright © 2016–2017. All rights reserved.