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
[Oracle Cloud Infrastructure Application Performance Monitoring(APM) service](https://docs.oracle.com/en-us/iaas/application-performance-monitoring/home.htm) natively supports and can ingest OpenTelemetry (OTLP) spans and metrics. Traceloop's OpenLLMetry library enables instrumenting LLM frameworks and applications in Open Telemetry format and can be routed to OCI Application Performance Monitoring for observability and evaluation of LLM applications.
12
+
13
+
## Initialize and export directly from application code
export TRACELOOP_HEADERS="Authorization=dataKey <OCI APM Private Data Key>"
35
+
```
36
+
37
+
## Using an OpenTelemetry Collector
38
+
If you are using an OpenTelemetry Collector, you can route metrics and traces to OCI APM by simply adding an OTLP exporter to your collector configuration.
"Authorization": "dataKey <OCI APM Private Data Key>"
53
+
service:
54
+
pipelines:
55
+
traces:
56
+
receivers: [otlp]
57
+
processors: [batch]
58
+
exporters: [otlphttp/apm]
59
+
```
60
+
61
+
For more information check out the [docs link](https://docs.oracle.com/en-us/iaas/application-performance-monitoring/doc/configure-open-source-tracing-systems.html#GUID-4D941163-F357-4839-8B06-688876D4C61F).
0 commit comments