rabbitmq_io_write_ops_total and rabbitmq_io_read_ops_total #1858
lanzhiwang
started this conversation in
General
Replies: 1 comment
-
Those metrics are used in Classic Queues v1 and little else. Quorum Queues and Streams do not update IO metrics. You will get better IO metrics from the OS, for example, with Prometheus Node Exporter. Those metrics are likely to be removed in RabbitMQ 4.0. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the rabbitmq 3.12.4 version, the quorum queues is used to produce and consume messages, and the plug-in is used to output monitoring indicators to Prometheus.
Among the monitoring indicators,
rabbitmq_io_write_ops_total
andrabbitmq_io_read_ops_total
are always 0.It looks like there are no disk IO operations.
In fact, data is written to the disk, and the size of the wal file is constantly growing. This can mean that the data is written to the disk.
I would like to ask why the above two monitoring indicators are always 0. Is it a problem with the monitoring plug-in itself or the mechanism of the quorum queues itself?
Beta Was this translation helpful? Give feedback.
All reactions