This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f8f9c969e360a6237bef66f401cc174b8b1a6b9c Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Wed Sep 4 07:43:29 2024 +0200 CAMEL-21066: removed OSGI details for the JMX documentation --- docs/user-manual/modules/ROOT/pages/jmx.adoc | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/jmx.adoc b/docs/user-manual/modules/ROOT/pages/jmx.adoc index be19a328c84..4263d7e0e6e 100644 --- a/docs/user-manual/modules/ROOT/pages/jmx.adoc +++ b/docs/user-manual/modules/ROOT/pages/jmx.adoc @@ -218,22 +218,10 @@ supports the following tokens: * `\#camelId#` = the CamelContext id (eg the name) * `\#name#` - same as `\#camelId#` * `\#counter#` - an incrementing counter -* `\#bundleId#` - the OSGi bundle id (only for OSGi environments) -* `\#symbolicName#` - the OSGi symbolic name (only for OSGi environments) -* `\#version#` - the OSGi bundle version (only for OSGi environments) - -The default naming pattern is differentiated between OSGi and non-OSGi -as follows: - -* non OSGI: `\#name#` -* OSGi: `\#symbolicName#` If there is a naming clash in the `JMXMBeanServer` then Camel will automatically fall back and use the `\#counter#` in the pattern to remedy -this. Thus, the following patterns will then be used: - -* non OSGI: `\#name#-\#counter#` -* OSGi: `\#symbolicName#-\#counter#` +this. Thus, the following patterns will then be used: `\#name#-\#counter#` If you set an explicit naming pattern, then that pattern is always used, and the default patterns above are *not* used.
