Sign inSign up

wso2/wso2ei-analytics

By wso2

•Updated about 8 years ago

WSO2 Enterprise Integrator Analytics

Image
2

301

wso2/wso2ei-analytics repository overview

⁠Quick reference

⁠About Analytics profile of WSO2 Enterprise Integrator

Analytics profile of WSO2 Enterprise Integrator can be used to publish information related to the processing carried out by the different profiles of WSO2 Enterprise Integrator to the Analytics Dashboard.

logo

⁠How to use this image.

⁠Start an Analytics profile instance

The following command starts a Linux Ubuntu-based Analytics profile Docker image.

$ docker run -it -p 9444:9444 --name analytics wso2/wso2ei-analytics:6.3.0

Here, only port 9444 has been mapped to the corresponding Docker host (host machine on top of which containers are spawned) port. You may map other container service ports to Docker host ports as desired.

⁠Accessing management console

To access the management console, use the Docker host IP and port 9444 as follows:

https://{DOCKER_HOST}:9444/carbon

⁠Container shell access and viewing server logs

Assuming you have started a Docker container instance of Analytics profile as instructed in the previous section Start an Analytics profile instance,

  • The Analytics server log is available through Docker's container log:
$ docker logs analytics
  • The Docker exec command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside the container you created:
$ docker exec -it analytics bash

⁠How to update configurations

Configurations would lie on the Docker host machine and they can be volume mounted to the container. As an example, the steps required to change the port offset using carbon.xml is as follows:

  • Stop the Analytics profile container if it's already running.

In the Analytics profile product distribution, carbon.xml configuration file can be found at {DISTRIBUTION_HOME}/conf. Copy the file to a suitable location of the host machine, referred to as {SOURCE_CONFIGS}/carbon.xml and increase the offset value under ports by 1.

  • Grant read permission to other users for {SOURCE_CONFIGS}/carbon.xml.
$ chmod o+r {SOURCE_CONFIGS}/carbon.xml
  • Run the image by mounting the file to the container as follows:
$ docker run -p 9445:9445 --volume {SOURCE_CONFIGS}/carbon.xml:{TARGET_CONFIGS}/carbon.xml wso2/wso2ei-analytics:6.3.0

Here, {TARGET_CONFIGS} refers to /home/wso2carbon/wso2ei-6.3.0/wso2/analytics/conf folder of the container.

⁠Image Variants

⁠wso2ei-analytics:{version}

Ubuntu 18.04 LTS based Docker image with Oracle JDK 8⁠ installed. Analytics profile of WSO2 Enterprise Integrator has been installed on top of this Docker image.

⁠License

View license information⁠ for the software contained in this image.

As with all Docker images, these are likely to contain other software which may be under other licenses (such as Bash, etc. from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Tag summary

Content type

Image

Digest

Size

994.2 MB

Last updated

about 8 years ago

docker pull wso2/wso2ei-analytics:6.3.0