Github user pgfox commented on the issue:
https://github.com/apache/activemq-artemis/pull/1506
Updated to filter on any of the columns returned
```
$ ./artemis qstat --user admin --password admin --field ADDRESS --operation
EQUALS --value test500
|NAME |ADDRESS |CONSUMER_COUNT
|MESSAGE_COUNT |MESSAGES_ADDED |DELIVERING_COUNT |MESSAGES_ACKED |
|test500 |test500 |0 |1000
|1000 |0 |0 |
```
--queueName=X can still be used as a shortcut to filter by "NAME that
contains String X"
```
$ ./artemis qstat --user admin --password admin --queueName test
|NAME |ADDRESS |CONSUMER_COUNT
|MESSAGE_COUNT |MESSAGES_ADDED |DELIVERING_COUNT |MESSAGES_ACKED |
|test500 |test500 |0 |1000
|1000 |0 |0 |
|test501 |test501 |0 |50
|50 |0 |0 |
|test502 |test502 |0 |75
|75 |0 |0 |
|test503 |test503 |0 |90
|90 |0 |0 |
|test504 |test504 |0 |200
|200 |0 |0 |
```
---