github.com/observiq/bindplane-agent@v1.51.0/config/new_relic_otlp/README.md (about) 1 # New Relic OTLP Exporter Prerequisites 2 3 New Relic supports native ingestion of OTLP telemetry. The [Open Telemetry OTLP gRPC exporter](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/otlpexporter) can be used to send metrics, logs, and traces to New Relic. 4 5 ## Prerequisites 6 7 **Endpoint** 8 9 Update the exporter configuration's `endpoint` value with the New Relic OTLP endpoint you wish to send metrics to. 10 - https://otlp.nr-data.net:443 11 - https://otlp.eu01.nr-data.net:433 12 - https://gov-otlp.nr-data.net:443 13 14 You can read more [here](https://docs.newrelic.com/docs/more-integrations/open-source-telemetry-integrations/opentelemetry/opentelemetry-setup/). 15 16 **API Key** 17 18 You must have an API Key capable of writing telemetry to the OTLP endpoint. You can read more [here](https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/). 19 20 ## Example Config 21 22 Using the `endpoint` and `api-key` values from the Prerequisites step, configure the exporter. 23 24 ```yaml 25 exporters: 26 otlp: 27 endpoint: https://otlp.nr-data.net:443 28 headers: 29 api-key: 00000-00000-00000 30 tls: 31 insecure: false 32 ```