aspnetcore/release-notes/aspnetcore-10/includes/identity-metrics.md
ASP.NET Core Identity observability has been improved in .NET 10 with metrics. Metrics are counters, histograms, and gauges that provide time-series measurements of system or application behavior.
For example, use the new ASP.NET Core Identity metrics to observe:
The new metrics are in the Microsoft.AspNetCore.Identity meter:
aspnetcore.identity.user.create.durationaspnetcore.identity.user.update.durationaspnetcore.identity.user.delete.durationaspnetcore.identity.user.check_password_attemptsaspnetcore.identity.user.generated_tokensaspnetcore.identity.user.verify_token_attemptsaspnetcore.identity.sign_in.authenticate.durationaspnetcore.identity.sign_in.check_password_attemptsaspnetcore.identity.sign_in.sign_insaspnetcore.identity.sign_in.sign_outsaspnetcore.identity.sign_in.two_factor_clients_rememberedaspnetcore.identity.sign_in.two_factor_clients_forgottenFor more information about using metrics in ASP.NET Core, see xref:log-mon/metrics/metrics.