Skip to content

Commit

Permalink
Scrape LogLevelMetrics on dispose
Browse files Browse the repository at this point in the history
  • Loading branch information
HolyPrapor committed Oct 14, 2021
1 parent f8737b3 commit 8f4b91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vostok.Hosting/Components/Log/LogLevelMetrics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static IDisposable Measure(LogEventLevelCounter counter, IVostokApplicati
return context.Instance
.WithTag(WellKnownTagKeys.Component, "VostokLog")
.WithTag(WellKnownTagKeys.Name, "EventsByLevel")
.CreateMultiFuncGauge(new LogLevelMetrics(counter).ProvideMetrics)
.CreateMultiFuncGauge(new LogLevelMetrics(counter).ProvideMetrics, new FuncGaugeConfig {ScrapeOnDispose = true})
as IDisposable;
}

Expand Down

0 comments on commit 8f4b91f

Please sign in to comment.