<%@ page language="java" contentType="text/html" session="false" %> <%@ taglib uri="http://geronimo.apache.org/tlds/geronimo_jmx-console_v0-1.tld" prefix="jmx" %> Geronimo Management Console -- Frequently Asked Questions geronimo management console
JMX Agent View
Frequently Asked Questions

How do I construct an ObjectName filter?

To construct an ObjectName filter you must first list the domain of the MBean. The domain is the part of the MBean's CanonicalName which comes before the colon (:). The part which comes after the colon is a list of the MBean's properties. In order to create a query, you must type in a domain substring, a colon, and a "<name>=<value>" pair followed by a comma. Wildcards (*) are also accepted as substrings in a limited fashion.

These queries will work:
These queries will not:

The console's capacity to filter the display results through this method is limited by the functionality of the underlying JMX implementation and the details of the JMX specification.