/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

  1. /*=========================================================================
  2. * Copyright (c) 2002-2014 Pivotal Software, Inc. All Rights Reserved.
  3. * This product is protected by U.S. and international copyright
  4. * and intellectual property laws. Pivotal products are covered by
  5. * more patents listed at http://www.pivotal.io/patents.
  6. *=========================================================================
  7. */
  8. /**
  9. * Bridge Server statistic definitions
  10. */
  11. package com.gemstone.gemfire.internal.cache.tier.sockets;
  12. import java.net.InetAddress;
  13. import com.gemstone.gemfire.StatisticDescriptor;
  14. import com.gemstone.gemfire.Statistics;
  15. import com.gemstone.gemfire.StatisticsFactory;
  16. import com.gemstone.gemfire.StatisticsType;
  17. import com.gemstone.gemfire.cache.server.ServerLoad;
  18. import com.gemstone.gemfire.distributed.internal.InternalDistributedSystem;
  19. import com.gemstone.gemfire.distributed.internal.PoolStatHelper;
  20. import com.gemstone.gemfire.internal.DummyStatisticsFactory;
  21. import com.gemstone.gemfire.internal.SocketCreator;
  22. import com.gemstone.gemfire.internal.util.ArrayUtils;
  23. public class CacheServerStats implements MessageStats {
  24. private static final String typeName = "CacheServerStats";
  25. protected Statistics stats;
  26. // Get request / response statistics
  27. int getRequestsId;
  28. int readGetRequestTimeId;
  29. int processGetTimeId;
  30. int getResponsesId;
  31. int writeGetResponseTimeId;
  32. // PutAll request / response statistics
  33. int putAllRequestsId;
  34. int readPutAllRequestTimeId;
  35. int processPutAllTimeId;
  36. int putAllResponsesId;
  37. int writePutAllResponseTimeId;
  38. // RemoveAll request / response statistics
  39. int removeAllRequestsId;
  40. int readRemoveAllRequestTimeId;
  41. int processRemoveAllTimeId;
  42. int removeAllResponsesId;
  43. int writeRemoveAllResponseTimeId;
  44. // GetAll request / response statistics
  45. int getAllRequestsId;
  46. int readGetAllRequestTimeId;
  47. int processGetAllTimeId;
  48. int getAllResponsesId;
  49. int writeGetAllResponseTimeId;
  50. // Put request / response statistics
  51. int putRequestsId;
  52. int readPutRequestTimeId;
  53. int processPutTimeId;
  54. int putResponsesId;
  55. int writePutResponseTimeId;
  56. // Destroy request / response statistics
  57. int destroyRequestsId;
  58. int readDestroyRequestTimeId;
  59. int processDestroyTimeId;
  60. int destroyResponsesId;
  61. int writeDestroyResponseTimeId;
  62. // Invalidate request / response statistics
  63. //int invalidateRequestsId;
  64. //int readInvalidateRequestTimeId;
  65. //int processInvalidateTimeId;
  66. //int invalidateResponsesId;
  67. //int writeInvalidateResponseTimeId;
  68. // size request / response statistics
  69. //int sizeRequestsId;
  70. //int readSizeRequestTimeId;
  71. //int processSizeTimeId;
  72. //int sizeResponsesId;
  73. //int writeSizeResponseTimeId;
  74. // Query request / response statistics
  75. int queryRequestsId;
  76. int readQueryRequestTimeId;
  77. int processQueryTimeId;
  78. int queryResponsesId;
  79. int writeQueryResponseTimeId;
  80. // CQ commands request / response statistics
  81. //int processCreateCqTimeId;
  82. //int processExecuteCqWithIRCqTimeId;
  83. //int processStopCqTimeId;
  84. //int processCloseCqTimeId;
  85. //int processCloseClientCqsTimeId;
  86. //int processGetCqStatsTimeId;
  87. // Destroy region request / response statistics
  88. int destroyRegionRequestsId;
  89. int readDestroyRegionRequestTimeId;
  90. int processDestroyRegionTimeId;
  91. int destroyRegionResponsesId;
  92. int writeDestroyRegionResponseTimeId;
  93. // ContainsKey request / response statistics
  94. int containsKeyRequestsId;
  95. int readContainsKeyRequestTimeId;
  96. int processContainsKeyTimeId;
  97. int containsKeyResponsesId;
  98. int writeContainsKeyResponseTimeId;
  99. // Clear region request / response statistics
  100. int clearRegionRequestsId;
  101. int readClearRegionRequestTimeId;
  102. int processClearRegionTimeId;
  103. int clearRegionResponsesId;
  104. int writeClearRegionResponseTimeId;
  105. // Batch processing statistics
  106. int processBatchRequestsId;
  107. int readProcessBatchRequestTimeId;
  108. int processBatchTimeId;
  109. int processBatchResponsesId;
  110. int writeProcessBatchResponseTimeId;
  111. int batchSizeId;
  112. // Client notification request statistics
  113. int clientNotificationRequestsId;
  114. int readClientNotificationRequestTimeId;
  115. int processClientNotificationTimeId;
  116. // Update client notification request statistics
  117. int updateClientNotificationRequestsId;
  118. int readUpdateClientNotificationRequestTimeId;
  119. int processUpdateClientNotificationTimeId;
  120. // Close connection request statistics
  121. int closeConnectionRequestsId;
  122. int readCloseConnectionRequestTimeId;
  123. int processCloseConnectionTimeId;
  124. // Client ready request / response statistics
  125. int clientReadyRequestsId;
  126. int readClientReadyRequestTimeId;
  127. int processClientReadyTimeId;
  128. int clientReadyResponsesId;
  129. int writeClientReadyResponseTimeId;
  130. // Connection statistics
  131. int currentClientConnectionsId;
  132. int currentQueueConnectionsId;
  133. int currentClientsId;
  134. int failedConnectionAttemptsId;
  135. int receivedBytesId;
  136. int sentBytesId;
  137. int outOfOrderBatchIdsId;
  138. int abandonedWriteRequestsId;
  139. int abandonedReadRequestsId;
  140. int messagesBeingReceivedId;
  141. int messageBytesBeingReceivedId;
  142. int connectionsTimedOutId;
  143. int threadQueueSizeId;
  144. int acceptsInProgressId;
  145. int acceptThreadStartsId;
  146. int connectionThreadStartsId;
  147. int connectionThreadsId;
  148. //Load callback stats
  149. int connectionLoadId;
  150. int queueLoadId;
  151. int loadPerConnectionId;
  152. int loadPerQueueId;
  153. protected StatisticsType statType;
  154. public CacheServerStats(String ownerName) {
  155. this(InternalDistributedSystem.getAnyInstance(), ownerName, typeName, null);
  156. }
  157. /**
  158. * Add a convinience method to pass in a StatisticsFactory for Statistics
  159. * construction. Helpful for local Statistics operations
  160. * @param f
  161. * @param ownerName
  162. */
  163. public CacheServerStats(StatisticsFactory f, String ownerName, String typeName, StatisticDescriptor[] descriptiors) {
  164. if (f == null) {
  165. // Create statistics later when needed
  166. return;
  167. }
  168. StatisticDescriptor[] serverStatDescriptors = new StatisticDescriptor[] {
  169. f.createIntCounter("getRequests",
  170. "Number of cache client get requests.", "operations"),
  171. f.createLongCounter("readGetRequestTime",
  172. "Total time spent in reading get requests.", "nanoseconds"),
  173. f.createLongCounter(
  174. "processGetTime",
  175. "Total time spent in processing a cache client get request, including the time to get an object from the cache.",
  176. "nanoseconds"),
  177. f.createIntCounter("getResponses",
  178. "Number of get responses written to the cache client.",
  179. "operations"),
  180. f.createLongCounter("writeGetResponseTime",
  181. "Total time spent in writing get responses.",
  182. "nanoseconds"),
  183. f.createIntCounter("putRequests",
  184. "Number of cache client put requests.", "operations"),
  185. f.createLongCounter("readPutRequestTime",
  186. "Total time spent in reading put requests.", "nanoseconds"),
  187. f.createLongCounter(
  188. "processPutTime",
  189. "Total time spent in processing a cache client put request, including the time to put an object into the cache.",
  190. "nanoseconds"),
  191. f.createIntCounter("putResponses",
  192. "Number of put responses written to the cache client.",
  193. "operations"),
  194. f.createLongCounter("writePutResponseTime",
  195. "Total time spent in writing put responses.",
  196. "nanoseconds"),
  197. f.createIntCounter("putAllRequests",
  198. "Number of cache client putAll requests.", "operations"),
  199. f.createLongCounter("readPutAllRequestTime",
  200. "Total time spent in reading putAll requests.", "nanoseconds"),
  201. f.createLongCounter("processPutAllTime",
  202. "Total time spent in processing a cache client putAll request, including the time to put all objects into the cache.",
  203. "nanoseconds"),
  204. f.createIntCounter("putAllResponses",
  205. "Number of putAll responses written to the cache client.",
  206. "operations"),
  207. f.createLongCounter("writePutAllResponseTime",
  208. "Total time spent in writing putAll responses.",
  209. "nanoseconds"),
  210. f.createIntCounter("removeAllRequests",
  211. "Number of cache client removeAll requests.", "operations"),
  212. f.createLongCounter("readRemoveAllRequestTime",
  213. "Total time spent in reading removeAll requests.", "nanoseconds"),
  214. f.createLongCounter("processRemoveAllTime",
  215. "Total time spent in processing a cache client removeAll request, including the time to remove all objects from the cache.",
  216. "nanoseconds"),
  217. f.createIntCounter("removeAllResponses",
  218. "Number of removeAll responses written to the cache client.",
  219. "operations"),
  220. f.createLongCounter("writeRemoveAllResponseTime",
  221. "Total time spent in writing removeAll responses.",
  222. "nanoseconds"),
  223. f.createIntCounter("getAllRequests",
  224. "Number of cache client getAll requests.", "operations"),
  225. f.createLongCounter("readGetAllRequestTime",
  226. "Total time spent in reading getAll requests.", "nanoseconds"),
  227. f.createLongCounter("processGetAllTime",
  228. "Total time spent in processing a cache client getAll request.",
  229. "nanoseconds"),
  230. f.createIntCounter("getAllResponses",
  231. "Number of getAll responses written to the cache client.",
  232. "operations"),
  233. f.createLongCounter("writeGetAllResponseTime",
  234. "Total time spent in writing getAll responses.",
  235. "nanoseconds"),
  236. f.createIntCounter("destroyRequests",
  237. "Number of cache client destroy requests.", "operations"),
  238. f.createLongCounter("readDestroyRequestTime",
  239. "Total time spent in reading destroy requests.",
  240. "nanoseconds"),
  241. f.createLongCounter(
  242. "processDestroyTime",
  243. "Total time spent in processing a cache client destroy request, including the time to destroy an object from the cache.",
  244. "nanoseconds"),
  245. f.createIntCounter("destroyResponses",
  246. "Number of destroy responses written to the cache client.",
  247. "operations"),
  248. f.createLongCounter("writeDestroyResponseTime",
  249. "Total time spent in writing destroy responses.",
  250. "nanoseconds"),
  251. f.createIntCounter("invalidateRequests",
  252. "Number of cache client invalidate requests.", "operations"),
  253. f.createLongCounter("readInvalidateRequestTime",
  254. "Total time spent in reading invalidate requests.",
  255. "nanoseconds"),
  256. f.createLongCounter(
  257. "processInvalidateTime",
  258. "Total time spent in processing a cache client invalidate request, including the time to invalidate an object from the cache.",
  259. "nanoseconds"),
  260. f.createIntCounter("invalidateResponses",
  261. "Number of invalidate responses written to the cache client.",
  262. "operations"),
  263. f.createLongCounter("writeInvalidateResponseTime",
  264. "Total time spent in writing invalidate responses.",
  265. "nanoseconds"),
  266. f.createIntCounter("sizeRequests",
  267. "Number of cache client size requests.", "operations"),
  268. f.createLongCounter("readSizeRequestTime",
  269. "Total time spent in reading size requests.",
  270. "nanoseconds"),
  271. f.createLongCounter(
  272. "processSizeTime",
  273. "Total time spent in processing a cache client size request, including the time to size an object from the cache.",
  274. "nanoseconds"),
  275. f.createIntCounter("sizeResponses",
  276. "Number of size responses written to the cache client.",
  277. "operations"),
  278. f.createLongCounter("writeSizeResponseTime",
  279. "Total time spent in writing size responses.",
  280. "nanoseconds"),
  281. f.createIntCounter("queryRequests",
  282. "Number of cache client query requests.",
  283. "operations"),
  284. f.createLongCounter("readQueryRequestTime",
  285. "Total time spent in reading query requests.",
  286. "nanoseconds"),
  287. f.createLongCounter("processQueryTime",
  288. "Total time spent in processing a cache client query request, including the time to destroy an object from the cache.",
  289. "nanoseconds"),
  290. f.createIntCounter("queryResponses",
  291. "Number of query responses written to the cache client.",
  292. "operations"),
  293. f.createLongCounter("writeQueryResponseTime",
  294. "Total time spent in writing query responses.",
  295. "nanoseconds"),
  296. f.createIntCounter("destroyRegionRequests",
  297. "Number of cache client destroyRegion requests.",
  298. "operations"),
  299. f.createLongCounter("readDestroyRegionRequestTime",
  300. "Total time spent in reading destroyRegion requests.",
  301. "nanoseconds"),
  302. f.createLongCounter("processDestroyRegionTime",
  303. "Total time spent in processing a cache client destroyRegion request, including the time to destroy the region from the cache.",
  304. "nanoseconds"),
  305. f.createIntCounter("destroyRegionResponses",
  306. "Number of destroyRegion responses written to the cache client.",
  307. "operations"),
  308. f.createLongCounter("writeDestroyRegionResponseTime",
  309. "Total time spent in writing destroyRegion responses.",
  310. "nanoseconds"),
  311. f.createIntCounter("containsKeyRequests",
  312. "Number of cache client containsKey requests.",
  313. "operations"),
  314. f.createLongCounter("readContainsKeyRequestTime",
  315. "Total time spent reading containsKey requests.",
  316. "nanoseconds"),
  317. f.createLongCounter("processContainsKeyTime",
  318. "Total time spent processing a containsKey request.",
  319. "nanoseconds"),
  320. f.createIntCounter("containsKeyResponses",
  321. "Number of containsKey responses written to the cache client.",
  322. "operations"),
  323. f.createLongCounter("writeContainsKeyResponseTime",
  324. "Total time spent writing containsKey responses.",
  325. "nanoseconds"),
  326. f.createIntCounter("processBatchRequests",
  327. "Number of cache client processBatch requests.",
  328. "operations"),
  329. f.createLongCounter("readProcessBatchRequestTime",
  330. "Total time spent in reading processBatch requests.",
  331. "nanoseconds"),
  332. f.createLongCounter("processBatchTime",
  333. "Total time spent in processing a cache client processBatch request.",
  334. "nanoseconds"),
  335. f.createIntCounter("processBatchResponses",
  336. "Number of processBatch responses written to the cache client.",
  337. "operations"),
  338. f.createLongCounter("writeProcessBatchResponseTime",
  339. "Total time spent in writing processBatch responses.",
  340. "nanoseconds"),
  341. f.createLongCounter("batchSize",
  342. "The size of the batches received.",
  343. "bytes"),
  344. f.createIntCounter("clearRegionRequests",
  345. "Number of cache client clearRegion requests.",
  346. "operations"),
  347. f.createLongCounter("readClearRegionRequestTime",
  348. "Total time spent in reading clearRegion requests.",
  349. "nanoseconds"),
  350. f.createLongCounter(
  351. "processClearRegionTime",
  352. "Total time spent in processing a cache client clearRegion request, including the time to clear the region from the cache.",
  353. "nanoseconds"),
  354. f.createIntCounter(
  355. "clearRegionResponses",
  356. "Number of clearRegion responses written to the cache client.",
  357. "operations"),
  358. f.createLongCounter("writeClearRegionResponseTime",
  359. "Total time spent in writing clearRegion responses.",
  360. "nanoseconds"),
  361. f.createIntCounter("clientNotificationRequests",
  362. "Number of cache client notification requests.",
  363. "operations"),
  364. f.createLongCounter(
  365. "readClientNotificationRequestTime",
  366. "Total time spent in reading client notification requests.",
  367. "nanoseconds"),
  368. f.createLongCounter(
  369. "processClientNotificationTime",
  370. "Total time spent in processing a cache client notification request.",
  371. "nanoseconds"),
  372. f.createIntCounter("updateClientNotificationRequests",
  373. "Number of cache client notification update requests.",
  374. "operations"),
  375. f.createLongCounter(
  376. "readUpdateClientNotificationRequestTime",
  377. "Total time spent in reading client notification update requests.",
  378. "nanoseconds"),
  379. f.createLongCounter(
  380. "processUpdateClientNotificationTime",
  381. "Total time spent in processing a client notification update request.",
  382. "nanoseconds"),
  383. f.createIntCounter("clientReadyRequests",
  384. "Number of cache client ready requests.",
  385. "operations"),
  386. f.createLongCounter("readClientReadyRequestTime",
  387. "Total time spent in reading cache client ready requests.",
  388. "nanoseconds"),
  389. f.createLongCounter("processClientReadyTime",
  390. "Total time spent in processing a cache client ready request, including the time to destroy an object from the cache.",
  391. "nanoseconds"),
  392. f.createIntCounter("clientReadyResponses",
  393. "Number of client ready responses written to the cache client.",
  394. "operations"),
  395. f.createLongCounter("writeClientReadyResponseTime",
  396. "Total time spent in writing client ready responses.",
  397. "nanoseconds"),
  398. f.createIntCounter("closeConnectionRequests",
  399. "Number of cache client close connection requests.",
  400. "operations"),
  401. f.createLongCounter("readCloseConnectionRequestTime",
  402. "Total time spent in reading close connection requests.",
  403. "nanoseconds"),
  404. f.createLongCounter("processCloseConnectionTime",
  405. "Total time spent in processing a cache client close connection request.",
  406. "nanoseconds"),
  407. f.createIntCounter("failedConnectionAttempts",
  408. "Number of failed connection attempts.",
  409. "attempts"),
  410. f.createIntGauge("currentClientConnections",
  411. "Number of sockets accepted and used for client to server messaging.",
  412. "sockets"),
  413. f.createIntGauge("currentQueueConnections",
  414. "Number of sockets accepted and used for server to client messaging.",
  415. "sockets"),
  416. f.createIntGauge("currentClients",
  417. "Number of client virtual machines connected.",
  418. "clients"),
  419. f.createIntCounter("outOfOrderGatewayBatchIds",
  420. "Number of Out of order batch IDs.",
  421. "batches"),
  422. f.createIntCounter("abandonedWriteRequests",
  423. "Number of write opertations abandond by clients",
  424. "requests"),
  425. f.createIntCounter("abandonedReadRequests",
  426. "Number of read opertations abandond by clients",
  427. "requests"),
  428. f.createLongCounter("receivedBytes",
  429. "Total number of bytes received from clients.",
  430. "bytes"),
  431. f.createLongCounter("sentBytes",
  432. "Total number of bytes sent to clients.",
  433. "bytes"),
  434. f.createIntGauge("messagesBeingReceived", "Current number of message being received off the network or being processed after reception.", "messages"),
  435. f.createLongGauge("messageBytesBeingReceived", "Current number of bytes consumed by messages being received or processed.", "bytes"),
  436. f.createIntCounter("connectionsTimedOut",
  437. "Total number of connections that have been timed out by the server because of client inactivity",
  438. "connections"),
  439. f.createIntGauge("threadQueueSize",
  440. "Current number of connections waiting for a thread to start processing their message.",
  441. "connections"),
  442. f.createIntGauge("acceptsInProgress",
  443. "Current number of server accepts that are attempting to do the initial handshake with the client.",
  444. "accepts"),
  445. f.createIntCounter("acceptThreadStarts",
  446. "Total number of threads created to deal with an accepted socket. Note that this is not the current number of threads.",
  447. "starts"),
  448. f.createIntCounter("connectionThreadStarts",
  449. "Total number of threads created to deal with a client connection. Note that this is not the current number of threads.",
  450. "starts"),
  451. f.createIntGauge("connectionThreads",
  452. "Current number of threads dealing with a client connection.",
  453. "threads"),
  454. f.createDoubleGauge(
  455. "connectionLoad",
  456. "The load from client to server connections as reported by the load probe installed in this server",
  457. "load"),
  458. f.createDoubleGauge(
  459. "loadPerConnection",
  460. "The estimate of how much load is added for each new connection as reported by the load probe installed in this server",
  461. "load"),
  462. f.createDoubleGauge(
  463. "queueLoad",
  464. "The load from queues as reported by the load probe installed in this server",
  465. "load"),
  466. f.createDoubleGauge(
  467. "loadPerQueue",
  468. "The estimate of how much load is added for each new connection as reported by the load probe installed in this server",
  469. "load")
  470. };
  471. StatisticDescriptor[] alldescriptors = serverStatDescriptors;
  472. if (descriptiors != null) {
  473. alldescriptors = new StatisticDescriptor[descriptiors.length + serverStatDescriptors.length];
  474. System.arraycopy(descriptiors, 0, alldescriptors, 0, descriptiors.length);
  475. System.arraycopy(serverStatDescriptors, 0, alldescriptors, descriptiors.length, serverStatDescriptors.length);
  476. }
  477. statType = f
  478. .createType(
  479. typeName,
  480. typeName,
  481. alldescriptors);
  482. try {
  483. ownerName = SocketCreator.getLocalHost().getCanonicalHostName() + "-" + ownerName;
  484. }
  485. catch (Exception e) {
  486. }
  487. this.stats = f.createAtomicStatistics(statType, ownerName);
  488. getRequestsId = this.stats.nameToId("getRequests");
  489. readGetRequestTimeId = this.stats.nameToId("readGetRequestTime");
  490. processGetTimeId = this.stats.nameToId("processGetTime");
  491. getResponsesId = this.stats.nameToId("getResponses");
  492. writeGetResponseTimeId = this.stats.nameToId("writeGetResponseTime");
  493. putRequestsId = this.stats.nameToId("putRequests");
  494. readPutRequestTimeId = this.stats.nameToId("readPutRequestTime");
  495. processPutTimeId = this.stats.nameToId("processPutTime");
  496. putResponsesId = this.stats.nameToId("putResponses");
  497. writePutResponseTimeId = this.stats.nameToId("writePutResponseTime");
  498. putAllRequestsId = this.stats.nameToId("putAllRequests");
  499. readPutAllRequestTimeId = this.stats.nameToId("readPutAllRequestTime");
  500. processPutAllTimeId = this.stats.nameToId("processPutAllTime");
  501. putAllResponsesId = this.stats.nameToId("putAllResponses");
  502. writePutAllResponseTimeId = this.stats.nameToId("writePutAllResponseTime");
  503. removeAllRequestsId = this.stats.nameToId("removeAllRequests");
  504. readRemoveAllRequestTimeId = this.stats.nameToId("readRemoveAllRequestTime");
  505. processRemoveAllTimeId = this.stats.nameToId("processRemoveAllTime");
  506. removeAllResponsesId = this.stats.nameToId("removeAllResponses");
  507. writeRemoveAllResponseTimeId = this.stats.nameToId("writeRemoveAllResponseTime");
  508. getAllRequestsId = this.stats.nameToId("getAllRequests");
  509. readGetAllRequestTimeId = this.stats.nameToId("readGetAllRequestTime");
  510. processGetAllTimeId = this.stats.nameToId("processGetAllTime");
  511. getAllResponsesId = this.stats.nameToId("getAllResponses");
  512. writeGetAllResponseTimeId = this.stats.nameToId("writeGetAllResponseTime");
  513. destroyRequestsId = this.stats.nameToId("destroyRequests");
  514. readDestroyRequestTimeId = this.stats.nameToId("readDestroyRequestTime");
  515. processDestroyTimeId = this.stats.nameToId("processDestroyTime");
  516. destroyResponsesId = this.stats.nameToId("destroyResponses");
  517. writeDestroyResponseTimeId = this.stats
  518. .nameToId("writeDestroyResponseTime");
  519. queryRequestsId = this.stats.nameToId("queryRequests");
  520. readQueryRequestTimeId = this.stats.nameToId("readQueryRequestTime");
  521. processQueryTimeId = this.stats.nameToId("processQueryTime");
  522. queryResponsesId = this.stats.nameToId("queryResponses");
  523. writeQueryResponseTimeId = this.stats.nameToId("writeQueryResponseTime");
  524. destroyRegionRequestsId = this.stats.nameToId("destroyRegionRequests");
  525. readDestroyRegionRequestTimeId = this.stats
  526. .nameToId("readDestroyRegionRequestTime");
  527. processDestroyRegionTimeId = this.stats
  528. .nameToId("processDestroyRegionTime");
  529. destroyRegionResponsesId = this.stats.nameToId("destroyRegionResponses");
  530. writeDestroyRegionResponseTimeId = this.stats
  531. .nameToId("writeDestroyRegionResponseTime");
  532. clearRegionRequestsId = this.stats.nameToId("clearRegionRequests");
  533. readClearRegionRequestTimeId = this.stats
  534. .nameToId("readClearRegionRequestTime");
  535. processClearRegionTimeId = this.stats
  536. .nameToId("processClearRegionTime");
  537. clearRegionResponsesId = this.stats.nameToId("clearRegionResponses");
  538. writeClearRegionResponseTimeId = this.stats
  539. .nameToId("writeClearRegionResponseTime");
  540. containsKeyRequestsId = this.stats.nameToId("containsKeyRequests");
  541. readContainsKeyRequestTimeId = this.stats.nameToId("readContainsKeyRequestTime");
  542. processContainsKeyTimeId = this.stats.nameToId("processContainsKeyTime");
  543. containsKeyResponsesId = this.stats.nameToId("containsKeyResponses");
  544. writeContainsKeyResponseTimeId = this.stats.nameToId("writeContainsKeyResponseTime");
  545. processBatchRequestsId = this.stats.nameToId("processBatchRequests");
  546. readProcessBatchRequestTimeId = this.stats
  547. .nameToId("readProcessBatchRequestTime");
  548. processBatchTimeId = this.stats.nameToId("processBatchTime");
  549. processBatchResponsesId = this.stats.nameToId("processBatchResponses");
  550. writeProcessBatchResponseTimeId = this.stats
  551. .nameToId("writeProcessBatchResponseTime");
  552. batchSizeId = this.stats.nameToId("batchSize");
  553. clientNotificationRequestsId = this.stats
  554. .nameToId("clientNotificationRequests");
  555. readClientNotificationRequestTimeId = this.stats
  556. .nameToId("readClientNotificationRequestTime");
  557. processClientNotificationTimeId = this.stats
  558. .nameToId("processClientNotificationTime");
  559. updateClientNotificationRequestsId = this.stats
  560. .nameToId("updateClientNotificationRequests");
  561. readUpdateClientNotificationRequestTimeId = this.stats
  562. .nameToId("readUpdateClientNotificationRequestTime");
  563. processUpdateClientNotificationTimeId = this.stats
  564. .nameToId("processUpdateClientNotificationTime");
  565. clientReadyRequestsId = this.stats.nameToId("clientReadyRequests");
  566. readClientReadyRequestTimeId = this.stats.nameToId("readClientReadyRequestTime");
  567. processClientReadyTimeId = this.stats.nameToId("processClientReadyTime");
  568. clientReadyResponsesId = this.stats.nameToId("clientReadyResponses");
  569. writeClientReadyResponseTimeId = this.stats.nameToId("writeClientReadyResponseTime");
  570. closeConnectionRequestsId = this.stats.nameToId("closeConnectionRequests");
  571. readCloseConnectionRequestTimeId = this.stats
  572. .nameToId("readCloseConnectionRequestTime");
  573. processCloseConnectionTimeId = this.stats
  574. .nameToId("processCloseConnectionTime");
  575. currentClientConnectionsId = this.stats
  576. .nameToId("currentClientConnections");
  577. currentQueueConnectionsId = this.stats
  578. .nameToId("currentQueueConnections");
  579. currentClientsId = this.stats.nameToId("currentClients");
  580. failedConnectionAttemptsId = this.stats
  581. .nameToId("failedConnectionAttempts");
  582. outOfOrderBatchIdsId = this.stats.nameToId("outOfOrderGatewayBatchIds");
  583. abandonedWriteRequestsId = this.stats.nameToId("abandonedWriteRequests");
  584. abandonedReadRequestsId = this.stats.nameToId("abandonedReadRequests");
  585. receivedBytesId = this.stats.nameToId("receivedBytes");
  586. sentBytesId = this.stats.nameToId("sentBytes");
  587. messagesBeingReceivedId = this.stats.nameToId("messagesBeingReceived");
  588. messageBytesBeingReceivedId = this.stats.nameToId("messageBytesBeingReceived");
  589. connectionsTimedOutId = this.stats.nameToId("connectionsTimedOut");
  590. threadQueueSizeId = this.stats.nameToId("threadQueueSize");
  591. acceptsInProgressId = this.stats.nameToId("acceptsInProgress");
  592. acceptThreadStartsId = this.stats.nameToId("acceptThreadStarts");
  593. connectionThreadStartsId = this.stats.nameToId("connectionThreadStarts");
  594. connectionThreadsId = this.stats.nameToId("connectionThreads");
  595. connectionLoadId = this.stats.nameToId("connectionLoad");
  596. queueLoadId = this.stats.nameToId("queueLoad");
  597. loadPerConnectionId = this.stats.nameToId("loadPerConnection");
  598. loadPerQueueId = this.stats.nameToId("loadPerQueue");
  599. }
  600. public final void incAcceptThreadsCreated() {
  601. this.stats.incInt(acceptThreadStartsId, 1);
  602. }
  603. public final void incConnectionThreadsCreated() {
  604. this.stats.incInt(connectionThreadStartsId, 1);
  605. }
  606. public final void incAcceptsInProgress() {
  607. this.stats.incInt(acceptsInProgressId, 1);
  608. }
  609. public final void decAcceptsInProgress() {
  610. this.stats.incInt(acceptsInProgressId, -1);
  611. }
  612. public final void incConnectionThreads() {
  613. this.stats.incInt(connectionThreadsId, 1);
  614. }
  615. public final void decConnectionThreads() {
  616. this.stats.incInt(connectionThreadsId, -1);
  617. }
  618. public final void incAbandonedWriteRequests() {
  619. this.stats.incInt(abandonedWriteRequestsId, 1);
  620. }
  621. public final void incAbandonedReadRequests() {
  622. this.stats.incInt(abandonedReadRequestsId, 1);
  623. }
  624. public final void incFailedConnectionAttempts() {
  625. this.stats.incInt(failedConnectionAttemptsId, 1);
  626. }
  627. public final void incConnectionsTimedOut() {
  628. this.stats.incInt(connectionsTimedOutId, 1);
  629. }
  630. public final void incCurrentClientConnections()
  631. {
  632. this.stats.incInt(currentClientConnectionsId, 1);
  633. }
  634. public final void decCurrentClientConnections()
  635. {
  636. this.stats.incInt(currentClientConnectionsId, -1);
  637. }
  638. public final int getCurrentClientConnections()
  639. {
  640. return this.stats.getInt(currentClientConnectionsId);
  641. }
  642. public final void incCurrentQueueConnections()
  643. {
  644. this.stats.incInt(currentQueueConnectionsId, 1);
  645. }
  646. public final void decCurrentQueueConnections()
  647. {
  648. this.stats.incInt(currentQueueConnectionsId, -1);
  649. }
  650. public final int getCurrentQueueConnections()
  651. {
  652. return this.stats.getInt(currentQueueConnectionsId);
  653. }
  654. public final void incCurrentClients()
  655. {
  656. this.stats.incInt(currentClientsId, 1);
  657. }
  658. public final void decCurrentClients()
  659. {
  660. this.stats.incInt(currentClientsId, -1);
  661. }
  662. public final void incThreadQueueSize() {
  663. this.stats.incInt(threadQueueSizeId, 1);
  664. }
  665. public final void decThreadQueueSize() {
  666. this.stats.incInt(threadQueueSizeId, -1);
  667. }
  668. public final void incReadGetRequestTime(long delta)
  669. {
  670. this.stats.incLong(readGetRequestTimeId, delta);
  671. this.stats.incInt(getRequestsId, 1);
  672. }
  673. public final void incProcessGetTime(long delta)
  674. {
  675. this.stats.incLong(processGetTimeId, delta);
  676. }
  677. public final void incWriteGetResponseTime(long delta)
  678. {
  679. this.stats.incLong(writeGetResponseTimeId, delta);
  680. this.stats.incInt(getResponsesId, 1);
  681. }
  682. public final void incReadPutAllRequestTime(long delta) {
  683. this.stats.incLong(readPutAllRequestTimeId, delta);
  684. this.stats.incInt(putAllRequestsId, 1);
  685. }
  686. public final void incProcessPutAllTime(long delta) {
  687. this.stats.incLong(processPutAllTimeId, delta);
  688. }
  689. public final void incWritePutAllResponseTime(long delta) {
  690. this.stats.incLong(writePutAllResponseTimeId, delta);
  691. this.stats.incInt(putAllResponsesId, 1);
  692. }
  693. public final void incReadRemoveAllRequestTime(long delta) {
  694. this.stats.incLong(readRemoveAllRequestTimeId, delta);
  695. this.stats.incInt(removeAllRequestsId, 1);
  696. }
  697. public final void incProcessRemoveAllTime(long delta) {
  698. this.stats.incLong(processRemoveAllTimeId, delta);
  699. }
  700. public final void incWriteRemoveAllResponseTime(long delta) {
  701. this.stats.incLong(writeRemoveAllResponseTimeId, delta);
  702. this.stats.incInt(removeAllResponsesId, 1);
  703. }
  704. public final void incReadGetAllRequestTime(long delta) {
  705. this.stats.incLong(readGetAllRequestTimeId, delta);
  706. this.stats.incInt(getAllRequestsId, 1);
  707. }
  708. public final void incProcessGetAllTime(long delta) {
  709. this.stats.incLong(processGetAllTimeId, delta);
  710. }
  711. public final void incWriteGetAllResponseTime(long delta) {
  712. this.stats.incLong(writeGetAllResponseTimeId, delta);
  713. this.stats.incInt(getAllResponsesId, 1);
  714. }
  715. public final void incReadPutRequestTime(long delta)
  716. {
  717. this.stats.incLong(readPutRequestTimeId, delta);
  718. this.stats.incInt(putRequestsId, 1);
  719. }
  720. public final void incProcessPutTime(long delta)
  721. {
  722. this.stats.incLong(processPutTimeId, delta);
  723. }
  724. public final void incWritePutResponseTime(long delta)
  725. {
  726. this.stats.incLong(writePutResponseTimeId, delta);
  727. this.stats.incInt(putResponsesId, 1);
  728. }
  729. public final void incReadDestroyRequestTime(long delta)
  730. {
  731. this.stats.incLong(readDestroyRequestTimeId, delta);
  732. this.stats.incInt(destroyRequestsId, 1);
  733. }
  734. public final void incProcessDestroyTime(long delta)
  735. {
  736. this.stats.incLong(processDestroyTimeId, delta);
  737. }
  738. public final void incWriteDestroyResponseTime(long delta)
  739. {
  740. this.stats.incLong(writeDestroyResponseTimeId, delta);
  741. this.stats.incInt(destroyResponsesId, 1);
  742. }
  743. public final void incReadInvalidateRequestTime(long delta)
  744. {
  745. // this.stats.incLong(readInvalidateRequestTimeId, delta);
  746. // this.stats.incInt(invalidateRequestsId, 1);
  747. }
  748. public final void incProcessInvalidateTime(long delta)
  749. {
  750. // this.stats.incLong(processInvalidateTimeId, delta);
  751. }
  752. public final void incWriteInvalidateResponseTime(long delta)
  753. {
  754. // this.stats.incLong(writeInvalidateResponseTimeId, delta);
  755. // this.stats.incInt(invalidateResponsesId, 1);
  756. }
  757. public final void incReadSizeRequestTime(long delta)
  758. {
  759. // this.stats.incLong(readSizeRequestTimeId, delta);
  760. // this.stats.incInt(sizeRequestsId, 1);
  761. }
  762. public final void incProcessSizeTime(long delta)
  763. {
  764. // this.stats.incLong(processSizeTimeId, delta);
  765. }
  766. public final void incWriteSizeResponseTime(long delta)
  767. {
  768. // this.stats.incLong(writeSizeResponseTimeId, delta);
  769. // this.stats.incInt(sizeResponsesId, 1);
  770. }
  771. public final void incReadQueryRequestTime(long delta) {
  772. this.stats.incLong(readQueryRequestTimeId, delta);
  773. this.stats.incInt(queryRequestsId, 1);
  774. }
  775. public final void incProcessQueryTime(long delta) {
  776. this.stats.incLong(processQueryTimeId, delta);
  777. }
  778. public final void incWriteQueryResponseTime(long delta) {
  779. this.stats.incLong(writeQueryResponseTimeId, delta);
  780. this.stats.incInt(queryResponsesId, 1);
  781. }
  782. public final void incProcessCreateCqTime(long delta) {
  783. //this.stats.incLong(processCreateCqTimeId, delta);
  784. }
  785. public final void incProcessCloseCqTime(long delta) {
  786. //this.stats.incLong(processCloseCqTimeId, delta);
  787. }
  788. public final void incProcessExecuteCqWithIRTime(long delta) {
  789. //this.stats.incLong(processExecuteCqWithIRCqTimeId, delta);
  790. }
  791. public final void incProcessStopCqTime(long delta) {
  792. //this.stats.incLong(processStopCqTimeId, delta);
  793. }
  794. public final void incProcessCloseClientCqsTime(long delta) {
  795. //this.stats.incLong(processCloseClientCqsTimeId, delta);
  796. }
  797. public final void incProcessGetCqStatsTime(long delta) {
  798. //this.stats.incLong(processGetCqStatsTimeId, delta);
  799. }
  800. public final void incReadDestroyRegionRequestTime(long delta) {
  801. this.stats.incLong(readDestroyRegionRequestTimeId, delta);
  802. this.stats.incInt(destroyRegionRequestsId, 1);
  803. }
  804. public final void incProcessDestroyRegionTime(long delta) {
  805. this.stats.incLong(processDestroyRegionTimeId, delta);
  806. }
  807. public final void incWriteDestroyRegionResponseTime(long delta) {
  808. this.stats.incLong(writeDestroyRegionResponseTimeId, delta);
  809. this.stats.incInt(destroyRegionResponsesId, 1);
  810. }
  811. public final void incReadContainsKeyRequestTime(long delta) {
  812. this.stats.incLong(readContainsKeyRequestTimeId, delta);
  813. this.stats.incInt(containsKeyRequestsId, 1);
  814. }
  815. public final void incProcessContainsKeyTime(long delta) {
  816. this.stats.incLong(processContainsKeyTimeId, delta);
  817. }
  818. public final void incWriteContainsKeyResponseTime(long delta) {
  819. this.stats.incLong(writeContainsKeyResponseTimeId, delta);
  820. this.stats.incInt(containsKeyResponsesId, 1);
  821. }
  822. public final void incReadClearRegionRequestTime(long delta)
  823. {
  824. this.stats.incLong(readClearRegionRequestTimeId, delta);
  825. this.stats.incInt(clearRegionRequestsId, 1);
  826. }
  827. public final void incProcessClearRegionTime(long delta)
  828. {
  829. this.stats.incLong(processClearRegionTimeId, delta);
  830. }
  831. public final void incWriteClearRegionResponseTime(long delta)
  832. {
  833. this.stats.incLong(writeClearRegionResponseTimeId, delta);
  834. this.stats.incInt(clearRegionResponsesId, 1);
  835. }
  836. public final void incReadProcessBatchRequestTime(long delta) {
  837. this.stats.incLong(readProcessBatchRequestTimeId, delta);
  838. this.stats.incInt(processBatchRequestsId, 1);
  839. }
  840. public final void incWriteProcessBatchResponseTime(long delta)
  841. {
  842. this.stats.incLong(writeProcessBatchResponseTimeId, delta);
  843. this.stats.incInt(processBatchResponsesId, 1);
  844. }
  845. public final void incProcessBatchTime(long delta)
  846. {
  847. this.stats.incLong(processBatchTimeId, delta);
  848. }
  849. public final void incBatchSize(long size)
  850. {
  851. this.stats.incLong(batchSizeId, size);
  852. }
  853. public final void incReadClientNotificationRequestTime(long delta)
  854. {
  855. this.stats.incLong(readClientNotificationRequestTimeId, delta);
  856. this.stats.incInt(clientNotificationRequestsId, 1);
  857. }
  858. public final void incProcessClientNotificationTime(long delta)
  859. {
  860. this.stats.incLong(processClientNotificationTimeId, delta);
  861. }
  862. public final void incReadUpdateClientNotificationRequestTime(long delta)
  863. {
  864. this.stats.incLong(readUpdateClientNotificationRequestTimeId, delta);
  865. this.stats.incInt(updateClientNotificationRequestsId, 1);
  866. }
  867. public final void incProcessUpdateClientNotificationTime(long delta)
  868. {
  869. this.stats.incLong(processUpdateClientNotificationTimeId, delta);
  870. }
  871. public final void incReadCloseConnectionRequestTime(long delta)
  872. {
  873. this.stats.incLong(readCloseConnectionRequestTimeId, delta);
  874. this.stats.incInt(closeConnectionRequestsId, 1);
  875. }
  876. public final void incProcessCloseConnectionTime(long delta)
  877. {
  878. this.stats.incLong(processCloseConnectionTimeId, delta);
  879. }
  880. public final void incOutOfOrderBatchIds()
  881. {
  882. this.stats.incInt(outOfOrderBatchIdsId, 1);
  883. }
  884. public final void incReceivedBytes(long v) {
  885. this.stats.incLong(receivedBytesId, v);
  886. }
  887. public final void incSentBytes(long v) {
  888. this.stats.incLong(sentBytesId, v);
  889. }
  890. public void incMessagesBeingReceived(int bytes) {
  891. stats.incInt(messagesBeingReceivedId, 1);
  892. if (bytes > 0) {
  893. stats.incLong(messageBytesBeingReceivedId, bytes);
  894. }
  895. }
  896. public void decMessagesBeingReceived(int bytes) {
  897. stats.incInt(messagesBeingReceivedId, -1);
  898. if (bytes > 0) {
  899. stats.incLong(messageBytesBeingReceivedId, -bytes);
  900. }
  901. }
  902. public final void incReadClientReadyRequestTime(long delta) {
  903. this.stats.incLong(readClientReadyRequestTimeId, delta);
  904. this.stats.incInt(clientReadyRequestsId, 1);
  905. }
  906. public final void incProcessClientReadyTime(long delta) {
  907. this.stats.incLong(processClientReadyTimeId, delta);
  908. }
  909. public final void incWriteClientReadyResponseTime(long delta)
  910. {
  911. this.stats.incLong(writeClientReadyResponseTimeId, delta);
  912. this.stats.incInt(clientReadyResponsesId, 1);
  913. }
  914. public final void setLoad(ServerLoad load) {
  915. this.stats.setDouble(connectionLoadId, load.getConnectionLoad());
  916. this.stats.setDouble(queueLoadId, load.getSubscriptionConnectionLoad());
  917. this.stats.setDouble(loadPerConnectionId, load.getLoadPerConnection());
  918. this.stats.setDouble(loadPerQueueId, load.getLoadPerSubscriptionConnection());
  919. }
  920. public final double getQueueLoad() {
  921. return this.stats.getDouble(queueLoadId);
  922. }
  923. public final double getLoadPerQueue() {
  924. return this.stats.getDouble(loadPerQueueId);
  925. }
  926. public final double getConnectionLoad() {
  927. return this.stats.getDouble(connectionLoadId);
  928. }
  929. public final double getLoadPerConnection() {
  930. return this.stats.getDouble(loadPerConnectionId);
  931. }
  932. public final int getProcessBatchRequests(){
  933. return this.stats.getInt(processBatchRequestsId);
  934. }
  935. public final void close() {
  936. this.stats.close();
  937. }
  938. public PoolStatHelper getCnxPoolHelper() {
  939. return new PoolStatHelper() {
  940. public void startJob() {
  941. incConnectionThreads();
  942. }
  943. public void endJob() {
  944. decConnectionThreads();
  945. }
  946. };
  947. }
  948. public Statistics getStats(){
  949. return stats;
  950. }
  951. }