You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/docs/partners/new-relic.mdx
+11-64Lines changed: 11 additions & 64 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,75 +7,21 @@ path: '/docs/partners/newrelic'
7
7
8
8
# Overview
9
9
10
-
:sparkles:**[New Relic offers OTLP (OpenTelemetry Protocol) Ingest as a pre-release! To sign up, click here!](https://forms.gle/fa2pWcQxgVQYMggEA)**:sparkles:
10
+
✨**[New Relic offers OTLP (OpenTelemetry Protocol) Ingest! No exporter is required. To sign up, click here!](https://forms.gle/fa2pWcQxgVQYMggEA)**✨
11
11
12
-
This means you can configure the AWS OpenTelemetry Collector to use the OTLP exporter and no longer need this exporter to send data to New Relic.
13
12
14
-
New Relic's OpenTelemetry Collector Exporter sends `trace`, `metric`, and `log` data from the AWS OpenTelemetry Collector to New Relic. This capability gives you the power of instrumenting your entire stack for complete visibility and interoperability on the New Relic One platform. Use our curated out-of-the-box experiences and flexible visualization tools to quickly gain insight into how all your apps, systems and components are performing.
13
+
New Relic's platform can receive `trace`, `metric`, and `log` data from the AWS OpenTelemetry Collector via OTLP. This capability gives you the power of instrumenting your entire stack for complete visibility and interoperability on the New Relic One platform. Use our curated out-of-the-box experiences and flexible visualization tools to quickly gain insight into how all your apps, systems and components are performing.
15
14
16
15
17
16
## Requirements
18
17
19
18
1. The New Relic OpenTelemetry Collector exporter is included in the AWS OTel Collector. It requires a functioning instance of the AWS OTel Collector to operate.
20
19
2. If you have not already done so, [create your New Relic account](https://docs.newrelic.com/docs/accounts/accounts-billing/account-setup/create-your-new-relic-account).
21
-
3. Create an ingest API key using New Relic’s [API Keys UI](https://one.newrelic.com/launcher/api-keys-ui.api-keys-launcher).
20
+
3. Create an ingest license key using New Relic’s [API Keys UI](https://one.newrelic.com/launcher/api-keys-ui.api-keys-launcher).
22
21
23
22
## Configuration
24
23
25
-
The following configuration must be added to your existing AWS OTel Collector configuration yaml file.
26
-
27
-
1. Add the `newrelic` exporter to the list of configured exporters for traces, metrics, and logs in the `service` section:
28
-
29
-
```yaml
30
-
service:
31
-
pipelines:
32
-
traces:
33
-
exporters: [newrelic]
34
-
metrics:
35
-
exporters: [newrelic]
36
-
logs:
37
-
exporters: [newrelic]
38
-
```
39
-
40
-
2. Add the `newrelic` configuration to the `exporters` section with your New Relic Ingest API Key:
41
-
42
-
```yaml
43
-
exporters:
44
-
newrelic:
45
-
apikey: your_ingest_api_key_goes_here
46
-
```
47
-
48
-
## New Relic Exporter Configuration Options
49
-
50
-
#### apikey (Required)
51
-
52
-
Your New Relic Insights Insert API Key or License Key.
53
-
54
-
#### timeout (Optional)
55
-
56
-
Amount of time spent attempting a request before abandoning and dropping data.
57
-
58
-
Default is 15 seconds.
59
-
60
-
#### Example EU configuration
61
-
62
-
```yaml
63
-
exporters:
64
-
newrelic:
65
-
apikey: super-secret-api-key
66
-
timeout: 30s
67
-
68
-
# host_override is set to send data to New Relic's EU data centers.
69
-
traces:
70
-
host_override: trace-api.eu.newrelic.com
71
-
metrics:
72
-
host_override: metric-api.eu.newrelic.com
73
-
logs:
74
-
host_override: log-api.eu.newrelic.com
75
-
```
76
-
77
-
78
-
## Complete example configuration
24
+
Here's an example OpenTelemetry Collector configuration (OTLP Input OpenTelemetry Collector YAML):
0 commit comments