001/** 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.apache.camel.management; 018 019/** 020 * This module contains jmx related system property key constants. 021 * 022 * @version 023 */ 024public final class JmxSystemPropertyKeys { 025 026 // disable jmx 027 public static final String DISABLED = "org.apache.camel.jmx.disabled"; 028 029 // jmx domain name 030 public static final String DOMAIN = "org.apache.camel.jmx.mbeanServerDefaultDomain"; 031 032 // the domain name for the camel mbeans 033 public static final String MBEAN_DOMAIN = "org.apache.camel.jmx.mbeanObjectDomainName"; 034 035 // use jvm platform mbean server flag 036 public static final String USE_PLATFORM_MBS = "org.apache.camel.jmx.usePlatformMBeanServer"; 037 038 // whether all processors or only processors with a custom id given should be registered 039 public static final String ONLY_REGISTER_PROCESSOR_WITH_CUSTOM_ID = "org.apache.camel.jmx.onlyRegisterProcessorWithCustomId"; 040 041 // whether to enable gathering load statistics in the background 042 public static final String LOAD_STATISTICS_ENABLED = "org.apache.camel.jmx.loadStatisticsEnabled"; 043 044 // whether to enable gathering endpoint runtime statistics 045 public static final String ENDPOINT_RUNTIME_STATISTICS_ENABLED = "org.apache.camel.jmx.endpointRuntimeStatisticsEnabled"; 046 047 // the level of statistics enabled 048 public static final String STATISTICS_LEVEL = "org.apache.camel.jmx.statisticsLevel"; 049 050 // whether to register always 051 public static final String REGISTER_ALWAYS = "org.apache.camel.jmx.registerAlways"; 052 053 // whether to register when starting new routes 054 public static final String REGISTER_NEW_ROUTES = "org.apache.camel.jmx.registerNewRoutes"; 055 056 // Whether to remove detected sensitive information (such as passwords) from MBean names and attributes. 057 public static final String MASK = "org.apache.camel.jmx.mask"; 058 059 // Whether to include host name in MBean names 060 public static final String INCLUDE_HOST_NAME = "org.apache.camel.jmx.includeHostName"; 061 062 // To configure the default management name pattern using a JVM system property 063 public static final String MANAGEMENT_NAME_PATTERN = "org.apache.camel.jmx.managementNamePattern"; 064 065 // flag to enable host ip address instead of host name 066 public static final String USE_HOST_IP_ADDRESS = "org.apache.camel.jmx.useHostIPAddress"; 067 068 069 private JmxSystemPropertyKeys() { 070 // not instantiated 071 } 072 073}