Verify Worker Deployment

After the Availability On-premise Vantage Point Worker, also known as Worker, is deployed, go to Availability Monitoring and click On-premise Vantage Points from the left pane. The worker is listed on the On-premise Vantage Points page.
Note

To verify if the on-premise vantage point is ready to be used, go to the Monitors page, click Create Monitor, and on the Run Settings page in the Create Monitor wizard, confirm that the newly created on-premise vantage point is listed in the Vantage Points drop-down list. For information on creating a monitor, see Create a Monitor.

Verify the Worker Deployment on Standalone Compute

To verify the deployment on standalone host, do the following:
  • Check if the container is running.
    • For Docker or Colima container, run the following:
      docker ps
    • For Podman container, run the following:
      podman ps
  • Check the container logs.
    • For Docker or Colima container, run the following:
      docker logs <containerId or worker name>
    • For Podman container, run the following:
      podman logs <containerId or worker name>
    If the Worker is created successfully, the last line of the logs should look like the following:
    Created worker with ocid: <generated ocid>

Verify the Worker Deployment on Kubernetes

To verify the deployment on Kubernetes, do the following:
  • Check the container logs.
    kubectl -n <namespace> logs <podId>
    If the Worker is created successfully, the last line of the logs should look like the following:
    Created worker with ocid: <generated ocid>
  • Check if the chart is installed in the namespace by running following helm command:
    helm ls --namespace <namespace>

    The chart status should be reported as DEPLOYED.

  • Check the status of the deployed helm chart by running following helm command:
    helm status <release-name> --namespace <namespace>

    The chart status should be reported as DEPLOYED and Pod(s) status should be reported as Running.

  • Check if the Worker Pod(s) is/are started:
    kubectl -n <namespace> get pods

    All Pods should be reported as Ready 1/1 and status Running.

  • Check the Worker log:
    kubectl -n <namespace> exec -it <any_pod_name> -- bash
    tail -f /workers/logs/application.0.log

Verify the Worker Deployment on Container Instances

To verify the deployment on Container Instances, do the following:

  • Open the navigation menu and click Developer Services. Under Containers & Artifacts, click Container Instances.
  • Under List Scope, select the compartment that contains the container instance. After, click the name of the container instance that you're interested in.
  • Under Resources, click on Containers. Then, click the name of the container that you're interested in.
  • Click on the View logs.

    If below line is found in the logs, then the Worker is created successfully:

     Created worker with ocid: <generated ocid>