@@ -10,11 +10,15 @@ rules:
10
10
mapping :
11
11
ProducerCount :
12
12
metric : producer.count
13
+ # Unit name inherited from activemq.groovy file.
14
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
13
15
unit : " producers"
14
16
type : updowncounter
15
17
desc : The number of producers currently attached to the broker.
16
18
ConsumerCount :
17
19
metric : consumer.count
20
+ # Unit name inherited from activemq.groovy file.
21
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
18
22
unit : " consumers"
19
23
type : updowncounter
20
24
desc : The number of consumers currently reading from the broker.
@@ -25,21 +29,29 @@ rules:
25
29
desc : The percentage of configured memory used.
26
30
QueueSize :
27
31
metric : message.current
32
+ # Unit name inherited from activemq.groovy file.
33
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
28
34
unit : " messages"
29
35
type : updowncounter
30
36
desc : The current number of messages waiting to be consumed.
31
37
ExpiredCount :
32
38
metric : message.expired
39
+ # Unit name inherited from activemq.groovy file.
40
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
33
41
unit : " messages"
34
42
type : counter
35
43
desc : The total number of messages not delivered because they expired.
36
44
EnqueueCount :
37
45
metric : message.enqueued
46
+ # Unit name inherited from activemq.groovy file.
47
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
38
48
unit : " messages"
39
49
type : counter
40
50
desc : The total number of messages received by the broker.
41
51
DequeueCount :
42
52
metric : message.dequeued
53
+ # Unit name inherited from activemq.groovy file.
54
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
43
55
unit : " messages"
44
56
type : counter
45
57
desc : The total number of messages delivered to consumers.
61
73
CurrentConnectionsCount :
62
74
metric : connection.count
63
75
type : updowncounter
76
+ # Unit name inherited from activemq.groovy file.
77
+ # Will be updated to {} semconv notation when we switch to use original files from JMX Insights
64
78
unit : " connections"
65
79
desc : The total number of current connections.
66
80
StorePercentUsage :
0 commit comments