HangfireIO / Hangfire

An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
https://www.hangfire.io
Other
9.43k stars 1.71k forks source link

Why hangfire not use meter for metrics #2403

Open careless6666 opened 6 months ago

careless6666 commented 6 months ago

Now we have metrics in dashboard, but if we want reuse this metrics in our alerts, we have to write our custom metrics, but if hangfire moves to microsoft class Meter, we can reuse it for our alerts

As example, for npgsql we just write

builder
    .AddMeter(DiagnosticsConfig.DefaultMeterName)
    .AddMeter("Npgsql")