Skip to content

Commit 36bc5aa

Browse files
committed
Code review changes
1 parent 5b046cb commit 36bc5aa

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

jmx-scraper/src/integrationTest/java/io/opentelemetry/contrib/jmxscraper/target_systems/ActiveMqIntegrationTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ protected GenericContainer<?> createTargetContainer(int jmxPort) {
2626
builder -> builder.from("apache/activemq-classic:5.18.6").build()))
2727
.withEnv("LOCAL_JMX", "no")
2828
.withCopyFileToContainer(
29+
// Overwrite default ActiveMQ configuration in order to let ActiveMQ use JMX options
30+
// stored in $ACTIVEMQ_JMX_OPTS env variable defined below
2931
MountableFile.forClasspathResource("activemq/env"), "/opt/apache-activemq/bin/env")
3032
.withEnv(
3133
"ACTIVEMQ_JMX_OPTS",

jmx-scraper/src/main/resources/activemq.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ rules:
1010
mapping:
1111
ProducerCount:
1212
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
1315
unit: "producers"
1416
type: updowncounter
1517
desc: The number of producers currently attached to the broker.
1618
ConsumerCount:
1719
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
1822
unit: "consumers"
1923
type: updowncounter
2024
desc: The number of consumers currently reading from the broker.
@@ -25,21 +29,29 @@ rules:
2529
desc: The percentage of configured memory used.
2630
QueueSize:
2731
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
2834
unit: "messages"
2935
type: updowncounter
3036
desc: The current number of messages waiting to be consumed.
3137
ExpiredCount:
3238
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
3341
unit: "messages"
3442
type: counter
3543
desc: The total number of messages not delivered because they expired.
3644
EnqueueCount:
3745
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
3848
unit: "messages"
3949
type: counter
4050
desc: The total number of messages received by the broker.
4151
DequeueCount:
4252
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
4355
unit: "messages"
4456
type: counter
4557
desc: The total number of messages delivered to consumers.
@@ -61,6 +73,8 @@ rules:
6173
CurrentConnectionsCount:
6274
metric: connection.count
6375
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
6478
unit: "connections"
6579
desc: The total number of current connections.
6680
StorePercentUsage:

jmx-scraper/src/main/resources/activemq/env

+3-1
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,6 @@
114114
# (set JAVACMD to "auto" for automatic detection)
115115
#JAVA_HOME=""
116116
JAVACMD="auto"
117-
ACTIVEMQ_OPTS="$ACTIVEMQ_OPTS $ACTIVEMQ_JMX_OPTS -Dhawtio.authenticationEnabled=false -Dhawtio.realm=activemq -Dhawtio.role=admins -Dhawtio.rolePrincipalClasses=org.apache.activemq.jaas.GroupPrincipal"
117+
118+
# Use JMX options defined in environment variable
119+
ACTIVEMQ_OPTS="$ACTIVEMQ_OPTS $ACTIVEMQ_JMX_OPTS"

0 commit comments

Comments
 (0)