Skip to main content

Express

# Flagship install — the chart is published to GHCR as an OCI artifact,
# eBPF auto-discovers your services. No repo to add.
helm install avuruobs oci://ghcr.io/avuruvision/charts/avuruobs \
--version <X.Y.Z> -n avuruobs --create-namespace

# Point apps at the gateway (OTLP):
# http://avuruobs-gateway:4318 (HTTP)
# http://avuruobs-gateway:4317 (gRPC)

# Open the UI:
kubectl -n avuruobs port-forward svc/avuruobs-ui 8080:80

Use the OpenTelemetry Node SDK auto-instrumentation and point the exporter at the gateway:

export OTEL_EXPORTER_OTLP_ENDPOINT=http://avuruobs-gateway:4318
export OTEL_SERVICE_NAME=api
node --require @opentelemetry/auto-instrumentations-node/register server.js

:::note This page is expanding A full worked example mirrors the Spring page. :::