-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for ActiveMQ Artemis (#8527)
* Initial Artemis JMX integration * Add artemis metrics and e2e env * Add test queues for artemis env * Remove new integration files * Update metadata * Update e2e tests * Fix style * Update README * Add address metrics * Update tests * Update activemq/README.md Co-authored-by: Christine Chen <ChristineTChen@users.noreply.github.com> * Update metric types * Fix metadata * Update metric types and add rate test Co-authored-by: Christine Chen <ChristineTChen@users.noreply.github.com>
- Loading branch information
1 parent
00ba89c
commit 3ae6bd7
Showing
9 changed files
with
247 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ services: | |
ports: | ||
- "8161:8161" | ||
- "${JMX_PORT}:${JMX_PORT}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
version: "3" | ||
|
||
services: | ||
namenode: | ||
image: vromero/activemq-artemis:${ARTEMIS_VERSION} | ||
container_name: dd-test-activemq-server | ||
environment: | ||
JAVA_OPTS: >- | ||
-Dcom.sun.management.jmxremote.port=${JMX_PORT} | ||
-Dcom.sun.management.jmxremote.rmi.port=${JMX_PORT} | ||
-Dcom.sun.management.jmxremote.ssl=false | ||
-Dcom.sun.management.jmxremote.authenticate=false | ||
-Djava.rmi.server.hostname=localhost | ||
ARTEMIS_USERNAME: admin | ||
ARTEMIS_PASSWORD: admin | ||
DISABLE_SECURITY: "true" | ||
ENABLE_JMX: "true" | ||
JMX_PORT: ${JMX_PORT} | ||
JMX_RMI_PORT: ${JMX_PORT} | ||
ports: | ||
- "8161:8161" | ||
- "${JMX_PORT}:${JMX_PORT}" | ||
- "61616:61616" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters