Add a PasswordHandler to your Application Service/Client
PasswordHandler is a pre-defined handler used to replace the real
password characters with null ('') for security considerations. You can set
the tag name which has the password and needs to be replaced. For example:
Next, add a CustomInfoHandler to your application service or client.
CustomInfoHandler is a pre-defined handler used to store user-defined
key/values in the database. For example:
<bean id="fixedProperties"
class="org.talend.esb.sam.common.handler.impl.CustomInfoHandler">
<property name="customInfo">
<map>
<entry key="Application name" value="Placeholder App"/>
<entry key="Stage" value="Dev"/>
</map>
</property>
</bean>
Then send a message, and the custom key/value properties will be stored
in the database.
Example
Finally, add filter configuration on the Service Activity Monitoring Server:
Modify the Service Activity Monitoring Server's server.xml. For example: