Cijo Thomas
Cijo Thomas
### Package OpenTelemetry.Exporter.Console ### Is your feature request related to a problem? ```txt Metric Name: MyFruitCounter (2025-07-17T15:41:35.8540540Z, 2025-07-17T15:41:35.8580300Z] color: red name: apple Metric Type: LongSum Value: 6 Instrumentation scope (Meter):...
`opentelemetry-appender-tracing` crate currently converts `tracing` events to OpenTelemetry `LogRecord`s but ignores span context. We should include span attributes in the `LogRecord` attributes when events are emitted within an active span...
Opening an issue to track adding the suggestion from here: https://github.com/open-telemetry/opentelemetry-rust/pull/1361#issuecomment-1809429385
Once https://github.com/open-telemetry/opentelemetry-specification/pull/4715 is merged. We can follow the process done for jaeger exporter. (Just like jaeger, we never had a stable release of Zipkin exporter, but still should give some...
https://github.com/open-telemetry/opentelemetry-rust/pull/3246#issuecomment-3543786735
Improved logging 1. Interceptor failures are logged separately from export failures. Built-in interceptor simply adds Metadata, and has no scope of failure, so if this fails, it indicates user has...
One way of addressing https://github.com/open-telemetry/opentelemetry-rust/issues/2877 This PR does not introduce a “fix” inside the OTLP Exporters themselves, but instead demonstrates how users can address the issue without requiring changes in...
Trying to add few tutorial, starting with basic Tracing and Jaeger. If there is interest, I want to expand this to cover all signals and scenarios. This can be ported...
WIP. We already have some docs for metrics, this is adding mostly placeholder for logs, and some guidance into traces. Not intended to be running examples, but more like setting...
OTLP Exporters are quite heavy in terms of allocations today. In-Memory Log/Span/Metric is converted to tonic/proto Structs, which requires ownership and forces clone. This is serialized into vec The compression...