Github user cshannon commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2007#discussion_r180449915
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/api/core/management/CoreNotificationType.java
---
@@ -39,7 +39,15 @@
PROPOSAL(18),
PROPOSAL_RESPONSE(19),
UNPROPOSAL(20),
- CONSUMER_SLOW(21);
+ CONSUMER_SLOW(21),
+ ADDRESS_ADDED(22),
+ ADDRESS_REMOVED(23),
+ CONNECTION_CREATED(24),
+ CONNECTION_DESTROYED(25),
+ SESSION_CREATED(26),
+ SESSION_CLOSED(27),
+ MESSAGE_DELIVERED(28),
--- End diff --
No because every notification is off by default. The user can configure
what they want. By default if you configure the plugin it doesn't do anything
unless the user sets a type to true to send. So if someone doesn't care about
message delivered notifications then just leave that flag as false.
---