Cijo Thomas
Cijo Thomas
Mentioned here : https://github.com/open-telemetry/opentelemetry-rust/pull/1997/files#r1707954979 I wonder if should even remove SeverityText from `LogRecord` itself to reduce the size of LogRecord. I am not aware of any use case where user...
TODO: Add details here. Only applicable to Observable instruments + when View is used to drop attributes. So low priority for GA release.
As https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-sdk/benches/log.rs#L52 line is executed repeatedly for each iteration, the cost that the benchmark measures include the cost of creating Provider itself. It could be minor, but we should only...
Opening an issue to track issues/fixes for BatchExportProcessor 1. We currently duplicate entire logic for Span and Logs. It might be possible to do a `BatchExportProcessor` where T can be...
Opening a parent issue to track making it possible to do OTel Logging with zero heap allocation. This requires support from 1. Logging library (`tracing` is used as example, which...
LogRecord currently [exposes attributes as a `Vec` ](https://github.com/open-telemetry/opentelemetry-rust/blob/main/opentelemetry-sdk/src/logs/record.rs#L37), which would prevent us from changing the implementation later without breaking processors/exporters. We can expose iterators only for attributes, allowing us the...
Spec requires Meter, Tracer(ActivitySource) to have a 3rd parameter schemaUrl. https://github.com/open-telemetry/opentelemetry-specification/pull/1666/files As both these classes are part of .NET Runtime, we need to request this change in .NET Runtime repo....
[This example class](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/docs/trace/extending-the-sdk/MyExporterExtensions.cs) is not demonstrating the new capabilities recommended in https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/docs/trace/extending-the-sdk#registration-extension-method-guidance-for-library-authors
https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#jaegerremotesampler
Child of overall [Views feature](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2359) This is to track supporting changing Aggregation type using Views. (eg: User wants to aggregate Gauge as Histogram etc.)