Back to Manual
🔌integrations/manual configuration

manual configuration

if you cannot use iocane connect (e.g., custom k8s deployments or bare metal), configure your opentelemetry collector to export to the iocane managed platform manually.

reference otel-collector-config.yaml:

yaml
exporters:
  otlphttp/iocane:
    endpoint: "https://api.iocane.ai/v1/traces"
    headers:
      x-ati-env: "${IOCANE_ENV_ID}"       # your environment id
      x-iocane-key: "${IOCANE_API_KEY}"   # your active api key
    compression: none
    encoding: json

service:
  pipelines:
    traces:
      receivers: [otlp]
      exporters: [otlphttp/iocane]
  1. get env id: run iocane status or check the dashboard url (last segment).
  2. get api key: run iocane connect (it will print/save the key) or check your organization settings.