fix inaccurate Hierarchy of RabbitMQ metrics. (#12144)
This commit is contained in:
parent
5808627227
commit
e9a2ed2c03
|
|
@ -113,6 +113,7 @@
|
|||
* Calculate Nginx service HTTP Latency by MQE.
|
||||
* MQE query: make metadata not return `null`.
|
||||
* MQE labeled metrics Binary Operation: return empty value if the labels not match rather than report error.
|
||||
* Fix inaccurate Hierarchy of RabbitMQ Server monitoring metrics.
|
||||
|
||||
#### UI
|
||||
|
||||
|
|
|
|||
|
|
@ -530,11 +530,11 @@
|
|||
"isRoot": false,
|
||||
"isDefault": true,
|
||||
"expressions": [
|
||||
"avg(meter_rabbitmq_messages_published)",
|
||||
"avg(meter_rabbitmq_messages_unconfirmed)",
|
||||
"avg(meter_rabbitmq_queues)",
|
||||
"avg(meter_rabbitmq_channels)",
|
||||
"avg(meter_rabbitmq_connections)"
|
||||
"aggregate_labels(meter_rabbitmq_messages_published,sum)",
|
||||
"aggregate_labels(meter_rabbitmq_messages_unconfirmed,sum)",
|
||||
"aggregate_labels(meter_rabbitmq_queues,sum)",
|
||||
"aggregate_labels(meter_rabbitmq_channels,sum)",
|
||||
"aggregate_labels(meter_rabbitmq_connections,sum)"
|
||||
],
|
||||
"expressionsConfig": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -68,6 +68,8 @@ exporters:
|
|||
endpoint: oap:11800
|
||||
tls:
|
||||
insecure: true
|
||||
logging:
|
||||
loglevel: debug
|
||||
|
||||
service:
|
||||
pipelines:
|
||||
|
|
@ -77,4 +79,5 @@ service:
|
|||
processors:
|
||||
- batch
|
||||
exporters:
|
||||
- otlp
|
||||
- otlp
|
||||
- logging
|
||||
Loading…
Reference in New Issue