You can set up WSO2 Business Activity Monitor (version 2.5.0 is used here) to collect and analyze runtime statistics from the API Manager. To publish data from the API Manager to BAM, the Thrift protocol is used. Information processed in BAM is stored in a database from which the API Publisher retrieves information before displaying in the corresponding UI screens.
By default,
org.wso2.carbon.apimgt.usage.publisher.APIMgtUsageDataPublisher
is configured to push data events to WSO2 BAM. If you use a product other than WSO2 BAM to collect and analyze runtime statistics, you write a new data publishing agent by extending APIMgtUsageDataPublisher.
Find the API templates inside <APIM_HOME>/repository/resources/api_templates
. When writing a new data publishing agent, make sure the data publishing logic you implement has a minimal impact to API invocation.
Info: The datasource and database names used in this guide are just examples. They may vary depending on your configurations.
Prerequisites
JDK 1.6.* or 1.7
If you install JDK in Program Files in the Windows environment, avoid the space by using PROGRA~1 when specifying environment variables for JAVA_HOME and PATH. Else, the server throws an exception.
- Cygwin (http://www.cygwin.com): Required only if you are using Windows. WSO2 BAM analytics framework depends on Apache Hadoop, which requires Cygwin in order to run on Windows. Install at least the basic net (OpenSSH,tcp_wrapper packages) and security related Cygwin packages. After Cygwin installation, update the PATH variable with
C:/cygwin/bin
and restart BAM.
Configure WSO2 API Manager
Do the following changes in
<APIM_HOME>/repository/conf/api-manager.xml
file:- Enable API usage tracking by setting the
<APIUsageTracking>
element totrue
. - Because you will apply an offset to the default BAM port later in this guide, you need to apply the same offset to the default Thrift port. To do that, change the port value to 7614 in the <ThriftPort> element of this file. The API Manager will then push the data to BAM through port 7614, using the Thrift protocol.
- Uncomments and set the data source used for getting BAM statistics in
<DataSourceName>
element. Set <BAMServerURL> to tcp://<BAM host IP>:7614/ where <BAM host IP> is the machine IP address. Do not use localhost unless you're in a disconnected mode.
<BAMServerURL>
refers to the endpoint to which events will be published from the API Gateway. This endpoint is also known as the event receiver. You can define multiple event receiver groups, each with one or more receivers. A receiver group is defined within curly braces and receiver URLs are delimited by commas.For example,
<BAMServerURL>{tcp://localhost:7612/,tcp://localhost:7613/},{tcp://localhost:7712/,tcp://localhost:7713/}</BAMServerURL>
. This example has two receiver groups defined with two receivers in each group. When a request passes through the API Gateway, an event will be published to one selected receiver in each group.
<APIUsageTracking> <!-- Enable/Disable the API usage tracker. --> <Enabled>true</Enabled> <PublisherClass>org.wso2.carbon.apimgt.usage.publisher.APIMgtUsageDataBridgeDataPublisher</PublisherClass> <ThriftPort>7614</ThriftPort> <BAMServerURL>tcp://<BAM host IP>:7614/</BAMServerURL> <BAMUsername>admin</BAMUsername> <BAMPassword>admin</BAMPassword> <!-- JNDI name of the data source to be used for getting BAM statistics. This data source should be defined in the master-datasources.xml file in conf/datasources directory. --> <DataSourceName>jdbc/WSO2AM_STATS_DB</DataSourceName> </APIUsageTracking>
Tip: You can give a comma-separated list of URLs as the
<BAMServerURL>
to manage failover. If the BAM server in the first URL fails, the request will be routed to the second one.Tip: Are you working with an API Manager cluster? If so,
- Configure the
<APIUsageTracking>
element as given above in all API Gateway nodes Configure the following sub elements under the
<APIUsageTracking>
element in the API Publisher and Store nodes:<DataSourceName>jdbc/WSO2AM_STATS_DB</DataSourceName>
If you use destination-based usage tracking, enable the
<APIUsageTracking>
element in the Publisher node and connect to a running BAM instance. This is because the API Manager uses a separate BAM mediator to do destination based usage tracking.
- Enable API usage tracking by setting the
Specify the datasource definition under the
<datasource>
element in the<APIM_HOME>/repository/conf/datasources/master-datasources.xml
file. The tables are created automatically when the Hive script runs. You just need to create the schema. The example below connects to a MySQL instance:<datasource> <name>WSO2AM_STATS_DB</name> <description>The datasource used for getting statistics to API Manager</description> <jndiConfig> <name>jdbc/WSO2AM_STATS_DB</name> </jndiConfig> <definition type="RDBMS"> <configuration> <url>jdbc:mysql://localhost:3306/stats_db?autoReconnect=true&</url> <username>db_username</username> <password>db_password</password> <driverClassName>com.mysql.jdbc.Driver</driverClassName> <maxActive>50</maxActive> <maxWait>60000</maxWait> <testOnBorrow>true</testOnBorrow> <validationQuery>SELECT 1</validationQuery> <validationInterval>30000</validationInterval> </configuration> </definition> </datasource>
Save the database driver JAR inside both
<AM_HOME>/repository/components/lib
and<BAM_HOME>/repository/components/lib
folders.
Next, prepare BAM to collect and analyze statistics from the API Manager.
Configure WSO2 BAM
- Download WSO2 BAM 2.5.0 from location: http://wso2.com/products/business-activity-monitor.
Copy the
<APIM_HOME>/statistics/API_Manager_Analytics.tbox
to<BAM_HOME>/repository/deployment/server/bam-toolbox
folder. This enables the BAM server to create the required tables in the statistical database that you set up earlier.Apply an offset of 3 to the default BAM port by editing the
<BAM_HOME>/repository/conf/carbon.xml
file.<Offset>3</Offset>
This increments all ports used by the server by 3, which means the BAM server will run on port 9446. Port offset is used to increment the default port by a given value. It avoids possible port conflicts when multiple WSO2 products run in same host.
In
<BAM_HOME>/repository/conf/datasources/bam_datasources.xml
file, copy/pasteWSO2AM_STATS_DB
definition from the API Manager'smaster-datasources.xml
file. You edited it in step 2.WSO2AM_STATS_DB
is used to fetch analytical data from the database.Tip: If you are using BAM 2.4.1, be sure to uncomment the
<thriftDataReceiver><hostName>
element in the<BAM_HOME>/repository/conf/data-bridge/data-bridge-config.xml
file and give the BAM host IP there.Restart BAM server by running
<BAM_HOME>/bin/wso2server.[sh/bat]
.
Troubleshoot common issues
Given below is how to do troubleshoot some common issues users come across:
- Do you get an out of memory issue?
See the performance tuning guide for recommendations to tune the server for optimal performance. - Do you get an exception as unable to connect to server Cassandra?
Check if you changed the Cassandra port according to the port offset applied to the default BAM port. See Step 3 under configuring BAM section. Do you get a connection refused exception on the BAM console?
This happens when you execute Hive scripts prior to changing the default port. Add the following line at the beginning of the Hive scripts and rerun:drop table <hive_cassandra_table_name>;
You can find the Hive scripts deployed with the toolbox file, which is inside<BAM_HOME>/repository/deployment/server/bam-toolbox
folder. For information, see Editing an Analytic Script in WSO2 BAM documentation.
Change the statistics database
To use a different database than the default H2 for statistical publishing, you must change the properties of the datasource element, and additionally delete some metadata tables created by previous executions of the Hive script, if there are any.
To delete the metadata tables,
- Log in to BAM management console and select Add in Analytics menu.
- Go to the Script Editor in the window that opens.
Execute the following script.
drop TABLE APIRequestData; drop TABLE APIRequestSummaryData; drop TABLE APIVersionUsageSummaryData; drop TABLE APIResourcePathUsageSummaryData; drop TABLE APIResponseData; drop TABLE APIResponseSummaryData; drop TABLE APIFaultData; drop TABLE APIFaultSummaryData; drop TABLE APIDestinationData; drop TABLE APIDestinationDataSummaryData;
If there are previous executions of the Hive scripts, manually execute them again by going to Main > Analytics > List in the management console of BAM. Alternatively, you can wait until the periodical execution time occurs.
After configuring WSO2 BAM to render and produce statistics of APIs hosted and managed in the API Manager, you can view them through various statistical dashboards in the API Publisher, depending on your permission levels. For information, see Viewing API Statistics.