Matisse Hack

Results 21 comments of Matisse Hack

It definitely makes sense that I need to opt in to collecting `Azure.*` spans! I'd just like to minimize interference with with other telemetry sources I've subscribed to. e.g. `builder.AddSource("OpenTelemetry.Instrumentation.Http")`....

The orphaned dotnet processes have gotten slightly worse for me recently. I now have to "force quit" the dotnet processes to get them to stop. For others still encountering this...

I can reproduce this issue with both Jupyter `.ipynb` files (e.g. using a Python kernel) and Polyglot `.dib`/`.ipynb` files. However, I was surprised to find that it's easier to reproduce...

Yes, after updating .NET and the OpenTelemetry and Azure SDKs I'm now getting the `OpenTelemetry.Instrumentation.Http` spans again! Not sure exactly which update did the trick, but it's working as expected...

I'm in the same boat! I handle authentication with a pre-request script, which isn't called when loading a GraphQL schema through introspection. I see there was a PR to resolve...

Having a `Set` method on `UpDownCounter`s would be really useful for my team! We maintain an event driven service and would like to track various metrics related to each event....

I would really love to see this feature come to fruition! My team maintains a service with a very bursty usage pattern and we loose a lot of fidelity in...

Do you mean that `-maxCpuCount` should work as a parameter to `dotnet vstest`? I got an error when I tried that: ``` The argument -maxCpuCount:1 is invalid. Please use the...

> What worked for me to fix the colors on the RTS engine was setting a light theme for the dark color scheme of Syntax Highlighter (basically inverting the colors...

FWIW, it's pretty easy to generate JWTs with [Microsoft.IdentityModel.JsonWebTokens](https://www.nuget.org/packages/Microsoft.IdentityModel.JsonWebTokens) if you'd prefer to take a dependency on a more "official" library: ```csharp using System.Security.Cryptography; using Microsoft.IdentityModel.JsonWebTokens; using Microsoft.IdentityModel.Tokens; string CreateJsonWebToken(string...