Skip to main content

Install zymtrace profiler

The zymtrace profiler is a lightweight, OpenTelemetry compliant agent that collects performance profiles from your applications and systems with minimal overhead (<1% CPU and ~256MB RAM ). It can be deployed in various ways to suit your infrastructure needs. This guide covers installation using Kubernetes manifests, Helm charts, Docker containers, or direct binary installation.

As a reminder, the profiling agent runs only on Linux machines and it requires minimum kernel version 4.19 for x86_64, and 5.5 for ARM64

tip

Please review the prerequisites before beginning, particularly if you are working in an airgapped environment.

Installation methods​

Choose the installation method that best suits your environment. Each method provides the same functionality with different deployment characteristics.

The Add Data page provides a guided approach to generating the deployment commands based on your environment.

The profiler agent is deployed as a DaemonSet.

  1. Create a namespace

    kubectl create namespace zymtrace

  2. Create a secret using the credentials we shared

    kubectl create secret docker-registry zymtrace-registry-cred-profiler \
    --namespace=zymtrace \
    --docker-server=ghcr.io/zystem-io \
    --docker-username=<your-username> \
    --docker-password=<your-password>

  3. Deploy

    kubectl apply -n zymtrace -f https://helm.zystem.io/k8s-manifests/profiler/zymtrace-profiler.yaml

tip

Collection Agent Configuration

By default, the collection agent is set to zymtrace-ingest.zymtrace.svc.cluster.local:8375.

If you're installing the profiling agent on a different cluster than the one hosting the backend services, you'll need to modify this setting. In this case, we recommend downloading the configuration file first.

curl -O https://helm.zystem.io/k8s-manifests/profiler/zymtrace-profiler.yaml

Management​

These commands help you monitor and maintain your zymtrace profiler installation. Use them to check the agent's status and logs.

# Check agent status
kubectl get pods -n zymtrace -l app=zymtrace,component=profiler

# View agent logs
kubectl logs -f -n zymtrace -l app=zymtrace,component=profiler