Setting up TIBCO BusinessWorks Container Edition Application Monitoring on Kubernetes
The following steps describe how to set up theTIBCO BusinessWorks Container Edition application on Kubernetes.
Before you begin Download the
bwce_mon-<version>.zip
TIBCO BusinessWorks Container Edition monitoring zip file from
http://edelivery.tibco.com.
- Procedure
- Extract the
bwce_mon-<version>.zip
file. - Navigate to the
bwce_mon directory and build the docker image by running the following command.
docker build -t bwce/monitoring:latest.
- Tag the monitoring application image by running the following command:
docker tag <monitoring_application_name> your_docker_container_registry/<your_project_name>/<monitoring_application_name>
- Push your monitoring application image to the Docker Container Registry. For example, to push your monitoring application docker image on the Google Cloud Registry, run the following command:
gcloud docker -- push gcr.io/<your_project_name>/<monitoring_application_name>
- Confirm that the image is present in the Docker Container Registry.
- Create the
manifest.yml file and update the monitoring application image name. Ensure that the image name follows the following format:
<your_docker_container_registry>/<your_gcloud_project_name>/<monitoring_application_image_name>
- To configure a monitoring application with an external database, add the following two environment variables to the
manifest.yml file.
- PERSISTENCE_TYPE
- DB_URL
The below sample is of amanifest.yml file:
apiVersion: v1 kind: Service metadata: name: <monitoring_image> labels: app: <monitoring_image> spec: type: LoadBalancer ports: - port: 80 targetPort: 8080 selector: app: <monitoring_image> --- apiVersion: v1 kind: ReplicationController metadata: name: <monitoring_image> spec: replicas: 1 selector: app: <monitoring_image> template: metadata: name: <monitoring_image> labels: app: <monitoring_image> spec: containers: - name: <monitoring_image> image: gcr.io/<project_name>/<monitoring_image> resources: limits: memory: 512Mi requests: memory: 512Mi imagePullPolicy: Always env: - name: PERSISTENCE_TYPE value:postgres - name: DB_URL value: postgres://<DB_USERNAME>:<PASSWORD>@<DB_IP>:<DB_PORT>/<DB_NAME> ports: - containerPort: 8080
- To create the monitoring service and replication controller, run the following command:
kubectl create -f manifest.yml
Note: Please find the monitoring sample manifest file for configuring the two environment variables.- PERSISTENCE_TYPE
- DB_URL
- To verify that the monitoring application has started successfully, run the following command:
kubectl logs pod-name
- To get the external IP of the running monitoring service, run the following command:
kubectl get svc
Access the monitoring dashboard in the browser by using the external IP.