Tohid Makari
Tohid Makari

Reputation: 2484

WSO2 Api manager 3.2.0 Analytics not showing any data

WSO2 Api manager 3.2.0 Analytics not showing any data.I hit the api many times and try out, but not showing any thing. Its configured successfully as following info :

DataBridge user admin connected

enter image description here

Upvotes: 1

Views: 458

Answers (1)

Athiththan
Athiththan

Reputation: 2218

Duplicate of wso2 api mnager analytics dashborad show api name but not usages


If you are using Oracle schemas to configure Analytics in your environment, add the following datasource configuration under ANALYTICS_DB in the Dashboard's <analytics>/conf/dashboard/deployment.yaml

connectionInitSql: alter session set NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'

A complete configuration will be as following

- name: APIM_ANALYTICS_DB
  description: Datasource used for APIM Analytics
  jndiConfig:
    name: jdbc/APIM_ANALYTICS_DB
  definition:
    type: RDBMS
    configuration:
      ...
      connectionInitSql: alter session set NLS_DATE_FORMAT='YYYY-MM-DD HH24:MI:SS'

Perform the above-mentioned configurations and restart the Dashboard nodes and verify the behavior.

Upvotes: 1

Related Questions