Event Statistics is an important feature which helps monitoring purposes of events. This presents realtime requests and responses vs time for all the incoming and outgoing Topics of the CEP/DAS. You can use this visualization to get an idea about system throughput, input frequency and to check whether the inputs are received or outputs are published. By default, event statistics are disabled in the CEP/DAS to avoid over-head of unnecessary processing of events.
...
Enabling/Disabling Event Statistics
Even though the Event Statistics feature is enabled in the product, it is not activated by itself. You need to activate event statistics for each and every configuration that you want since monitoring event statistics takes a considerable amount of processing overhead. Change the <StatisticsReporterDisabled>
property to false in the <PRODUCT_HOME>/repository/conf/carbon.xml
file, to enable event statistics tracing in the product server.
You can enable or disable event statistics for event receivers and event publishers. For an example, follow the steps below to enable event statistics tracing on a event publisher.
...
- Open <PRODUCT_HOME>/repository/conf/carbon.xml file on a text editor.
Add the following element as a child of <Server> element.
Code Block <EventStat> <Observers>org.wso2.carbon.event.statistics.internal.jmx.JMXObserver</Observers> </EventStat>
Info As a result of adding the above element, at the server start-time, an instance of JMXObserver will be registered as an event statistics observer. This observer will be periodically (every 5 seconds) updated on event statistics. Upon receiving an update, Event Statistic MBeans (which can be viewed on the JConsole) will be updated.
- Start WSO2 CEP server.
- Start JConsole to monitor above CEP server process. Refer JMX-Based Monitoring to learn how to start JConsole and monitor WSO2 CEP with JMX.
- Click MBeans tab on the JConsole window. Then expand the domain ‘org.wso2.carbon.event’.
Now you can select MBeans as you wish, to view statistics.
For example:
- Selecting the MBean ‘-1234’ will show the stats for all the elements for which stats have being enabled, such as publishers, receivers and execution plans.
- Selecting the MBean ‘-1234.Event Publisher.TestLogger’ will show the stats for the Event Publisher with name ‘TestLogger’.