MBean属性の除外
一部のMBean属性には、Javaエージェントにレポートさせるべきでない機密情報が含まれます。app-agent-config.xmlファイルの<exclude object-name>設定を使用して、そのような属性を除外するようJavaエージェントを構成できます。
MBean 属性を除外するには、次の手順を実行します。
AppDynamics SaaS
list_alt
一部のMBean属性には、Javaエージェントにレポートさせるべきでない機密情報が含まれます。app-agent-config.xmlファイルの<exclude object-name>設定を使用して、そのような属性を除外するようJavaエージェントを構成できます。
MBean 属性を除外するには、次の手順を実行します。
AppServerAgent/conf/app-agent-config.xml ファイルを開く。<property name="agent-overwrite" value="true"/>
<agent-service name="JMXService" enabled="true">
<configuration>
<!--
Use the below configuration sample to create rules to exclude MBean attributes from MBean Browser.
<exclude object-name=<MBean name pattern> attributes=< * |comma separated list of attribute names> >
The example below will exclude all attributes of MBeans that match "Catalina:*".
<jmx-mbean-browser-excludes>
<exclude object-name="Catalina:*" attributes="*"/>
</jmx-mbean-browser-excludes>
-->
</configuration>