Prometheus.Client.MetricServer 7.0.0

Prefix Reserved
dotnet add package Prometheus.Client.MetricServer --version 7.0.0
                    
NuGet\Install-Package Prometheus.Client.MetricServer -Version 7.0.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="Prometheus.Client.MetricServer" Version="7.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Prometheus.Client.MetricServer" Version="7.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Prometheus.Client.MetricServer" />
                    
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 Prometheus.Client.MetricServer --version 7.0.0
                    
#r "nuget: Prometheus.Client.MetricServer, 7.0.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.
#addin nuget:?package=Prometheus.Client.MetricServer&version=7.0.0
                    
Install Prometheus.Client.MetricServer as a Cake Addin
#tool nuget:?package=Prometheus.Client.MetricServer&version=7.0.0
                    
Install Prometheus.Client.MetricServer as a Cake Tool

Prometheus.Client.MetricServer

ci nuget nuget codecov license

Extension for Prometheus.Client

Install

dotnet add package Prometheus.Client.MetricServer

Use

Examples

Simple Console App with static MetricFactory:

public static void Main(string[] args)
{
    var options = new MetricServerOptions
    {
        Port = 9091
    };

    var metricServer = new MetricServer(options);
    metricServer.Start();

    var counter = Metrics.DefaultFactory.CreateCounter("test_count", "helptext");
    counter.Inc();

    metricServer.Stop();
}

Worker with DI Prometheus.Client.DependencyInjection:

public static async Task Main(string[] args)
{
    var host = Host.CreateDefaultBuilder(args)
        .ConfigureServices((_, services) =>
        {
            services.AddMetricFactory();
            services.AddSingleton<IMetricServer>(sp => new MetricServer(
                new MetricServerOptions
                {
                    CollectorRegistryInstance = sp.GetRequiredService<ICollectorRegistry>(),
                    UseDefaultCollectors = true
                }));
            services.AddHostedService<Worker>();
        }).Build();

    var metricServer = host.Services.GetRequiredService<IMetricServer>();

    try
    {
        metricServer.Start();
        await host.RunAsync();
    }
    catch (Exception ex)
    {
        Console.WriteLine("Host Terminated Unexpectedly");
    }
    finally
    {
        metricServer.Stop();
    }
}

License

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

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Prometheus.Client.MetricServer:

Package Downloads
ShayganTadbir.Framework.Core

Package description

sampleseqproject

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
7.0.0 124 5/24/2025
6.0.0 17,454 9/23/2023
5.0.0 39,186 9/3/2022
4.4.0 34,497 4/6/2022
4.3.1 23,254 6/9/2021
4.3.0 1,038 6/3/2021
4.2.0 1,235 5/23/2021
4.1.0 6,415 1/29/2021
4.0.0 12,397 8/22/2020
3.1.0 14,686 1/21/2020
3.0.1 12,383 6/4/2019
3.0.0 1,606 5/14/2019
3.0.0-rc1 1,026 4/9/2019
2.1.1 94,740 3/24/2019
2.1.0 9,184 1/16/2019
2.0.2 27,406 10/30/2018
2.0.1 1,440 10/19/2018
1.3.2 4,672 8/25/2018
1.3.1 2,623 4/23/2018
1.2.2 34,864 2/23/2018
1.1.3 1,913 12/6/2017
1.1.2 2,625 5/10/2017