Mikel Blanchard
Mikel Blanchard
I think if the goal is to define a "standard" spot for message template(s) we should approach this through the OpenTelemetry Specification. /cc @alanwest
@shamsipav First a warning... > **Warning** > Don't do this it is super bad for perf. ASP.NET Core tries really hard to not buffer into memory to achieve great throughput....
Just FYI 1.4.0 SDK is introducing an updated pattern which allows better integration than what `IDeferredMeterProviderBuilder` can provide. I would recommend using [OpenTelemetry.Exporter.Prometheus.AspNetCore](https://github.com/open-telemetry/opentelemetry-dotnet/blob/1c69788184befa628e5833439467fbb55b7d2b94/src/OpenTelemetry.Exporter.Prometheus.AspNetCore/PrometheusExporterMeterProviderBuilderExtensions.cs#L56-L76) as a guide for this effort. Instead...
[Cross-linking] Over on https://github.com/open-telemetry/opentelemetry-dotnet-contrib/issues/1610 the suggestion is `OpenTelemetry.ResourceDetectors.[ComponentName]` -> `OpenTelemetry.Resource.[ComponentName]` or `OpenTelemetry.Resources.[ComponentName]`
Tagging #5423 which is related to this effort.
Yes you can set via `OTEL_EXPORTER_OTLP_ENDPOINT` or if using the json: ```json { "opentelemetry_otlpexporter": { "DefaultOptions": { "Protocol": "HttpProtobuf", "Endpoint": "http://otlp_endpoint/" // Note: We will append the signal path automatically...
I left some "TODOs" in the code but here are some thoughts/questions I had working on this initially: * Should we set end time as soon as the instrument is...
Update... After this issue was opened we reverted some of the fixes/changes that were on #4958. At the moment the SDK is still removing and recreating `Metric` instances when something...
@joegoldman2 There are a couple reasons why I didn't add this initially and why I'm hesitant to do it now. 1) The darn compiler! If we had these: ```csharp public...
> Could you explain how this will be handled > > ``` > using var openTelemetry = OpenTelemetrySdk.Create(builder => builder > .ConfigureResource(r => r.AddService("MyService")) > .AddOtlpExporter() // (Future thing) >...