VOOZH about

URL: https://www.nuget.org/packages/Simple.Service.Monitoring.Library/

⇱ NuGet Gallery | Simple.Service.Monitoring.Library 1.0.27




👁 Image
Simple.Service.Monitoring.Library 1.0.27

dotnet add package Simple.Service.Monitoring.Library --version 1.0.27
 
 
NuGet\Install-Package Simple.Service.Monitoring.Library -Version 1.0.27
 
 
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="Simple.Service.Monitoring.Library" Version="1.0.27" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Simple.Service.Monitoring.Library" Version="1.0.27" />
 
Directory.Packages.props
<PackageReference Include="Simple.Service.Monitoring.Library" />
 
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 Simple.Service.Monitoring.Library --version 1.0.27
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Simple.Service.Monitoring.Library, 1.0.27"
 
 
#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 Simple.Service.Monitoring.Library@1.0.27
 
 
#: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=Simple.Service.Monitoring.Library&version=1.0.27
 
Install as a Cake Addin
#tool nuget:?package=Simple.Service.Monitoring.Library&version=1.0.27
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Simple.Service.Monitoring.Library

A lightweight, extensible .NET library for real-time service health monitoring and reporting.

Features

  • Health check abstraction for any .NET service
  • Pluggable health check providers
  • Real-time health status reporting
  • Integration with ASP.NET Core and background services
  • Extensible event/observer model
  • Pluggable publishers for notifications (email, webhooks, etc.)
  • Designed for cloud-native and on-premises scenarios

Installation

Install via NuGet:

dotnet add package Simple.Service.Monitoring.Library

Usage

1. Register Health Checks

In your Program.cs or Startup.cs:

builder.Services.AddServiceMonitoring()

2. Implement Custom Health Checks (Optional)

Implement IHealthCheckProvider for your own checks:

public class MyCustomHealthCheck : IHealthCheckProvider
{
 public Task<HealthCheckResult> CheckAsync(CancellationToken cancellationToken = default)
 {
 // Your health check logic
 return Task.FromResult(HealthCheckResult.Healthy("OK"));
 }
}

Register it:

builder.Services.AddServiceMonitoring()
 .AddHealthCheck<MyCustomHealthCheck>("My Custom Check");

3. Observe Health Reports

Subscribe to health report events:

public class MyObserver : IReportObserver
{
 public Task OnReportAsync(HealthReport report)
 {
 // Handle report
 return Task.CompletedTask;
 }
}

// Register observer
builder.Services.AddSingleton<IReportObserver, MyObserver>();

4. Add Publishers (Optional)

You can add publishers to send notifications (email, webhooks, etc.):

License

MIT

Repository

https://github.com/turric4n/Dotnet.Simple.Service.Monitoring

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 netstandard2.1 is compatible. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos 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 Simple.Service.Monitoring.Library:

Package Downloads
Simple.Service.Monitoring.Extensions

Simple Service Monitoring Extensions and Health checks for .NET - Added SQL/MySQL query healthCheck and result

Simple.Service.Monitoring.UI

Simple health check library UI for internal or external services made in C# - Added SQL/MySQL query healthCheck and result

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.27 192 2/25/2026
1.0.26 202 2/10/2026
1.0.25 181 1/27/2026
1.0.24 182 1/27/2026
1.0.23 195 1/26/2026
1.0.22 186 1/26/2026
1.0.21 791 12/2/2025
1.0.20 523 11/19/2025
1.0.19 446 11/17/2025
1.0.18 729 7/23/2025
1.0.17 720 7/22/2025
1.0.15 350 7/16/2025
1.0.14 378 7/14/2025
1.0.13 308 7/11/2025
1.0.11 278 7/4/2025
1.0.10 377 6/30/2025
1.0.9 330 6/30/2025
1.0.8 346 6/30/2025
1.0.4.2 295 5/13/2024
1.0.4.1 240 5/13/2024
Loading failed