PerfMon Counters for Cache
NCache publishes different counters for monitoring purposes through PerfMon. It also publishes some counters for debugging purposes. You can monitor NCache counters for a specific cache on any Windows machine using Windows PerfMon tools.
Performance Counters
NCache is not only enriched with powerful monitoring facilities but besides that. It also provides different categories of counters for Windows performance monitors. This lets the users monitor the overall performance of NCache. They cover all aspects of NCache monitoring, including remote clients, cache clients, clustered operations, server counters, and many more.
The performance counters provide valuable information about system hardware, services, networks, and applications that can be used to determine their performance. It helps in diagnosing problems, fine-tuning systems and applications, monitoring real-time application performance, and resolving bottleneck causes of system components.
These performance counters can be seen from PerfMon. The statistics view is also used to see the performance statistics of a cache or a cluster.
These counters include:
Counters | Description |
---|---|
Fetches/sec |
The number of Get operations per second. |
Hits/sec |
The number of successful Get operations per second. |
Misses/sec |
The number of failed Get operations per second. |
Additions/sec |
The number of Add operations per second. |
Updates/sec |
The number of Insert operations per second. |
Deletes/sec |
The number of Remove operations per second. |
Expirations/sec |
The number of items being expired currently per second. |
Evictions/sec |
The number of items evicted per second. |
Mirror Queue Size |
The number of items in the Mirrored queue. |
Average sec/fetch |
The average time in seconds taken to complete one Fetch operation. |
Average sec/add |
The average time in seconds taken to complete one Add operation. |
Average sec/insert |
The average time in seconds taken to complete one Insert operation. |
Average sec/remove |
The average time in seconds taken to complete one Remove operation. |
Average sec/cache operation |
The average time in seconds taken to complete one cache operation. |
Client Request/sec |
The number of requests sent by all clients to the cache server. |
Client Response/sec |
The number of responses received by all clients from the cache server. |
Clustered opsrecv/sec |
The number of clustered operations performed per second. |
Clustered opsent/sec |
The number of clustered operations performed per second. |
Count |
The number of items in the cache. |
DispatchEnter/sec |
The number of clustered operations performed per second. |
Readthru/sec |
The number of Read-through operations per second. |
Response sent/sec |
The number of clustered operations performed per second. |
Responses/sec |
The number of responses sent (meaning cache response for commands like Add, Get, Insert, Remove, etc.) to all clients by this cache server. |
State transfer/sec |
The number of items this node is either reading from other nodes or sending to other nodes during a state transfer mode. |
Writethru/sec |
The number of Write-through/Write-behind operations per second. |
CacheLastAccessCount |
The number of items that are older than the access interval specified in the config. |
Cluster ops/sec |
The number of clustered operations performed per second. |
Bytes sent/sec |
How much data is sent from this node to other nodes in the cache. |
Bytes received/sec |
The amount of data received by this node from other nodes in the cache. |
Requests/sec |
The number of requests (meaning cache commands like add, get, insert, remove, etc.) being processed from all clients by this cache server. |
Client bytes sent/sec |
The bytes being sent from the cache server to all its clients. |
Client bytes received/sec |
The bytes being received by the cache server from all its clients. |
Response Queue Count |
The number of items in response queue; all responses are queued in the response queue before being sent. |
Response Queue Size |
The size of the response queue in bytes. It displays the total data size of all the responses in the response queue. |
Event Queue Count |
The number of events in the event queue. |
Events Processed/sec |
The number of events processed per second on a client. |
Events Triggered/sec |
The number of events triggered and received by client per second. |
Average ms/event |
The average time taken by the client to process a single event. |
Average µs/addBulk |
The average number of bulk (not independent keys) adds per microsecond. This applies to Bulk, Group, and Tag APIs. |
Average µs/fetchBulk |
The average number of bulk (not independent keys) fetches per microsecond. This applies to Bulk, Group, and Tag APIs. |
Average µs/removeBulk |
The average number of bulk (not independent keys) removes per microsecond. This applies to Bulk, Group, and Tag APIs. |
Average µs/insertBulk |
The average number of bulk (not independent keys) inserts per microsecond. This applies to Bulk, Group, and Tag APIs. |
Messages Count |
The number of messages entertained by Pub/Sub topic. |
Messages Delivered/sec |
The number of messages delivered to subscribers in one second. |
Messages Published/sec |
The number of messages published in one second. |
Messages Expired/sec |
The number of messages expired in one second. |
Message Store Size |
The size of the message store created within a topic. |
Topics Count |
The number of topics that are registered on the cache. |
Debugging Counters
Counter | Description |
---|---|
Socket send time (ms) |
The time in milliseconds taken to send a request. |
Socket send size (bytes) |
The bytes sent per second. |
Socket recv time (ms) |
The time in milliseconds taken to receive a request. |
Socket recv size (bytes) |
The bytes received per second. |
TcpUpQueueCount |
The number of items in TCP-up Queue. |
TcpDownQueueCount |
The number of items in TCP-down Queue. |
BCastQueueCount |
The number of items in BCast Queue. |
MCastQueueCount |
The number of items in MCast Queue. |