Exporting logs
#1535
Replies: 1 comment 1 reply
-
Using a Centralized Logging System (Production-Grade) for scalable, persistent, searchable logs: Popular logging stacks: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Ask a question
What have you been using for exporting logs?
Im using Karavan Kubernetes and would like to export logs via OTLP to my OTLP Collector, just like traces, but haven't figured out how to...
These dependencies and configurations below make trace exporting works, but no logs:
application.properties:
...
camel.jbang.dependencies=mvn:io.opentelemetry:opentelemetry-exporter-otlp:1.9.1,mvn:io.opentelemetry:opentelemetry-sdk-extension-autoconfigure:1.9.1-alpha,camel-console,camel-platform-http-main,camel-observability-services
camel.opentelemetry.enabled=true
camel.metrics.enabled=true
camel.metrics.enableMessageHistory=true
camel.metrics.binders=processor,jvm-info,file-descriptor,jvm-gc,jvm-heap-pressure,jvm-memory,jvm-thread,uptime
camel.server.metricsEnabled=true
...
deployment.jkube.yaml
...
env:
- name: JAVA_TOOL_OPTIONS
value: >
-Dotel.java.global-autoconfigure.enabled=true
-Dotel.metrics.exporter=otlp
-Dotel.traces.exporter=otlp
-Dotel.logs.exporter=otlp
-Dotel.exporter.otlp.endpoint=http://otel-collector.monitoring:4317
-Dotel.service.name=exemplo-camel
-Dotel.instrumentation.runtime-metrics.enabled=true
-Dotel.instrumentation.jvm-metrics.enabled=true
...
Variant
None
Container Management (if applicable)
None
Operating System (if applicable)
None
Version
None
Beta Was this translation helpful? Give feedback.
All reactions