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
Copy file name to clipboardExpand all lines: README.md
+24-24Lines changed: 24 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -333,7 +333,7 @@ This section provides a description of domains and subdomains and reflects their
333
333
</tr>
334
334
</tbody>
335
335
</table>
336
-
336
+
337
337
#### Units
338
338
<sub><sup> [Back to TOC.](#table-of-contents) </sup></sub><br/>
339
339
This section provides a description of metric units.<br/>
@@ -351,7 +351,7 @@ This section provides a description of metric units.<br/>
351
351
</tr>
352
352
<tr>
353
353
<td>hundredths</td>
354
-
<td>Shows amount of hundredths. For example, "370 hundredths equal" to "3.70". It is used to reflect system's load average.</td>
354
+
<td>Shows amount of hundredths. For example, "370 hundredths" equals to "3.70". It is used to reflect system's load average and LISTENER\CHANNEL status codes.</td>
355
355
</tr>
356
356
<tr>
357
357
<td>megabytes</td>
@@ -484,7 +484,7 @@ This section provides a description of CPU metrics of a running queue manager.
484
484
<td>User CPU time - percentage estimate for queue manager</td>
<td>Shows current listener status. Mapping of listener statuses to prometheus metric values can be found <ahref="#listener-status-mapping">here</a>.</td>
1377
1377
</tr>
@@ -1390,47 +1390,47 @@ This section provides a mapping between MQ channel statuses and metric values, t
1390
1390
</tr>
1391
1391
<tr>
1392
1392
<td>RUNNING</td>
1393
-
<td>1</td>
1393
+
<td>100</td>
1394
1394
</tr>
1395
1395
<tr>
1396
1396
<td>REQUESTING</td>
1397
-
<td>0.8</td>
1397
+
<td>90</td>
1398
1398
</tr>
1399
1399
<tr>
1400
1400
<td>PAUSED</td>
1401
-
<td>0.7</td>
1401
+
<td>80</td>
1402
1402
</tr>
1403
1403
<tr>
1404
1404
<td>BINDING</td>
1405
-
<td>0.6</td>
1405
+
<td>70</td>
1406
1406
</tr>
1407
1407
<tr>
1408
1408
<td>STARTING</td>
1409
-
<td>0.5</td>
1409
+
<td>60</td>
1410
1410
</tr>
1411
1411
<tr>
1412
1412
<td>INITIALIZING</td>
1413
-
<td>0.4</td>
1413
+
<td>50</td>
1414
1414
</tr>
1415
1415
<tr>
1416
1416
<td>SWITCHING</td>
1417
-
<td>0.3</td>
1417
+
<td>40</td>
1418
1418
</tr>
1419
1419
<tr>
1420
1420
<td>STOPPING</td>
1421
-
<td>0.2</td>
1421
+
<td>30</td>
1422
1422
</tr>
1423
1423
<tr>
1424
1424
<td>RETRYING</td>
1425
-
<td>0.1</td>
1425
+
<td>20</td>
1426
1426
</tr>
1427
1427
<tr>
1428
1428
<td>STOPPED</td>
1429
-
<td>0</td>
1429
+
<td>10</td>
1430
1430
</tr>
1431
1431
<tr>
1432
1432
<td>INACTIVE</td>
1433
-
<td>-1</td>
1433
+
<td>0</td>
1434
1434
</tr>
1435
1435
</tbody>
1436
1436
</table>
@@ -1448,15 +1448,15 @@ This section provides a mapping between MQ listener statuses and metric values,
metrics.put("RAM total bytes", newMetric("system_ram_ram_total_megabytes", Metric.Type.SIMPLE_GAUGE));
36
36
metrics.put("User CPU time - percentage estimate for queue manager", newMetric("mq_cpu_user_cpu_time_estimate_percentage", Metric.Type.SIMPLE_GAUGE));
37
-
metrics.put("System CPU time - percentage estimate for queue manager", newMetric("mq_cpu_system_cpu_time_estimat_percentage", Metric.Type.SIMPLE_GAUGE));
37
+
metrics.put("System CPU time - percentage estimate for queue manager", newMetric("mq_cpu_system_cpu_time_estimate_percentage", Metric.Type.SIMPLE_GAUGE));
38
38
metrics.put("RAM total bytes - estimate for queue manager", newMetric("mq_ram_ram_total_estimate_megabytes", Metric.Type.SIMPLE_GAUGE));
39
39
metrics.put("MQ trace file system - bytes in use", newMetric("system_disk_trace_file_system_in_use_megabytes", Metric.Type.SIMPLE_GAUGE));
40
40
metrics.put("MQ trace file system - free space", newMetric("system_disk_trace_file_system_free_space_percentage", Metric.Type.SIMPLE_GAUGE));
metrics.put("Concurrent connections - high water mark", newMetric("mq_mqconn_concurrent_connections_high_water_mark_totalconnections", Metric.Type.SIMPLE_GAUGE));
55
+
metrics.put("Concurrent connections - high water mark", newMetric("mq_mqconn_concurrent_connections_high_water_mark_connections", Metric.Type.SIMPLE_GAUGE));
metrics.put("Interval total destructive get- count", newMetric("mq_get_interval_total_destructive_get_count_totalmessages", Metric.Type.SIMPLE_COUNTER));
77
77
metrics.put("Interval total destructive get - byte count", newMetric("mq_get_interval_total_destructive_get_byte_count_totalbytes", Metric.Type.SIMPLE_COUNTER));
metrics.put(MQObject.MQType.QUEUE, newAdditionalMetric("mqobject_queue_queue_max_depth_messages", "The maximum number of messages that are allowed on the queue"));
127
-
metrics.put(MQObject.MQType.CHANNEL, newAdditionalMetric("mqobject_channel_channel_status_code", "The status of the channel"));
128
-
metrics.put(MQObject.MQType.LISTENER, newAdditionalMetric("mqobject_listener_listener_status_code", "The status of the listener"));
127
+
metrics.put(MQObject.MQType.CHANNEL, newAdditionalMetric("mqobject_channel_channel_status_hundredths", "The status of the channel"));
128
+
metrics.put(MQObject.MQType.LISTENER, newAdditionalMetric("mqobject_listener_listener_status_hundredths", "The status of the listener"));
0 commit comments