gemmellr commented on code in PR #4183:
URL: https://github.com/apache/activemq-artemis/pull/4183#discussion_r1053060989


##########
artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/ProducerField.java:
##########
@@ -21,15 +21,19 @@
 
 public enum ProducerField {
    ID("id"),
-   SESSION("session"),
+   SESSION("session", "sessionID"),
    CONNECTION_ID("connectionID"),
-   ADDRESS("address"), USER("user"),
+   ADDRESS("address", "destination"),
+   USER("user"),
    VALIDATED_USER("validatedUser"),
    PROTOCOL("protocol"),
    CLIENT_ID("clientID"),
    LOCAL_ADDRESS("localAddress"),
    REMOTE_ADDRESS("remoteAddress"),
-   CREATION_TIME("creationTime");
+   CREATION_TIME("creationTime"),
+   MESSAGE_SENT("msgSent"),
+   MESSAGE_SENT_SIZE("msgSizeSent"),
+   LAST_PRODUCED_MESSAGE_ID_SENT("lastProducedMessageID");

Review Comment:
   It has both 'produced' and 'sent' in the field constant name: 
LAST_PRODUCED...._MESSAGE_ID_SENT. Seems like 'SENT' can be dropped to match 
the value.
   
   LAST_PRODUCED_MESSAGE_ID("lastProducedMessageID");
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to