lonix1

Results 448 comments of lonix1

Dupe https://github.com/adminerevo/adminerevo/issues/22

Just a note that the workaround by alexkreskiyan is a temporary fix. What you'll quickly find is that every few months you're going to bump those values higher and higher....

Sorry. I've read docs, blog posts and SO threads for both v7 and v8 - so I guess I've been using those term interchangeably. I'm using Polly v8.

Suppose I'm making requests to an external API. Pipeline example, in order - concurrency limiter: no queuing, one thread ("permit") - chained rate limiter (fixed window per-day and fixed window...

To be honest, I haven't used the telemetry stuff yet, so I can't comment on that. I hope someone with more advanced Polly experience can provide feedback on that. But...

PR: I don't know... I'm still new to Polly and there's many things I don't yet grok. Ordering: I hope I'm not about to derail this thread... Actually I am...

Wow you guys have been [busy](https://github.com/App-vNext/Polly/pull/2346)... so much work! Thanks and sorry for triggering all that effort :smile: I assume you had to change many things in order to support...

Here is a working implementation using the murmur3 algorithm. First install package: ``` dotnet add package murmurhash ``` `EventIdEnricher.cs`: ```cs using System.Text; using Murmur; using Serilog.Core; using Serilog.Events; namespace Serilog.Enrichers;...

## IGNORE THE PREVIOUS IMPLEMENTATION This is the one I now use, which is simpler and does not require external dependencies. ### Reference hashing algorithm Reference either `Serilog.Formatting.Compact` or `Serilog.Expressions`;...