Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nexogen-international/Nexogen.Libraries.Metrics
Library for collecting application metrics in .NET and exporting them to Prometheus
https://github.com/nexogen-international/Nexogen.Libraries.Metrics
histogram metrics nuget prometheus
Last synced: 9 days ago
JSON representation
Library for collecting application metrics in .NET and exporting them to Prometheus
- Host: GitHub
- URL: https://github.com/nexogen-international/Nexogen.Libraries.Metrics
- Owner: nexogen-international
- License: mit
- Created: 2017-08-18T10:48:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T11:18:29.000Z (about 4 years ago)
- Last Synced: 2024-08-01T02:26:12.397Z (3 months ago)
- Topics: histogram, metrics, nuget, prometheus
- Language: C#
- Homepage:
- Size: 173 KB
- Stars: 61
- Watchers: 7
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-dotnet-core - Nexogen.Libraries.Metrics - Library for collecting application metrics in .NET and exporting them to Prometheus. (Frameworks, Libraries and Tools / Code Analysis and Metrics)
- fucking-awesome-dotnet-core - Nexogen.Libraries.Metrics - Library for collecting application metrics in .NET and exporting them to Prometheus. (Frameworks, Libraries and Tools / Code Analysis and Metrics)
- awesome-dotnet-core - Nexogen.Libraries.Metrics - Library for collecting application metrics in .NET and exporting them to Prometheus. (Frameworks, Libraries and Tools / Code Analysis and Metrics)
- awesome-dotnet-core - Nexogen.Libraries.Metrics - 用于在.NET中收集应用程序指标并将其导出到Prometheus的库。 (框架, 库和工具 / 代码分析和指标)
README
# Nexogen.Libraries.Metrics
Library for collecting application metrics in .Net and exporting them to [Prometheus](https://prometheus.io/)
[![Build Status](https://travis-ci.org/nexogen-international/Nexogen.Libraries.Metrics.svg?branch=master)](https://travis-ci.org/nexogen-international/Nexogen.Libraries.Metrics)
[![Build status](https://ci.appveyor.com/api/projects/status/cijwwapl9lva1qko?svg=true)](https://ci.appveyor.com/project/ahoka/nexogen-libraries-metrics)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/nexogen-international/Nexogen.Libraries.Metrics/master/LICENSE)
[![NuGet](https://img.shields.io/nuget/v/Nexogen.Libraries.Metrics.svg)](https://www.nuget.org/packages/Nexogen.Libraries.Metrics.Prometheus/)
[![NuGet](https://img.shields.io/nuget/dt/Nexogen.Libraries.Metrics.svg)](https://github.com/nexogen-international/Nexogen.Libraries.Metrics)
[![GitHub issues](https://img.shields.io/github/issues/nexogen-international/Nexogen.Libraries.Metrics.svg)](https://github.com/nexogen-international/Nexogen.Libraries.Metrics/issues)
[![GitHub stars](https://img.shields.io/github/stars/nexogen-international/Nexogen.Libraries.Metrics.svg)](https://github.com/nexogen-international/Nexogen.Libraries.Metrics/stargazers)# API Reference
[Nexogen.Libraries.Metrics API Reference](https://github.com/nexogen-international/Nexogen.Libraries.Metrics/wiki)
# Updating from version 2.6.0 or earlier
The default Prometheus metrics registration behavior in ASP.NET Core applications has changed.
The request metrics collection is no longer enabled by default. This means that you need to add code to enable it. See the relevant section below for code samples.
Explicitly defined metrics are not affected in any way.# Installation
```sh
dotnet add package Nexogen.Libraries.Metrics.Prometheus
dotnet add package Nexogen.Libraries.Metrics.Extensions
```You can use an interface only nuget when writing libraries or when you want to use Metrics through dependency injection.
```sh
dotnet add package Nexogen.Libraries.Metrics
```For exporting metrics you currently have to use ASP.NET Core.
```sh
dotnet add package Nexogen.Libraries.Metrics.Prometheus.AspCore
```Or you can use a push gateway when measuring batch processes.
```sh
dotnet add package Nexogen.Libraries.Metrics.Prometheus.PushGateway
```# Example usage - Measurements
## Counters
Counters can only increment, so they are most useful for counting things, like calls to API endpoints or backend services.
```cs
IMetrics metrics = new PrometheusMetrics();ICounter counter = metrics.Counter()
.Name("nexogen_sort_calls_total")
.Help("Total calls to sort routine.")
.Register();counter.Increment();
```## Gauges
Gauges can take any value, so they are the most versatile metric type available. You can even measure durations or dates with them!
```cs
IGauge gauge = metrics.Gauge()
.Name("nexogen_sorted_items_count_last")
.Help("The last count of the sorted items.")
.Register();gauge.Value = items.Length;
gauge.Increment();
gauge.Decrement(10.1);
```
## HistogramsHistograms are a trade off between measuring resolution and precision. With histograms you can avoid aliasing errors from Prometheus's scrape interval, but lose granularity. Histograms also need to have their buckets defined before use and we provide sevaral bucket generators to make it easy.
```cs
IHistogram histogram = metrics.Histogram()
.LinearBuckets(0.01, 0.01, 100)
.Name("nexogen_sort_time_seconds")
.Help("Time taken for sort in seconds.")
.Register();var sw = Stopwatch.StartNew();
Array.Sort(items);
histogram.Observe(sw.Elapsed.TotalSeconds);```
## Extensions
We provide an [Extensions](https://www.nuget.org/packages/Nexogen.Libraries.Metrics.Extensions) library for making common measurements easy.
```cs
using (histogram.Timer())
{
Array.Sort(items);
}gauge.SetToCurrentTime();
gauge.TrackInProgress(() => Array.Sort(items));
```## ASP.NET Core metrics collection
There is a way to automatically collect metrics about the ASP.NET Core requests. This needs to be enabled when registering to the application.
```cs
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UsePrometheus(options => options.CollectHttpMetrics());
}
```The `options.CollectHttpMetrics()` registers automatic request metric collection, which was implicitly registered in versions prior to version 3.0.0.
# Example usage - Exposing metrics
## Asp.Net Core
The collected metrics can be exposed via ASP.NET Core middleware. To do this you need to register the feature during configuration.
```cs
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UsePrometheus();
}
```## Standalone server
There is a standalone server if you don't want to use ASP.NET Core just to expose your metrics.
```sh
dotnet add package Nexogen.Libraries.Metrics.Prometheus.Standalone
``````cs
public void ConfigureServices(IServiceCollection services)
{
services.AddPrometheusStandalone(Configuration.GetSection("Prometheus"));
}
```or
```cs
var metrics = new PrometheusMetrics();
await new PrometheusServer(new PrometheusServerOptions {Port = 9100}, metrics, loggerFactory).StartAsync();
```## gRPC
We provide gRPC interceptors for capturing metrics.
```sh
dotnet add package Nexogen.Libraries.Metrics.Prometheus.Grpc
```For gRPC servers:
```csharp
services.AddSingleton()
.AddGrpc(options => options.Interceptors.Add());
```For gRPC clients:
```csharp
services.AddSingleton()
.AddGrpcClient((provider, options) => options.Interceptors.Add(new ClientMetricsInterceptor(provider.GetRequiredService())));
```