Github user RaiSaurabh commented on the issue:
https://github.com/apache/activemq-artemis/pull/1696
@pgfox
For Sorting to work the JSON field name change was necessary as per me. If
you look closely you will notice that these field name as actually used to call
the individual tab bean getter method
(https://github.com/apache/activemq-artemis/blob/master/artemis-server/src/main/java/org/apache/activemq/artemis/core/management/impl/view/ActiveMQAbstractView.java#L135).
The column names are used in this method to call the getter methods. Hence to
match the getter names we needed to update the field names. If we revert the
names the soring will break.
If you need some more details please let me know.
---