Skip to content

Releases: wso2/analytics-apim

WSO2 API Manager Analytics 1.0.0 Beta Release

08 Jun 13:15
Compare
Choose a tag to compare

Following instructions are valid only for a single node deployment.

  • WSO2 API Manager Analytics 1.0.0 Beta release pack is attached here. Download it and unzip it.
  • WSO2 API Manager 2.0.0 Beta release pack can be downloaded from https://github.com/wso2/product-apim/releases/download/v2.0.0-BETA/wso2am-2.0.0-BETA.zip
  • Once downloaded, unzip it.
  • Create a DB (MySql for an example) for Statistics and configure it in repository/conf/datasources/master-datasources.xml file in both APIM and APIM Analytics distributions.
<datasource>
  <name>WSO2AM_STATS_DB</name>
  <description>The datasource used for setting statistics to API Manager</description>
  <jndiConfig>
    <name>jdbc/WSO2AM_STATS_DB</name>
    </jndiConfig>
  <definition type="RDBMS">
    <configuration>
      <url>jdbc:mysql://<ip-address>:3306/statdb?autoReconnect=true&amp;relaxAutoCommit=true</url>
      <username>username</username>
      <password>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>
  • Copy MySql JDBC driver into <CARBON_HOME>/repository/components/lib directory in both API Manager and APIM Analytics distributions.
  • Go to [APIM_ANALYTICS_HOME]/dbscripts/statistics and select the preferred SQL script (in this case, mysql.sql). Then create schemas by executing the SQL script, against the above-mentioned database.
  • Open the {APIM-HOME}/repository/conf/api-manager.xml file and enable the analytics like below;
<Analytics>
        <!-- Enable Analytics for API Manager -->
        <Enabled>true</Enabled>

alerts1
alerts2

WSO2 API Manager Analytics 1.0.0 Alpha2 Release

11 May 06:21
Compare
Choose a tag to compare

Following instructions are valid only for a single node deployment.

<Analytics>
        <!-- Enable Analytics for API Manager -->
        <Enabled>true</Enabled>

WSO2 API Manager Analytics 1.0.0 Alpha Release

03 May 06:12
Compare
Choose a tag to compare

Following instructions are valid only for a single node deployment.

<Analytics>
        <!-- Enable Analytics for API Manager -->
        <Enabled>true</Enabled>

WSO2 API Manager Analytics 1.0.0 Milestone 2 Release

13 Apr 11:13
Compare
Choose a tag to compare

Following instructions are valid only for a single node deployment.

<Analytics>
        <!-- Enable Analytics for API Manager -->
        <Enabled>true</Enabled>

WSO2 API Manager Analytics 1.0.0 Milestone 1 Release

08 Apr 17:33
Compare
Choose a tag to compare
Merge pull request #134 from nirmal070125/master

Fixing and improving performance of test cases.