Prometheus.Client.MetricServer
6.0.0
Prefix Reserved
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
dotnet add package Prometheus.Client.MetricServer --version 6.0.0
NuGet\Install-Package Prometheus.Client.MetricServer -Version 6.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="6.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Prometheus.Client.MetricServer --version 6.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Prometheus.Client.MetricServer, 6.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.
// Install Prometheus.Client.MetricServer as a Cake Addin #addin nuget:?package=Prometheus.Client.MetricServer&version=6.0.0 // Install Prometheus.Client.MetricServer as a Cake Tool #tool nuget:?package=Prometheus.Client.MetricServer&version=6.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Prometheus.Client.MetricServer
Extension for Prometheus.Client
Install
dotnet add package Prometheus.Client.MetricServer
Use
There are Examples
Simple Console App with static MetricFactory:
public static void Main(string[] args)
{
var options = new MetricServerOptions
{
Port = 9091
};
IMetricServer metricServer = new MetricServer(options);
metricServer.Start();
...
var counter = Metrics.DefaultFactory.CreateCounter("test_count", "helptext");
counter.Inc();
...
metricServer.Stop();
}
Worker with DI extension:
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- Prometheus.Client (>= 5.2.0 && < 6.0.0)
-
net5.0
- Prometheus.Client (>= 5.2.0 && < 6.0.0)
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 |
---|---|---|
6.0.0 | 10,233 | 9/23/2023 |
5.0.0 | 34,622 | 9/3/2022 |
4.4.0 | 32,516 | 4/6/2022 |
4.3.1 | 22,877 | 6/9/2021 |
4.3.0 | 992 | 6/3/2021 |
4.2.0 | 1,190 | 5/23/2021 |
4.1.0 | 6,186 | 1/29/2021 |
4.0.0 | 12,319 | 8/22/2020 |
3.1.0 | 14,310 | 1/21/2020 |
3.0.1 | 11,520 | 6/4/2019 |
3.0.0 | 1,528 | 5/14/2019 |
3.0.0-rc1 | 966 | 4/9/2019 |
2.1.1 | 83,277 | 3/24/2019 |
2.1.0 | 9,115 | 1/16/2019 |
2.0.2 | 27,317 | 10/30/2018 |
2.0.1 | 1,360 | 10/19/2018 |
1.3.2 | 4,570 | 8/25/2018 |
1.3.1 | 2,428 | 4/23/2018 |
1.2.2 | 34,720 | 2/23/2018 |
1.1.3 | 1,707 | 12/6/2017 |
1.1.2 | 2,471 | 5/10/2017 |