Mikel Blanchard
Mikel Blanchard
The [MeterProvider does a really good job of logging its state](https://github.com/open-telemetry/opentelemetry-dotnet/blob/872a52f5291804c7af19e90307b5cc097b2da709/src/OpenTelemetry/Metrics/MeterProviderSdk.cs#L96) when it is constructed. We should do the same in the TracerProvider[Sdk]. The idea is this will help troubleshoot...
Question posted on #3546 by @pdonovan: > Not sure the best place to ask this... but when we should end-users (e.g. myself) expect to get a prerelease NuGet package for...
## Changes Updated to target `net462` and OTel 1.3.1 SDK See https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/652#issuecomment-1252723191 /cc @Kielek * [X] Appropriate `CHANGELOG.md` updated for non-trivial changes
Resolves #1448 For consideration... * Added `Script`, `Keys`, and `Values` to the `IProfiledCommand` interface so that profilers/tracers have more data to play with. * Added `IsFaulted` and `Exception` to the...
## Description The `ILogger` extensions and source generator return the [original template logged as the {OriginalFormat} key on the IReadOnlyList state](https://github.com/dotnet/runtime/blob/9cafe8f23295b5c7f4718eaaebee6dddc2e7dda6/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/FormattedLogValues.cs#L69) representing the log being written. AspNetCore has a couple...
Following up on: https://github.com/open-telemetry/opentelemetry-dotnet/pull/5328/files#r1484926302 ## Changes * Updated and moved the cardinality overflow example we used to have in "customizing-the-sdk" into main metrics doc.
Relates to #5137 Relates to #5265 Relates to #5648 ## Changes * Adds `OpenTelemetrySdk` API. ## Details #5265 laid the groundwork for cross-cutting extensions (ex #5400). The issue is (currently)...
[Most of this first appeared on #5131] ## Changes * The goal of this work is to simplify the metrics implementation inside the SDK. It removes concepts like "single stream"...
The OpenTelemetry SDK Specification for [MetricReader](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk.md#metricreader) says a default cardinality should be possible to specify during construction: > Status: [Experimental](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/document-status.md) - The default aggregation cardinality limit to use, a function...
Fixes #3257 Alternative design #5208 [Note: The "attach" name is taken from [Otel Specification > Context > Optional Global operations](https://github.com/open-telemetry/opentelemetry-specification/tree/main/specification/context#optional-global-operations)] ## Goals The goal here is to introduce an API...