Skip to content

Instantly share code, notes, and snippets.

@JonasMH
JonasMH / HealthMetricsHostedService.cs
Last active April 1, 2019 22:56
Reporting Service for Microsoft.Extensions.Diagnostics.HealthChecks -> App Metrics
using App.Metrics;
using App.Metrics.Gauge;
using Microsoft.Extensions.Diagnostics.HealthChecks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Threading;
using System.Threading.Tasks;
namespace JonasMH.AspNetCore