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
|`@opentelemetry/instrumentation-http`| Logs all HTTP calls |
133
+
|`@prisma/instrumentation`| Logs all Prisma calls, you need to [enable tracing](https://github.com/prisma/prisma/tree/main/packages/instrumentation)|
134
+
|`@traceloop/instrumentation-openai`| Logs all OpenAI calls |
135
135
136
136
<Note>
137
137
`@opentelemetry/instrumentation-fs` which logs all file system calls is currently not supported.
138
138
</Note>
139
139
140
-
### Exporters
140
+
### Telemetry Exporters
141
141
142
-
You can also configure custom exporters to send your telemetry data to other services. For example, you can send your logs to [Axiom](https://axiom.co/docs/guides/opentelemetry-nodejs#exporter-instrumentation-ts):
142
+
You can also configure custom telemetry exporters to send your traces and logs to other external services. For example, you can send your logs to [Axiom](https://axiom.co/docs/guides/opentelemetry-nodejs#exporter-instrumentation-ts). First, add the opentelemetry exporter packages to your package.json file:
Make sure to set the `AXIOM_API_TOKEN` and `AXIOM_DATASET` environment variables in your project.
170
189
190
+
<Note>
191
+
The `logExporters` option is available in the v4 beta SDK. See our [v4 upgrade
192
+
guide](/upgrade-to-v4) for more information.
193
+
</Note>
194
+
195
+
It's important to note that you cannot configure exporters using `OTEL_*` environment variables, as they would conflict with our internal telemetry. Instead you should configure the exporters via passing in arguments to the `OTLPTraceExporter` and `OTLPLogExporter` constructors. For example, here is how you can configure exporting to Honeycomb:
We currently only officially support the `node` runtime, but you can try our experimental `bun` runtime by setting the `runtime` option in your config file:
0 commit comments