Analytics Solutions refer to WSO2 SP solutions pre-designed to work with other WSO2 products. The following solutions are currently supported.
- EI-Analytics
- APIM-Analytics
- IS-Analytics
At a given time, you can run one or more of these solutions in your WSO2 SP server. To specify the Analytics Solutions you want to configure, edit the <SP_HOME>/conf/<PROFILE>/deployment.yaml
file as follows:
<PROFILE>
refers to dashboard
, editor
, manager
and worker
profile directories. Each of these directories contain a deployment.yaml
file and all of them need to be edited when you enable/disable solutions.
Under the
# Carbon Configuration Parameters
section andwso2.carbon
subsection, add a new subsection named#server type
as shown below:# Carbon Configuration Parameters wso2.carbon: # server type
- Under #
server type
, add a parameter namedtype
. The value depends on the solutions you want to enable in your SP server. Possible values are as follows:-
wso2-sp
: This allows you to enable multiple Analytics Solutions in your SP server. In addition, you can also deploy custom Siddhi applications and other custom SP artifacts to implement your own SP solutions. wso2-apim-analytics
: This only allows you to run the APIM Analytics solution in your SP server. When this value is specified, all the artifacts related to the APIM Analytics Solution are deployed and you cannot deploy any other Siddhi application in the SP server.-
wso2-ei-analytics
: This only allows you to run the EI Analytics solution in your SP server. When this value is specified, all the artifacts related to the EI Analytics Solution are deployed and you cannot deploy any other Siddhi application in the SP server. wso2-is-analytics
: This only allows you to run the IS Analytics solution in your SP server. When this value is specified, all the artifacts related to the IS Analytics Solution are deployed and you cannot deploy any other Siddhi application in the SP server.
e.g., If you want to run multiple Analytics Solutions in your SP server, this parameter can be configured as follows:
# Carbon Configuration Parameters wso2.carbon: # server type type: wso2-sp
-
To enable the required Analytics Solutions, add a new subsection under the
# Carbon Configuration Parameters
section namedanalytics.solutions
, and enable the required solutions as shown in the example below:# Carbon Configuration Parameters wso2.carbon: # server type type: wso2-sp analytics.solutions: IS-analytics.enabled: false APIM-analytics.enabled: true EI-analytics.enabled: true
In this example, only the APIM Analytics is enabled by setting the
APIM-analytics.enabled:
paramater totrue
.