@@ -7,6 +7,7 @@ The optional parameter can be used to select a specific section of information:
7
7
* ` clients ` : Client connections section
8
8
* ` memory ` : Memory consumption related information
9
9
* ` persistence ` : RDB and AOF related information
10
+ * ` threads ` : I/O threads information
10
11
* ` stats ` : General statistics
11
12
* ` replication ` : Master/replica replication information
12
13
* ` cpu ` : CPU consumption statistics
@@ -251,6 +252,15 @@ If a load operation is on-going, these additional fields will be added:
251
252
* ` loading_loaded_perc ` : Same value expressed as a percentage
252
253
* ` loading_eta_seconds ` : ETA in seconds for the load to be complete
253
254
255
+ The ** threads** section provides statistics on I/O threads.
256
+ The statistics are the number of assigned clients,
257
+ the number of read events processed, and the number of write events processed.
258
+ Added in Redis 8.0.
259
+
260
+ For each I/O thread, the following line is added:
261
+
262
+ * ` io_thread_XXX ` : ` clients=XXX,reads=XXX,writes=XXX `
263
+
254
264
Here is the meaning of all fields in the ** stats** section:
255
265
256
266
* ` total_connections_received ` : Total number of connections accepted by the
@@ -313,8 +323,8 @@ Here is the meaning of all fields in the **stats** section:
313
323
* ` dump_payload_sanitizations ` : Total number of dump payload deep integrity validations (see ` sanitize-dump-payload ` config).
314
324
* ` total_reads_processed ` : Total number of read events processed
315
325
* ` total_writes_processed ` : Total number of write events processed
316
- * ` io_threaded_reads_processed ` : Number of read events processed by the main and I/O threads
317
- * ` io_threaded_writes_processed ` : Number of write events processed by the main and I/O threads
326
+ * ` io_threaded_reads_processed ` : Number of read events processed by the I/O threads
327
+ * ` io_threaded_writes_processed ` : Number of write events processed by the I/O threads
318
328
* ` client_query_buffer_limit_disconnections ` : Total number of disconnections due to client reaching query buffer limit
319
329
* ` client_output_buffer_limit_disconnections ` : Total number of disconnections due to client reaching output buffer limit
320
330
* ` reply_buffer_shrinks ` : Total number of output buffer shrinks
0 commit comments