James Newton-King
James Newton-King
There is another DataGrid with an overflow and it is fine. The problem grid has resizable columns. Perhaps resizable columns plus FluentOverflow causes the issue?
Thanks, that's fixed the re-rendering. The re-rendering disappeared for me when I removed key. I'm still observing weird results when displaying content in overflow. For example, the `server.port` row in...
Feel free to close or leave open to investigate.
> What's the metric convention here on names? Based on other top level for process/rpc/etc. I'd naively expect redis. (rather than redis-), am I way off there? There isn't a...
> * redis-operation-count > * redis-completed-asynchronously > * redis-completed-synchronously > * redis-failed-asynchronously > * redis-failed-synchronously You could consider combining these into one histogram counter: `redis-operation-duration`. Then have a dimension for...
How will grpc-trace-bin work? 1. Must both traceparent and grpc-trace-bin headers be present on a gRPC HTTP request? 2. Or is grpc-trace-bin an optional additional for backwards compatibility. Servers check...
Duplicate of https://github.com/dotnet/aspnetcore/issues/54554
Is this a change in behavior? I looked at the PR that added `DiagnosticsTelemetry.ReportUnhandledException` method. The exception was already logged. https://github.com/dotnet/aspnetcore/pull/46834/files#diff-307cb43e0f10bb8837662fc645a7e0cacaefb6560bdba0cdc8e9648bed392fac The only difference is `error.type` tag is added to...
Tags can be added to a meter, instrument, and be provided when adding a value. The meter overload with tags: [Meter ctor](https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics.meter.-ctor?view=net-8.0#system-diagnostics-metrics-meter-ctor(system-string-system-string-system-collections-generic-ienumerable((system-collections-generic-keyvaluepair((system-string-system-object))))-system-object)) Right now, only tags specified when providing a...
I see meter tags are added to the scope. Never mind about them. Instrument tags are still an issue. It doesn't look like their is an attributes field on metrics...