Mikel Blanchard
Mikel Blanchard
Thank you @PeterOscarsson! I opened this issue over in Unity: https://github.com/unitycontainer/microsoft-dependency-injection/issues/96 I'm not opposed to just switching to an interface but I figured it would be good to gather their...
@brnn8r Could you just do this instead? ```csharp services .AddOptions() .Configure((o, sp) => { o.HttpClientFactory = () => sp.GetRequiredService().CreateClient("MyOtlpClient"); }); ```
Thanks for this report @julealgon! > If for whatever reason the current project did not use .AddEnvironmentVariables without a prefix in the host setup, the setting is ignored completely. There...
Dang there's a lot to unpack 🤣 I want to talk about the `IConfiguration` and hosting dependency referenced above a bit. I think there might be some confusion about what...
I agree with most of this. The part I don't agree with is that in cumulative we should ever reset `num_measurements_seen`. In cumulative IMO once the `SimpleFixedSizeExemplarReservoir` fills up, we...
I don't see how your logic solves anything. Let's say my app gets very busy and I fill up a `SimpleFixedSizeExemplarReservoir` with 10 exemplars: `[A, B, C, D, E, F,...
> Is this really what they want? They want measurements from previous collections even though there have been hundreds more? TBH, I don't know 😄 The spec does say... >...
@jmacd I'm happy to work on this with you but I'll admit, a lot of that went over my head 🤣 Let me put down what I think you are...
I just updated the description for the plan @cijothomas and I have worked out for 1.9.0 and releasing `Exemplar`s stable. We decided to stay close to what the spec has...
@brentschmaltz Not exactly. Let's say my extension is: ```csharp namespace Company.Extensions { public static class EnumerableExtensions { public static bool IsNullOrEmpty(this IEnumerable enumerable) { ... } } } ``` I...