Metrics.Client 2.1.0

dotnet add package Metrics.Client --version 2.1.0
                    
NuGet\Install-Package Metrics.Client -Version 2.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Metrics.Client" Version="2.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Metrics.Client" Version="2.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Metrics.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Metrics.Client --version 2.1.0
                    
#r "nuget: Metrics.Client, 2.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Metrics.Client@2.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Metrics.Client&version=2.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Metrics.Client&version=2.1.0
                    
Install as a Cake Tool

Metrics.Client

Lightweight Prometheus metrics for ASP.NET Core services. Auto-collects HTTP request duration, request count, and active requests with low-cardinality labels.

Quick Start

using Metrics.Client.Extensions;

var builder = WebApplication.CreateBuilder(args);

// Add Prometheus metrics
builder.AddPrometheusMetrics(opts => opts.ServiceName = "MyService");

var app = builder.Build();

// Use Prometheus metrics middleware + /metrics endpoint
app.UsePrometheusMetrics();

await app.RunAsync();

Metrics Collected

Metric Type Labels Description
http_requests_total Counter app, method, http_route, status_code Total HTTP requests processed
http_request_duration_seconds Histogram app, method, http_route, status_code Request duration in seconds
http_requests_in_flight Gauge app Currently processing requests
http_unmatched_requests_total Counter app, method Requests that matched no route
canary_http_requests_total Counter app, method, status_code HTTP requests tagged as in-cluster E2E canary traffic

⚠️ Breaking changes in 2.0.0

1. Labels renamed: serviceapp, endpointhttp_route.

Under Kubernetes service discovery, Prometheus attaches its own target labels named service (the k8s Service) and endpoint (the port name). Ours collided, so Prometheus silently renamed ours to exported_service / exported_endpoint — and a dashboard grouping by the natural-looking endpoint was really bucketing everything into the port number "8080". No error; just a wrong, plausible graph. The new names cannot collide with Prometheus target labels.

Update queries: endpoint (or exported_endpoint) → http_route; exported_serviceapp. Note that sum by (service) keeps working — that resolves to Prometheus' own target label, which this package does not touch.

2. Unmatched requests no longer record the requested URL.

http_route was previously the RAW request path whenever a request matched no route, which made the label unbounded — every 404 URL minted a permanent series at ~14 series each (counter + 11 histogram buckets + sum + count). It now records the literal "unmatched", and the rate is preserved separately in http_unmatched_requests_total. Alert on that counter rather than on 404 paths:

# a client is calling a route that no longer exists
sum by (app) (rate(http_unmatched_requests_total[5m])) > 1

3. prometheus-net's built-in UseHttpMetrics() is no longer registered.

It was registered alongside this package's middleware, so every request was measured twice — and since both write http_request_duration_seconds under incompatible label schemas (code,method,endpoint vs ours), the result was ~2x the series and a silent double-count in any query summing that metric. http_requests_received_total and http_requests_in_progress are therefore no longer emitted; use http_requests_total and http_requests_in_flight. To keep the built-in, call app.UseHttpMetrics() yourself after UsePrometheusMetrics().

Canary traffic

canary_http_requests_total is a separate, low-cardinality counter for in-cluster E2E canary traffic (the X-Canary-Run-Id header + superUser JWT flow from Canary.AspNetCore). It is incremented only when the request was auth-validated as canary (ICanaryRunContext.IsCanary == true) — never on mere header presence.

It is deliberately a separate series rather than a canary label on http_requests_total (which would double that metric's series count), and deliberately omits the http_route label to keep cardinality minimal.

This powers a Grafana "Canary Activity" dashboard and lets SLO dashboards default-exclude canary noise, e.g.:

# Real (non-canary) request rate per app
sum by (app) (rate(http_requests_total[5m]))
  - sum by (app) (rate(canary_http_requests_total[5m]))

Consuming services pick this up automatically — no wiring change is needed beyond the existing UsePrometheusMetrics() call, provided UseCanaryAuth() is registered after it (the standard pipeline order).

The canary integration is optional. Canary.AspNetCore wiring is not required for this package to work: a service that calls AddPrometheusMetrics() without AddCanaryAuth() records all HTTP metrics normally and simply never emits canary_http_requests_total.

Fixed in 1.2.1. In 1.2.0 and earlier this was not true. The middleware declared InvokeAsync(HttpContext, ICanaryRunContext), and ASP.NET Core resolves such parameters with GetRequiredService before the method body runs — so a service wiring metrics but not canary threw InvalidOperationException on every request, including /health/live and /metrics (the skip logic for those paths sits after the resolution point). If you are on ≤ 1.2.0, either upgrade or make sure you also call AddCanaryAuth().

Configuration

Via appsettings.json:

{
  "Metrics": {
    "ServiceName": "MyService",
    "Enabled": true,
    "MetricsPath": "/metrics"
  }
}

Or programmatically:

builder.AddPrometheusMetrics(opts =>
{
    opts.ServiceName = "MyService";
    opts.Enabled = true;
});

Prometheus Scrape Config

scrape_configs:
  - job_name: 'my-service'
    static_configs:
      - targets: ['my-service:8080']
    metrics_path: /metrics

Design Decisions

  • Bounded cardinality: http_route is ALWAYS a route template or the literal "unmatched" — never a raw path. This is the invariant the package exists to hold; a raw-path fallback is what made the label unbounded before 2.0.0
  • Health/metrics excluded: Health check and metrics endpoints are not tracked to avoid noise
  • Lightweight: No-op overhead when requests hit excluded paths
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Metrics.Client:

Package Downloads
Bff.AspNetCore

Reusable Backend-For-Frontend engine for ASP.NET Core. Terminates auth server-side: holds OIDC tokens in a Redis-backed session, hands the browser only an opaque httpOnly cookie, and forwards Bearer tokens to downstream services via YARP. Provider-agnostic — targets Keycloak (default, realm-scoped) or a generic OpenIddict provider (/connect/*), selectable per app. Server-side ROPC (Keycloak) or authorization-code + PKCE, silent refresh with a per-session SETNX lock, and CSRF protection. A per-app BFF becomes a ~20-line Program.cs.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.0 127 8/23/2026
2.0.0 811 8/16/2026
1.2.1 245 7/19/2026
1.2.0 186 5/15/2026
1.1.0 110 5/6/2026