LogoLogo
  • Overview
    • Introduction
    • Getting Started
    • Nimbus Hub
    • Log Optimization
      • Reduce Optimizations
      • Lint Optimizations
    • Working with NTL
      • Working with Transforms
    • Working with Aggregated Logs
    • Examples
    • Concepts
    • FAQ
    • Architecture
  • Additional Features
    • Configuration Overrides
    • Pause All
    • Error Detection
    • Private Link
  • Integrations
    • Datadog
      • AWS Lambda Extension
      • AWS Lambda Forwarder
      • DD Agent
      • DD Log Forwarding Destination
      • Heroku
      • Journald
      • OpenTelemetry
  • Resources
    • Nimbus Attributes
    • Changelog
    • SLA
    • Bug Bounty
    • Support
  • Preview Features
    • Metric Optimization
    • Datadog CLI
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Integrations
  2. Datadog

OpenTelemetry

This guide goes over integrating Nimbus with the OpenTelemetry Collector.

Steps

  1. In your OTEL collector, add an otlphttp exporter - replace $API_KEY with your Nimbus API key

exporters:
  otlphttp/nimbus:
    endpoint: https://$API_KEY-otlp-intake.logs.us1.nimbus.dev:443
  1. Add the otlphttp exporter to any existing pipeline that processes logs

service:
  pipelines:
    ...
    $YOUR_PIPELINE:
      ...
      exporters: [..., otlphttp/nimbus]
  1. Reload existing collectors with the new configuration.

  2. That's it - you're done. Nimbus is now optimizing your logs!

Last updated 1 year ago

Was this helpful?