/gemfire-core/src/main/java/com/gemstone/gemfire/internal/cache/tier/sockets/CacheServerStats.java
https://gitlab.com/kidaa/incubator-geode · Java · 1139 lines · 882 code · 188 blank · 69 comment · 6 complexity · a3bfc29607a209091d038f18130fccd3 MD5 · raw file
- /*=========================================================================
- * Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved.
- * This product is protected by U.S. and international copyright
- * and intellectual property laws. Pivotal products are covered by
- * more patents listed at http://www.pivotal.io/patents.
- *=========================================================================
- */
- /**
- * Bridge Server statistic definitions
- */
- package com.gemstone.gemfire.internal.cache.tier.sockets;
- import java.net.InetAddress;
- import com.gemstone.gemfire.StatisticDescriptor;
- import com.gemstone.gemfire.Statistics;
- import com.gemstone.gemfire.StatisticsFactory;
- import com.gemstone.gemfire.StatisticsType;
- import com.gemstone.gemfire.cache.server.ServerLoad;
- import com.gemstone.gemfire.distributed.internal.InternalDistributedSystem;
- import com.gemstone.gemfire.distributed.internal.PoolStatHelper;
- import com.gemstone.gemfire.internal.DummyStatisticsFactory;
- import com.gemstone.gemfire.internal.SocketCreator;
- import com.gemstone.gemfire.internal.util.ArrayUtils;
- public class CacheServerStats implements MessageStats {
-
- private static final String typeName = "CacheServerStats";
-
- protected Statistics stats;
- // Get request / response statistics
- int getRequestsId;
- int readGetRequestTimeId;
- int processGetTimeId;
- int getResponsesId;
- int writeGetResponseTimeId;
- // PutAll request / response statistics
- int putAllRequestsId;
- int readPutAllRequestTimeId;
- int processPutAllTimeId;
- int putAllResponsesId;
- int writePutAllResponseTimeId;
- // RemoveAll request / response statistics
- int removeAllRequestsId;
- int readRemoveAllRequestTimeId;
- int processRemoveAllTimeId;
- int removeAllResponsesId;
- int writeRemoveAllResponseTimeId;
- // GetAll request / response statistics
- int getAllRequestsId;
- int readGetAllRequestTimeId;
- int processGetAllTimeId;
- int getAllResponsesId;
- int writeGetAllResponseTimeId;
- // Put request / response statistics
- int putRequestsId;
- int readPutRequestTimeId;
- int processPutTimeId;
- int putResponsesId;
- int writePutResponseTimeId;
- // Destroy request / response statistics
- int destroyRequestsId;
- int readDestroyRequestTimeId;
- int processDestroyTimeId;
- int destroyResponsesId;
- int writeDestroyResponseTimeId;
- // Invalidate request / response statistics
- //int invalidateRequestsId;
- //int readInvalidateRequestTimeId;
- //int processInvalidateTimeId;
- //int invalidateResponsesId;
- //int writeInvalidateResponseTimeId;
- // size request / response statistics
- //int sizeRequestsId;
- //int readSizeRequestTimeId;
- //int processSizeTimeId;
- //int sizeResponsesId;
- //int writeSizeResponseTimeId;
-
-
- // Query request / response statistics
- int queryRequestsId;
- int readQueryRequestTimeId;
- int processQueryTimeId;
- int queryResponsesId;
- int writeQueryResponseTimeId;
- // CQ commands request / response statistics
- //int processCreateCqTimeId;
- //int processExecuteCqWithIRCqTimeId;
- //int processStopCqTimeId;
- //int processCloseCqTimeId;
- //int processCloseClientCqsTimeId;
- //int processGetCqStatsTimeId;
- // Destroy region request / response statistics
- int destroyRegionRequestsId;
- int readDestroyRegionRequestTimeId;
- int processDestroyRegionTimeId;
- int destroyRegionResponsesId;
- int writeDestroyRegionResponseTimeId;
- // ContainsKey request / response statistics
- int containsKeyRequestsId;
- int readContainsKeyRequestTimeId;
- int processContainsKeyTimeId;
- int containsKeyResponsesId;
- int writeContainsKeyResponseTimeId;
- // Clear region request / response statistics
- int clearRegionRequestsId;
- int readClearRegionRequestTimeId;
- int processClearRegionTimeId;
- int clearRegionResponsesId;
- int writeClearRegionResponseTimeId;
-
-
- // Batch processing statistics
- int processBatchRequestsId;
- int readProcessBatchRequestTimeId;
- int processBatchTimeId;
- int processBatchResponsesId;
- int writeProcessBatchResponseTimeId;
- int batchSizeId;
- // Client notification request statistics
- int clientNotificationRequestsId;
- int readClientNotificationRequestTimeId;
- int processClientNotificationTimeId;
- // Update client notification request statistics
- int updateClientNotificationRequestsId;
- int readUpdateClientNotificationRequestTimeId;
- int processUpdateClientNotificationTimeId;
- // Close connection request statistics
- int closeConnectionRequestsId;
- int readCloseConnectionRequestTimeId;
- int processCloseConnectionTimeId;
- // Client ready request / response statistics
- int clientReadyRequestsId;
- int readClientReadyRequestTimeId;
- int processClientReadyTimeId;
- int clientReadyResponsesId;
- int writeClientReadyResponseTimeId;
- // Connection statistics
- int currentClientConnectionsId;
- int currentQueueConnectionsId;
- int currentClientsId;
- int failedConnectionAttemptsId;
- int receivedBytesId;
- int sentBytesId;
- int outOfOrderBatchIdsId;
- int abandonedWriteRequestsId;
- int abandonedReadRequestsId;
- int messagesBeingReceivedId;
- int messageBytesBeingReceivedId;
- int connectionsTimedOutId;
- int threadQueueSizeId;
- int acceptsInProgressId;
- int acceptThreadStartsId;
- int connectionThreadStartsId;
- int connectionThreadsId;
-
- //Load callback stats
- int connectionLoadId;
- int queueLoadId;
- int loadPerConnectionId;
- int loadPerQueueId;
-
- protected StatisticsType statType;
-
- public CacheServerStats(String ownerName) {
- this(InternalDistributedSystem.getAnyInstance(), ownerName, typeName, null);
- }
-
- /**
- * Add a convinience method to pass in a StatisticsFactory for Statistics
- * construction. Helpful for local Statistics operations
- * @param f
- * @param ownerName
- */
- public CacheServerStats(StatisticsFactory f, String ownerName, String typeName, StatisticDescriptor[] descriptiors) {
- if (f == null) {
- // Create statistics later when needed
- return;
- }
- StatisticDescriptor[] serverStatDescriptors = new StatisticDescriptor[] {
- f.createIntCounter("getRequests",
- "Number of cache client get requests.", "operations"),
- f.createLongCounter("readGetRequestTime",
- "Total time spent in reading get requests.", "nanoseconds"),
- f.createLongCounter(
- "processGetTime",
- "Total time spent in processing a cache client get request, including the time to get an object from the cache.",
- "nanoseconds"),
- f.createIntCounter("getResponses",
- "Number of get responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeGetResponseTime",
- "Total time spent in writing get responses.",
- "nanoseconds"),
- f.createIntCounter("putRequests",
- "Number of cache client put requests.", "operations"),
- f.createLongCounter("readPutRequestTime",
- "Total time spent in reading put requests.", "nanoseconds"),
- f.createLongCounter(
- "processPutTime",
- "Total time spent in processing a cache client put request, including the time to put an object into the cache.",
- "nanoseconds"),
- f.createIntCounter("putResponses",
- "Number of put responses written to the cache client.",
- "operations"),
- f.createLongCounter("writePutResponseTime",
- "Total time spent in writing put responses.",
- "nanoseconds"),
- f.createIntCounter("putAllRequests",
- "Number of cache client putAll requests.", "operations"),
- f.createLongCounter("readPutAllRequestTime",
- "Total time spent in reading putAll requests.", "nanoseconds"),
- f.createLongCounter("processPutAllTime",
- "Total time spent in processing a cache client putAll request, including the time to put all objects into the cache.",
- "nanoseconds"),
- f.createIntCounter("putAllResponses",
- "Number of putAll responses written to the cache client.",
- "operations"),
- f.createLongCounter("writePutAllResponseTime",
- "Total time spent in writing putAll responses.",
- "nanoseconds"),
- f.createIntCounter("removeAllRequests",
- "Number of cache client removeAll requests.", "operations"),
- f.createLongCounter("readRemoveAllRequestTime",
- "Total time spent in reading removeAll requests.", "nanoseconds"),
- f.createLongCounter("processRemoveAllTime",
- "Total time spent in processing a cache client removeAll request, including the time to remove all objects from the cache.",
- "nanoseconds"),
- f.createIntCounter("removeAllResponses",
- "Number of removeAll responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeRemoveAllResponseTime",
- "Total time spent in writing removeAll responses.",
- "nanoseconds"),
- f.createIntCounter("getAllRequests",
- "Number of cache client getAll requests.", "operations"),
- f.createLongCounter("readGetAllRequestTime",
- "Total time spent in reading getAll requests.", "nanoseconds"),
- f.createLongCounter("processGetAllTime",
- "Total time spent in processing a cache client getAll request.",
- "nanoseconds"),
- f.createIntCounter("getAllResponses",
- "Number of getAll responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeGetAllResponseTime",
- "Total time spent in writing getAll responses.",
- "nanoseconds"),
- f.createIntCounter("destroyRequests",
- "Number of cache client destroy requests.", "operations"),
- f.createLongCounter("readDestroyRequestTime",
- "Total time spent in reading destroy requests.",
- "nanoseconds"),
- f.createLongCounter(
- "processDestroyTime",
- "Total time spent in processing a cache client destroy request, including the time to destroy an object from the cache.",
- "nanoseconds"),
- f.createIntCounter("destroyResponses",
- "Number of destroy responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeDestroyResponseTime",
- "Total time spent in writing destroy responses.",
- "nanoseconds"),
- f.createIntCounter("invalidateRequests",
- "Number of cache client invalidate requests.", "operations"),
- f.createLongCounter("readInvalidateRequestTime",
- "Total time spent in reading invalidate requests.",
- "nanoseconds"),
- f.createLongCounter(
- "processInvalidateTime",
- "Total time spent in processing a cache client invalidate request, including the time to invalidate an object from the cache.",
- "nanoseconds"),
- f.createIntCounter("invalidateResponses",
- "Number of invalidate responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeInvalidateResponseTime",
- "Total time spent in writing invalidate responses.",
- "nanoseconds"),
-
- f.createIntCounter("sizeRequests",
- "Number of cache client size requests.", "operations"),
- f.createLongCounter("readSizeRequestTime",
- "Total time spent in reading size requests.",
- "nanoseconds"),
- f.createLongCounter(
- "processSizeTime",
- "Total time spent in processing a cache client size request, including the time to size an object from the cache.",
- "nanoseconds"),
- f.createIntCounter("sizeResponses",
- "Number of size responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeSizeResponseTime",
- "Total time spent in writing size responses.",
- "nanoseconds"),
-
-
- f.createIntCounter("queryRequests",
- "Number of cache client query requests.",
- "operations"),
- f.createLongCounter("readQueryRequestTime",
- "Total time spent in reading query requests.",
- "nanoseconds"),
- f.createLongCounter("processQueryTime",
- "Total time spent in processing a cache client query request, including the time to destroy an object from the cache.",
- "nanoseconds"),
- f.createIntCounter("queryResponses",
- "Number of query responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeQueryResponseTime",
- "Total time spent in writing query responses.",
- "nanoseconds"),
- f.createIntCounter("destroyRegionRequests",
- "Number of cache client destroyRegion requests.",
- "operations"),
- f.createLongCounter("readDestroyRegionRequestTime",
- "Total time spent in reading destroyRegion requests.",
- "nanoseconds"),
- f.createLongCounter("processDestroyRegionTime",
- "Total time spent in processing a cache client destroyRegion request, including the time to destroy the region from the cache.",
- "nanoseconds"),
- f.createIntCounter("destroyRegionResponses",
- "Number of destroyRegion responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeDestroyRegionResponseTime",
- "Total time spent in writing destroyRegion responses.",
- "nanoseconds"),
- f.createIntCounter("containsKeyRequests",
- "Number of cache client containsKey requests.",
- "operations"),
- f.createLongCounter("readContainsKeyRequestTime",
- "Total time spent reading containsKey requests.",
- "nanoseconds"),
- f.createLongCounter("processContainsKeyTime",
- "Total time spent processing a containsKey request.",
- "nanoseconds"),
- f.createIntCounter("containsKeyResponses",
- "Number of containsKey responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeContainsKeyResponseTime",
- "Total time spent writing containsKey responses.",
- "nanoseconds"),
- f.createIntCounter("processBatchRequests",
- "Number of cache client processBatch requests.",
- "operations"),
- f.createLongCounter("readProcessBatchRequestTime",
- "Total time spent in reading processBatch requests.",
- "nanoseconds"),
- f.createLongCounter("processBatchTime",
- "Total time spent in processing a cache client processBatch request.",
- "nanoseconds"),
- f.createIntCounter("processBatchResponses",
- "Number of processBatch responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeProcessBatchResponseTime",
- "Total time spent in writing processBatch responses.",
- "nanoseconds"),
- f.createLongCounter("batchSize",
- "The size of the batches received.",
- "bytes"),
- f.createIntCounter("clearRegionRequests",
- "Number of cache client clearRegion requests.",
- "operations"),
- f.createLongCounter("readClearRegionRequestTime",
- "Total time spent in reading clearRegion requests.",
- "nanoseconds"),
- f.createLongCounter(
- "processClearRegionTime",
- "Total time spent in processing a cache client clearRegion request, including the time to clear the region from the cache.",
- "nanoseconds"),
- f.createIntCounter(
- "clearRegionResponses",
- "Number of clearRegion responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeClearRegionResponseTime",
- "Total time spent in writing clearRegion responses.",
- "nanoseconds"),
- f.createIntCounter("clientNotificationRequests",
- "Number of cache client notification requests.",
- "operations"),
- f.createLongCounter(
- "readClientNotificationRequestTime",
- "Total time spent in reading client notification requests.",
- "nanoseconds"),
- f.createLongCounter(
- "processClientNotificationTime",
- "Total time spent in processing a cache client notification request.",
- "nanoseconds"),
- f.createIntCounter("updateClientNotificationRequests",
- "Number of cache client notification update requests.",
- "operations"),
- f.createLongCounter(
- "readUpdateClientNotificationRequestTime",
- "Total time spent in reading client notification update requests.",
- "nanoseconds"),
- f.createLongCounter(
- "processUpdateClientNotificationTime",
- "Total time spent in processing a client notification update request.",
- "nanoseconds"),
- f.createIntCounter("clientReadyRequests",
- "Number of cache client ready requests.",
- "operations"),
- f.createLongCounter("readClientReadyRequestTime",
- "Total time spent in reading cache client ready requests.",
- "nanoseconds"),
- f.createLongCounter("processClientReadyTime",
- "Total time spent in processing a cache client ready request, including the time to destroy an object from the cache.",
- "nanoseconds"),
- f.createIntCounter("clientReadyResponses",
- "Number of client ready responses written to the cache client.",
- "operations"),
- f.createLongCounter("writeClientReadyResponseTime",
- "Total time spent in writing client ready responses.",
- "nanoseconds"),
- f.createIntCounter("closeConnectionRequests",
- "Number of cache client close connection requests.",
- "operations"),
- f.createLongCounter("readCloseConnectionRequestTime",
- "Total time spent in reading close connection requests.",
- "nanoseconds"),
- f.createLongCounter("processCloseConnectionTime",
- "Total time spent in processing a cache client close connection request.",
- "nanoseconds"),
- f.createIntCounter("failedConnectionAttempts",
- "Number of failed connection attempts.",
- "attempts"),
- f.createIntGauge("currentClientConnections",
- "Number of sockets accepted and used for client to server messaging.",
- "sockets"),
- f.createIntGauge("currentQueueConnections",
- "Number of sockets accepted and used for server to client messaging.",
- "sockets"),
- f.createIntGauge("currentClients",
- "Number of client virtual machines connected.",
- "clients"),
- f.createIntCounter("outOfOrderGatewayBatchIds",
- "Number of Out of order batch IDs.",
- "batches"),
- f.createIntCounter("abandonedWriteRequests",
- "Number of write opertations abandond by clients",
- "requests"),
- f.createIntCounter("abandonedReadRequests",
- "Number of read opertations abandond by clients",
- "requests"),
- f.createLongCounter("receivedBytes",
- "Total number of bytes received from clients.",
- "bytes"),
- f.createLongCounter("sentBytes",
- "Total number of bytes sent to clients.",
- "bytes"),
- f.createIntGauge("messagesBeingReceived", "Current number of message being received off the network or being processed after reception.", "messages"),
- f.createLongGauge("messageBytesBeingReceived", "Current number of bytes consumed by messages being received or processed.", "bytes"),
- f.createIntCounter("connectionsTimedOut",
- "Total number of connections that have been timed out by the server because of client inactivity",
- "connections"),
- f.createIntGauge("threadQueueSize",
- "Current number of connections waiting for a thread to start processing their message.",
- "connections"),
- f.createIntGauge("acceptsInProgress",
- "Current number of server accepts that are attempting to do the initial handshake with the client.",
- "accepts"),
- f.createIntCounter("acceptThreadStarts",
- "Total number of threads created to deal with an accepted socket. Note that this is not the current number of threads.",
- "starts"),
- f.createIntCounter("connectionThreadStarts",
- "Total number of threads created to deal with a client connection. Note that this is not the current number of threads.",
- "starts"),
- f.createIntGauge("connectionThreads",
- "Current number of threads dealing with a client connection.",
- "threads"),
- f.createDoubleGauge(
- "connectionLoad",
- "The load from client to server connections as reported by the load probe installed in this server",
- "load"),
- f.createDoubleGauge(
- "loadPerConnection",
- "The estimate of how much load is added for each new connection as reported by the load probe installed in this server",
- "load"),
- f.createDoubleGauge(
- "queueLoad",
- "The load from queues as reported by the load probe installed in this server",
- "load"),
- f.createDoubleGauge(
- "loadPerQueue",
- "The estimate of how much load is added for each new connection as reported by the load probe installed in this server",
- "load")
- };
- StatisticDescriptor[] alldescriptors = serverStatDescriptors;
- if (descriptiors != null) {
- alldescriptors = new StatisticDescriptor[descriptiors.length + serverStatDescriptors.length];
- System.arraycopy(descriptiors, 0, alldescriptors, 0, descriptiors.length);
- System.arraycopy(serverStatDescriptors, 0, alldescriptors, descriptiors.length, serverStatDescriptors.length);
- }
- statType = f
- .createType(
- typeName,
- typeName,
- alldescriptors);
- try {
- ownerName = SocketCreator.getLocalHost().getCanonicalHostName() + "-" + ownerName;
- }
- catch (Exception e) {
- }
- this.stats = f.createAtomicStatistics(statType, ownerName);
- getRequestsId = this.stats.nameToId("getRequests");
- readGetRequestTimeId = this.stats.nameToId("readGetRequestTime");
- processGetTimeId = this.stats.nameToId("processGetTime");
- getResponsesId = this.stats.nameToId("getResponses");
- writeGetResponseTimeId = this.stats.nameToId("writeGetResponseTime");
- putRequestsId = this.stats.nameToId("putRequests");
- readPutRequestTimeId = this.stats.nameToId("readPutRequestTime");
- processPutTimeId = this.stats.nameToId("processPutTime");
- putResponsesId = this.stats.nameToId("putResponses");
- writePutResponseTimeId = this.stats.nameToId("writePutResponseTime");
- putAllRequestsId = this.stats.nameToId("putAllRequests");
- readPutAllRequestTimeId = this.stats.nameToId("readPutAllRequestTime");
- processPutAllTimeId = this.stats.nameToId("processPutAllTime");
- putAllResponsesId = this.stats.nameToId("putAllResponses");
- writePutAllResponseTimeId = this.stats.nameToId("writePutAllResponseTime");
- removeAllRequestsId = this.stats.nameToId("removeAllRequests");
- readRemoveAllRequestTimeId = this.stats.nameToId("readRemoveAllRequestTime");
- processRemoveAllTimeId = this.stats.nameToId("processRemoveAllTime");
- removeAllResponsesId = this.stats.nameToId("removeAllResponses");
- writeRemoveAllResponseTimeId = this.stats.nameToId("writeRemoveAllResponseTime");
- getAllRequestsId = this.stats.nameToId("getAllRequests");
- readGetAllRequestTimeId = this.stats.nameToId("readGetAllRequestTime");
- processGetAllTimeId = this.stats.nameToId("processGetAllTime");
- getAllResponsesId = this.stats.nameToId("getAllResponses");
- writeGetAllResponseTimeId = this.stats.nameToId("writeGetAllResponseTime");
- destroyRequestsId = this.stats.nameToId("destroyRequests");
- readDestroyRequestTimeId = this.stats.nameToId("readDestroyRequestTime");
- processDestroyTimeId = this.stats.nameToId("processDestroyTime");
- destroyResponsesId = this.stats.nameToId("destroyResponses");
- writeDestroyResponseTimeId = this.stats
- .nameToId("writeDestroyResponseTime");
- queryRequestsId = this.stats.nameToId("queryRequests");
- readQueryRequestTimeId = this.stats.nameToId("readQueryRequestTime");
- processQueryTimeId = this.stats.nameToId("processQueryTime");
- queryResponsesId = this.stats.nameToId("queryResponses");
- writeQueryResponseTimeId = this.stats.nameToId("writeQueryResponseTime");
- destroyRegionRequestsId = this.stats.nameToId("destroyRegionRequests");
- readDestroyRegionRequestTimeId = this.stats
- .nameToId("readDestroyRegionRequestTime");
- processDestroyRegionTimeId = this.stats
- .nameToId("processDestroyRegionTime");
- destroyRegionResponsesId = this.stats.nameToId("destroyRegionResponses");
- writeDestroyRegionResponseTimeId = this.stats
- .nameToId("writeDestroyRegionResponseTime");
-
- clearRegionRequestsId = this.stats.nameToId("clearRegionRequests");
- readClearRegionRequestTimeId = this.stats
- .nameToId("readClearRegionRequestTime");
- processClearRegionTimeId = this.stats
- .nameToId("processClearRegionTime");
- clearRegionResponsesId = this.stats.nameToId("clearRegionResponses");
- writeClearRegionResponseTimeId = this.stats
- .nameToId("writeClearRegionResponseTime");
- containsKeyRequestsId = this.stats.nameToId("containsKeyRequests");
- readContainsKeyRequestTimeId = this.stats.nameToId("readContainsKeyRequestTime");
- processContainsKeyTimeId = this.stats.nameToId("processContainsKeyTime");
- containsKeyResponsesId = this.stats.nameToId("containsKeyResponses");
- writeContainsKeyResponseTimeId = this.stats.nameToId("writeContainsKeyResponseTime");
- processBatchRequestsId = this.stats.nameToId("processBatchRequests");
- readProcessBatchRequestTimeId = this.stats
- .nameToId("readProcessBatchRequestTime");
- processBatchTimeId = this.stats.nameToId("processBatchTime");
- processBatchResponsesId = this.stats.nameToId("processBatchResponses");
- writeProcessBatchResponseTimeId = this.stats
- .nameToId("writeProcessBatchResponseTime");
- batchSizeId = this.stats.nameToId("batchSize");
- clientNotificationRequestsId = this.stats
- .nameToId("clientNotificationRequests");
- readClientNotificationRequestTimeId = this.stats
- .nameToId("readClientNotificationRequestTime");
- processClientNotificationTimeId = this.stats
- .nameToId("processClientNotificationTime");
- updateClientNotificationRequestsId = this.stats
- .nameToId("updateClientNotificationRequests");
- readUpdateClientNotificationRequestTimeId = this.stats
- .nameToId("readUpdateClientNotificationRequestTime");
- processUpdateClientNotificationTimeId = this.stats
- .nameToId("processUpdateClientNotificationTime");
- clientReadyRequestsId = this.stats.nameToId("clientReadyRequests");
- readClientReadyRequestTimeId = this.stats.nameToId("readClientReadyRequestTime");
- processClientReadyTimeId = this.stats.nameToId("processClientReadyTime");
- clientReadyResponsesId = this.stats.nameToId("clientReadyResponses");
- writeClientReadyResponseTimeId = this.stats.nameToId("writeClientReadyResponseTime");
- closeConnectionRequestsId = this.stats.nameToId("closeConnectionRequests");
- readCloseConnectionRequestTimeId = this.stats
- .nameToId("readCloseConnectionRequestTime");
- processCloseConnectionTimeId = this.stats
- .nameToId("processCloseConnectionTime");
- currentClientConnectionsId = this.stats
- .nameToId("currentClientConnections");
- currentQueueConnectionsId = this.stats
- .nameToId("currentQueueConnections");
- currentClientsId = this.stats.nameToId("currentClients");
- failedConnectionAttemptsId = this.stats
- .nameToId("failedConnectionAttempts");
- outOfOrderBatchIdsId = this.stats.nameToId("outOfOrderGatewayBatchIds");
- abandonedWriteRequestsId = this.stats.nameToId("abandonedWriteRequests");
- abandonedReadRequestsId = this.stats.nameToId("abandonedReadRequests");
- receivedBytesId = this.stats.nameToId("receivedBytes");
- sentBytesId = this.stats.nameToId("sentBytes");
- messagesBeingReceivedId = this.stats.nameToId("messagesBeingReceived");
- messageBytesBeingReceivedId = this.stats.nameToId("messageBytesBeingReceived");
- connectionsTimedOutId = this.stats.nameToId("connectionsTimedOut");
- threadQueueSizeId = this.stats.nameToId("threadQueueSize");
- acceptsInProgressId = this.stats.nameToId("acceptsInProgress");
- acceptThreadStartsId = this.stats.nameToId("acceptThreadStarts");
- connectionThreadStartsId = this.stats.nameToId("connectionThreadStarts");
- connectionThreadsId = this.stats.nameToId("connectionThreads");
-
- connectionLoadId = this.stats.nameToId("connectionLoad");
- queueLoadId = this.stats.nameToId("queueLoad");
- loadPerConnectionId = this.stats.nameToId("loadPerConnection");
- loadPerQueueId = this.stats.nameToId("loadPerQueue");
- }
- public final void incAcceptThreadsCreated() {
- this.stats.incInt(acceptThreadStartsId, 1);
- }
- public final void incConnectionThreadsCreated() {
- this.stats.incInt(connectionThreadStartsId, 1);
- }
- public final void incAcceptsInProgress() {
- this.stats.incInt(acceptsInProgressId, 1);
- }
- public final void decAcceptsInProgress() {
- this.stats.incInt(acceptsInProgressId, -1);
- }
- public final void incConnectionThreads() {
- this.stats.incInt(connectionThreadsId, 1);
- }
- public final void decConnectionThreads() {
- this.stats.incInt(connectionThreadsId, -1);
- }
- public final void incAbandonedWriteRequests() {
- this.stats.incInt(abandonedWriteRequestsId, 1);
- }
- public final void incAbandonedReadRequests() {
- this.stats.incInt(abandonedReadRequestsId, 1);
- }
- public final void incFailedConnectionAttempts() {
- this.stats.incInt(failedConnectionAttemptsId, 1);
- }
- public final void incConnectionsTimedOut() {
- this.stats.incInt(connectionsTimedOutId, 1);
- }
- public final void incCurrentClientConnections()
- {
- this.stats.incInt(currentClientConnectionsId, 1);
- }
- public final void decCurrentClientConnections()
- {
- this.stats.incInt(currentClientConnectionsId, -1);
- }
- public final int getCurrentClientConnections()
- {
- return this.stats.getInt(currentClientConnectionsId);
- }
- public final void incCurrentQueueConnections()
- {
- this.stats.incInt(currentQueueConnectionsId, 1);
- }
- public final void decCurrentQueueConnections()
- {
- this.stats.incInt(currentQueueConnectionsId, -1);
- }
- public final int getCurrentQueueConnections()
- {
- return this.stats.getInt(currentQueueConnectionsId);
- }
- public final void incCurrentClients()
- {
- this.stats.incInt(currentClientsId, 1);
- }
- public final void decCurrentClients()
- {
- this.stats.incInt(currentClientsId, -1);
- }
- public final void incThreadQueueSize() {
- this.stats.incInt(threadQueueSizeId, 1);
- }
- public final void decThreadQueueSize() {
- this.stats.incInt(threadQueueSizeId, -1);
- }
- public final void incReadGetRequestTime(long delta)
- {
- this.stats.incLong(readGetRequestTimeId, delta);
- this.stats.incInt(getRequestsId, 1);
- }
- public final void incProcessGetTime(long delta)
- {
- this.stats.incLong(processGetTimeId, delta);
- }
- public final void incWriteGetResponseTime(long delta)
- {
- this.stats.incLong(writeGetResponseTimeId, delta);
- this.stats.incInt(getResponsesId, 1);
- }
- public final void incReadPutAllRequestTime(long delta) {
- this.stats.incLong(readPutAllRequestTimeId, delta);
- this.stats.incInt(putAllRequestsId, 1);
- }
- public final void incProcessPutAllTime(long delta) {
- this.stats.incLong(processPutAllTimeId, delta);
- }
- public final void incWritePutAllResponseTime(long delta) {
- this.stats.incLong(writePutAllResponseTimeId, delta);
- this.stats.incInt(putAllResponsesId, 1);
- }
- public final void incReadRemoveAllRequestTime(long delta) {
- this.stats.incLong(readRemoveAllRequestTimeId, delta);
- this.stats.incInt(removeAllRequestsId, 1);
- }
- public final void incProcessRemoveAllTime(long delta) {
- this.stats.incLong(processRemoveAllTimeId, delta);
- }
- public final void incWriteRemoveAllResponseTime(long delta) {
- this.stats.incLong(writeRemoveAllResponseTimeId, delta);
- this.stats.incInt(removeAllResponsesId, 1);
- }
- public final void incReadGetAllRequestTime(long delta) {
- this.stats.incLong(readGetAllRequestTimeId, delta);
- this.stats.incInt(getAllRequestsId, 1);
- }
- public final void incProcessGetAllTime(long delta) {
- this.stats.incLong(processGetAllTimeId, delta);
- }
- public final void incWriteGetAllResponseTime(long delta) {
- this.stats.incLong(writeGetAllResponseTimeId, delta);
- this.stats.incInt(getAllResponsesId, 1);
- }
- public final void incReadPutRequestTime(long delta)
- {
- this.stats.incLong(readPutRequestTimeId, delta);
- this.stats.incInt(putRequestsId, 1);
- }
- public final void incProcessPutTime(long delta)
- {
- this.stats.incLong(processPutTimeId, delta);
- }
- public final void incWritePutResponseTime(long delta)
- {
- this.stats.incLong(writePutResponseTimeId, delta);
- this.stats.incInt(putResponsesId, 1);
- }
- public final void incReadDestroyRequestTime(long delta)
- {
- this.stats.incLong(readDestroyRequestTimeId, delta);
- this.stats.incInt(destroyRequestsId, 1);
- }
- public final void incProcessDestroyTime(long delta)
- {
- this.stats.incLong(processDestroyTimeId, delta);
- }
- public final void incWriteDestroyResponseTime(long delta)
- {
- this.stats.incLong(writeDestroyResponseTimeId, delta);
- this.stats.incInt(destroyResponsesId, 1);
- }
-
-
- public final void incReadInvalidateRequestTime(long delta)
- {
- // this.stats.incLong(readInvalidateRequestTimeId, delta);
- // this.stats.incInt(invalidateRequestsId, 1);
- }
- public final void incProcessInvalidateTime(long delta)
- {
- // this.stats.incLong(processInvalidateTimeId, delta);
- }
- public final void incWriteInvalidateResponseTime(long delta)
- {
- // this.stats.incLong(writeInvalidateResponseTimeId, delta);
- // this.stats.incInt(invalidateResponsesId, 1);
- }
-
- public final void incReadSizeRequestTime(long delta)
- {
- // this.stats.incLong(readSizeRequestTimeId, delta);
- // this.stats.incInt(sizeRequestsId, 1);
- }
- public final void incProcessSizeTime(long delta)
- {
- // this.stats.incLong(processSizeTimeId, delta);
- }
- public final void incWriteSizeResponseTime(long delta)
- {
- // this.stats.incLong(writeSizeResponseTimeId, delta);
- // this.stats.incInt(sizeResponsesId, 1);
- }
-
- public final void incReadQueryRequestTime(long delta) {
- this.stats.incLong(readQueryRequestTimeId, delta);
- this.stats.incInt(queryRequestsId, 1);
- }
- public final void incProcessQueryTime(long delta) {
- this.stats.incLong(processQueryTimeId, delta);
- }
- public final void incWriteQueryResponseTime(long delta) {
- this.stats.incLong(writeQueryResponseTimeId, delta);
- this.stats.incInt(queryResponsesId, 1);
- }
- public final void incProcessCreateCqTime(long delta) {
- //this.stats.incLong(processCreateCqTimeId, delta);
- }
- public final void incProcessCloseCqTime(long delta) {
- //this.stats.incLong(processCloseCqTimeId, delta);
- }
- public final void incProcessExecuteCqWithIRTime(long delta) {
- //this.stats.incLong(processExecuteCqWithIRCqTimeId, delta);
- }
- public final void incProcessStopCqTime(long delta) {
- //this.stats.incLong(processStopCqTimeId, delta);
- }
- public final void incProcessCloseClientCqsTime(long delta) {
- //this.stats.incLong(processCloseClientCqsTimeId, delta);
- }
-
- public final void incProcessGetCqStatsTime(long delta) {
- //this.stats.incLong(processGetCqStatsTimeId, delta);
- }
- public final void incReadDestroyRegionRequestTime(long delta) {
- this.stats.incLong(readDestroyRegionRequestTimeId, delta);
- this.stats.incInt(destroyRegionRequestsId, 1);
- }
- public final void incProcessDestroyRegionTime(long delta) {
- this.stats.incLong(processDestroyRegionTimeId, delta);
- }
- public final void incWriteDestroyRegionResponseTime(long delta) {
- this.stats.incLong(writeDestroyRegionResponseTimeId, delta);
- this.stats.incInt(destroyRegionResponsesId, 1);
- }
- public final void incReadContainsKeyRequestTime(long delta) {
- this.stats.incLong(readContainsKeyRequestTimeId, delta);
- this.stats.incInt(containsKeyRequestsId, 1);
- }
- public final void incProcessContainsKeyTime(long delta) {
- this.stats.incLong(processContainsKeyTimeId, delta);
- }
- public final void incWriteContainsKeyResponseTime(long delta) {
- this.stats.incLong(writeContainsKeyResponseTimeId, delta);
- this.stats.incInt(containsKeyResponsesId, 1);
- }
- public final void incReadClearRegionRequestTime(long delta)
- {
- this.stats.incLong(readClearRegionRequestTimeId, delta);
- this.stats.incInt(clearRegionRequestsId, 1);
- }
- public final void incProcessClearRegionTime(long delta)
- {
- this.stats.incLong(processClearRegionTimeId, delta);
- }
- public final void incWriteClearRegionResponseTime(long delta)
- {
- this.stats.incLong(writeClearRegionResponseTimeId, delta);
- this.stats.incInt(clearRegionResponsesId, 1);
- }
- public final void incReadProcessBatchRequestTime(long delta) {
- this.stats.incLong(readProcessBatchRequestTimeId, delta);
- this.stats.incInt(processBatchRequestsId, 1);
- }
- public final void incWriteProcessBatchResponseTime(long delta)
- {
- this.stats.incLong(writeProcessBatchResponseTimeId, delta);
- this.stats.incInt(processBatchResponsesId, 1);
- }
- public final void incProcessBatchTime(long delta)
- {
- this.stats.incLong(processBatchTimeId, delta);
- }
- public final void incBatchSize(long size)
- {
- this.stats.incLong(batchSizeId, size);
- }
- public final void incReadClientNotificationRequestTime(long delta)
- {
- this.stats.incLong(readClientNotificationRequestTimeId, delta);
- this.stats.incInt(clientNotificationRequestsId, 1);
- }
- public final void incProcessClientNotificationTime(long delta)
- {
- this.stats.incLong(processClientNotificationTimeId, delta);
- }
- public final void incReadUpdateClientNotificationRequestTime(long delta)
- {
- this.stats.incLong(readUpdateClientNotificationRequestTimeId, delta);
- this.stats.incInt(updateClientNotificationRequestsId, 1);
- }
- public final void incProcessUpdateClientNotificationTime(long delta)
- {
- this.stats.incLong(processUpdateClientNotificationTimeId, delta);
- }
- public final void incReadCloseConnectionRequestTime(long delta)
- {
- this.stats.incLong(readCloseConnectionRequestTimeId, delta);
- this.stats.incInt(closeConnectionRequestsId, 1);
- }
- public final void incProcessCloseConnectionTime(long delta)
- {
- this.stats.incLong(processCloseConnectionTimeId, delta);
- }
- public final void incOutOfOrderBatchIds()
- {
- this.stats.incInt(outOfOrderBatchIdsId, 1);
- }
- public final void incReceivedBytes(long v) {
- this.stats.incLong(receivedBytesId, v);
- }
- public final void incSentBytes(long v) {
- this.stats.incLong(sentBytesId, v);
- }
- public void incMessagesBeingReceived(int bytes) {
- stats.incInt(messagesBeingReceivedId, 1);
- if (bytes > 0) {
- stats.incLong(messageBytesBeingReceivedId, bytes);
- }
- }
- public void decMessagesBeingReceived(int bytes) {
- stats.incInt(messagesBeingReceivedId, -1);
- if (bytes > 0) {
- stats.incLong(messageBytesBeingReceivedId, -bytes);
- }
- }
- public final void incReadClientReadyRequestTime(long delta) {
- this.stats.incLong(readClientReadyRequestTimeId, delta);
- this.stats.incInt(clientReadyRequestsId, 1);
- }
- public final void incProcessClientReadyTime(long delta) {
- this.stats.incLong(processClientReadyTimeId, delta);
- }
- public final void incWriteClientReadyResponseTime(long delta)
- {
- this.stats.incLong(writeClientReadyResponseTimeId, delta);
- this.stats.incInt(clientReadyResponsesId, 1);
- }
-
- public final void setLoad(ServerLoad load) {
- this.stats.setDouble(connectionLoadId, load.getConnectionLoad());
- this.stats.setDouble(queueLoadId, load.getSubscriptionConnectionLoad());
- this.stats.setDouble(loadPerConnectionId, load.getLoadPerConnection());
- this.stats.setDouble(loadPerQueueId, load.getLoadPerSubscriptionConnection());
- }
- public final double getQueueLoad() {
- return this.stats.getDouble(queueLoadId);
- }
- public final double getLoadPerQueue() {
- return this.stats.getDouble(loadPerQueueId);
- }
- public final double getConnectionLoad() {
- return this.stats.getDouble(connectionLoadId);
- }
- public final double getLoadPerConnection() {
- return this.stats.getDouble(loadPerConnectionId);
- }
-
- public final int getProcessBatchRequests(){
- return this.stats.getInt(processBatchRequestsId);
- }
-
- public final void close() {
- this.stats.close();
- }
- public PoolStatHelper getCnxPoolHelper() {
- return new PoolStatHelper() {
- public void startJob() {
- incConnectionThreads();
- }
- public void endJob() {
- decConnectionThreads();
- }
- };
- }
-
- public Statistics getStats(){
- return stats;
- }
- }