Skip to content

prom-client-net/prom-client-owin

Repository files navigation

Prometheus.Client.Owin

ci nuget nuget license

Extension for Prometheus.Client

Installation

dotnet add package Prometheus.Client.Owin

Use

Examples

public void Configuration(IAppBuilder app)
{
    app.UsePrometheusServer();
}
public void Configuration(IAppBuilder app)
{
    app.UsePrometheusServer(q =>
    {
        q.MapPath = "/api/metrics";
    });
}

Contribute

Contributions to the package are always welcome!

License

All contents of this package are licensed under the MIT license.