You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td>Shows the average latency of messages that are retrieved from the queue.</td>
1327
1334
<td>average queue time</td>
1328
1335
</tr>
1329
1336
<tr>
1330
-
<td>mqobject_get_queue_depth_messages</td>
1337
+
<td>mqobject_queue_queue_depth_messages</td>
1331
1338
<td>gauge</td>
1332
1339
<td>Shows the number of messages on the queue.</td>
1333
1340
<td>Queue depth</td>
@@ -1347,17 +1354,17 @@ This section provides a description of metrics of queues, channels and listeners
1347
1354
<td><strong>Short description</strong></td>
1348
1355
</tr>
1349
1356
<tr>
1350
-
<td>mqobject_queue_max_depth_messages</td>
1357
+
<td>mqobject_queue_queue_max_depth_messages</td>
1351
1358
<td>gauge</td>
1352
1359
<td>Shows maximum number of messages that are allowed on the queue.</td>
1353
1360
</tr>
1354
1361
<tr>
1355
-
<td>mqobject_channel_status_code</td>
1362
+
<td>mqobject_channel_channel_status_code</td>
1356
1363
<td>gauge</td>
1357
1364
<td>Shows current channel status. Mapping of channel statuses to prometheus metric values can be found <ahref="#channel-status-mapping">here</a>.</td>
1358
1365
</tr>
1359
1366
<tr>
1360
-
<td>mqobject_listener_status_code</td>
1367
+
<td>mqobject_listener_listener_status_code</td>
1361
1368
<td>gauge</td>
1362
1369
<td>Shows current listener status. Mapping of listener statuses to prometheus metric values can be found <ahref="#listener-status-mapping">here</a>.</td>
1363
1370
</tr>
@@ -1455,7 +1462,7 @@ Pull requests are always welcome.
1455
1462
## Known issues
1456
1463
The following are known issues and may affect your use of exporter.
1457
1464
1458
-
* Metric mq_cpu_ram_total_estimate_megabytes may contain negative
1465
+
* Metric mq_ram_ram_total_estimate_megabytes may contain negative
put(MQObject.MQType.QUEUE, newAdditionalMetric("mqobject_queue_max_depth_messages", "The maximum number of messages that are allowed on the queue"));
108
-
put(MQObject.MQType.CHANNEL, newAdditionalMetric("mqobject_channel_status_code", "The status of the channel"));
109
-
put(MQObject.MQType.LISTENER, newAdditionalMetric("mqobject_listener_status_code", "The status of the listener"));
107
+
put(MQObject.MQType.QUEUE, newAdditionalMetric("mqobject_queue_queue_max_depth_messages", "The maximum " + "number of messages that are allowed on the queue"));
108
+
put(MQObject.MQType.CHANNEL, newAdditionalMetric("mqobject_channel_channel_status_code", "The status of " + "the channel"));
109
+
put(MQObject.MQType.LISTENER, newAdditionalMetric("mqobject_listener_listener_status_code", "The status " + "of the listener"));
110
110
}
111
111
};
112
112
@@ -138,9 +138,9 @@ public class MetricsReference {
0 commit comments