Mule ESB is a lightweight Java-based enterprise service bus (ESB) and integration platform that allows developers to connect applications together quickly and easily, enabling them to exchange data. This extension monitors Mule ESB instance and collects useful statistics exposed through MBeans.
Before the extension is installed, the prerequisites mentioned here need to be met. Please do not proceed with the extension installation if the specified prerequisites are not met.
To use this extension please configure JMX in Mule ESB instance. To configure JMX please add following properties to the wrapper.conf of the Mule instance.
###JMX Connection Properties###
wrapper.java.additional.19=-Dcom.sun.management.jmxremote
wrapper.java.additional.20=-Dcom.sun.management.jmxremote.port=9000
wrapper.java.additional.21=-Dcom.sun.management.jmxremote.authenticate=false
wrapper.java.additional.22=-Dcom.sun.management.jmxremote.ssl=false
wrapper.java.additional.23=-Djava.rmi.server.hostname=localhost
Please make sure that you put proper value of n
in wrapper.java.additional.<n>
as per your conf file.
target
directory into the "<MachineAgent_Dir>/monitors" directory.Please place the extension in the "monitors" directory of your Machine Agent installation directory. Do not place the extension in the "extensions" directory of your Machine Agent installation directory.
Configure the Mule ESB Extension by editing the config.yml file in <MACHINE_AGENT_HOME>/monitors/MuleESBMonitor/
.
<COMPONENT_ID>
in metricPrefix: Server|Component:<COMPONENT_ID>|Custom Metrics|Mule ESB|.metricPrefix: "Server|Component:100|Custom Metrics|Mule ESB|"
More details around metric prefix can be found here.
Specify the Mule ESB instance host, JMX port, username and password in the config.yml. By default the extension will fetch metrics from org.mule.Statistics type for all the domains under Mule. You can also configure any custom domainMatcher(regex supported) in the config.yml. It also fetches memory metrics of the Mule instance.
We can exclude domains by specifying them in the excludeDomains
configuration. Similary, you can add flows to be monitored in the flows
.
For eg.
servers:
- displayName: "Mule Server" # mandatory
# You can either use just a host and port to connect or use your full serviceURL to make the connection
# Do not choose both, comment one out and only use the other.
# Below is a sample serviceUrl for a server.
# serviceUrl: "" #e.g: "service:jmx:rmi:///jndi/rmi://localhost:9000/jmxrmi"
# serviceUrl: ""
host: localhost
port: 9000
username: ""
password: ""
# Mule ESB MBeans
mbeanDetails:
domainMatcher: "Mule.*"
types: [org.mule.Statistics]
excludeDomains: []
flows: [.*]
Configure the path to the config.yml file by editing the in the monitor.xml file in the <MACHINE_AGENT_HOME>/monitors/MuleESBMonitor/
directory. Below is the sample
<task-arguments>
<!-- config file-->
<argument name="config-file" is-required="true" default-value="monitors/MuleESBMonitor/config.yml" />
</task-arguments>
Configure the numberOfThreads.
Each server instance needs 1 threads to call the mule ESB.
For example,
By default we want to support 3 servers, so it is 3 threads.
numberOfThreads: 3
You can add/remove metrics of your choice by modifying the provided metrics.xml file. This file consists of all the metrics that will be monitored and sent to the controller. Please look how the metrics have been defined and follow the same convention, when adding new metrics. You do have the ability to choose your Rollup types as well as set an alias that you would like to be displayed on the metric browser.
Add the metric
to be monitored with the metric tag as shown below. Also please note that the metrics
are grouped under appropriate stats in the metrics.xml.
<metric attr="AverageProcessingTime" alias="AverageProcessingTime" aggregationType = "OBSERVATION" timeRollUpType = "AVERAGE" clusterRollUpType = "INDIVIDUAL" />
For configuring the metrics, the following properties can be used:
Property | Default value | Possible values | Description |
---|---|---|---|
alias | metric name | Any string | The substitute name to be used in the metric browser instead of metric name. |
aggregationType | "AVERAGE" | "AVERAGE", "SUM", "OBSERVATION" | Aggregation qualifier |
timeRollUpType | "AVERAGE" | "AVERAGE", "SUM", "CURRENT" | Time roll-up qualifier |
clusterRollUpType | "INDIVIDUAL" | "INDIVIDUAL", "COLLECTIVE" | Cluster roll-up qualifier |
multiplier | 1 | Any number | Value with which the metric needs to be multiplied. |
convert | null | Any key value map | Set of key value pairs that indicates the value to which the metrics need to be transformed. eg: UP:1, OPEN:1 |
delta | false | true, false | If enabled, gives the delta values of metrics instead of actual values. |
All these metric properties are optional, and the default value shown in the table is applied to the metric (if a property has not been specified) by default.
Mule ESB metrics are exported by the JMX interface and the extension collects the metrics as available in the Jconsole.
<Domain_Name>
/ExecutionErrors<Domain_Name>
/FatalErrors<Domain_Name>
/ProcessedEvents<Domain_Name>
/MaxProcessingTime<Domain_Name>
/TotalProcessingTime<Domain_Name>
/SyncEventsReceived<Domain_Name>
/TotalEventsReceived<Domain_Name>
/MinProcessingTime<Domain_Name>
/AsyncEventsReceived<Domain_Name>
/AverageProcessingTimePlease visit this page to get detailed instructions on password encryption. The steps in this document will guide you through the whole process.
Workbench is an inbuilt feature provided with each extension in order to assist you to fine tune the extension setup before you actually deploy it on the controller. Please review the following document on How to use the Extensions WorkBench.
Before configuring the extension, please make sure to run the below steps to check if the set up is correct.
Always feel free to fork and contribute any changes directly here on GitHub.
Name | Version |
---|---|
Extension Version | 2.2.1 |
Product Tested On | 3.9.2 |
Last Update | 04/02/2021 |
Changes list | ChangeLog |
Note: While extensions are maintained and supported by customers under the open-source licensing model, they interact with agents and Controllers that are subject to AppDynamics’ maintenance and support policy. Some extensions have been tested with AppDynamics 4.5.13+ artifacts, but you are strongly recommended against using versions that are no longer supported.
Owner
Contributors
Categories
Products
AppDynamicsProgramming Languages
JavaLicense
Code Exchange Community
Get help, share code, and collaborate with other developers in the Code Exchange community.View Community