Healthie.NET.Alerting
4.1.0
Prefix Reserved
dotnet add package Healthie.NET.Alerting --version 4.1.0
NuGet\Install-Package Healthie.NET.Alerting -Version 4.1.0
<PackageReference Include="Healthie.NET.Alerting" Version="4.1.0" />
<PackageVersion Include="Healthie.NET.Alerting" Version="4.1.0" />
<PackageReference Include="Healthie.NET.Alerting" />
paket add Healthie.NET.Alerting --version 4.1.0
#r "nuget: Healthie.NET.Alerting, 4.1.0"
#:package Healthie.NET.Alerting@4.1.0
#addin nuget:?package=Healthie.NET.Alerting&version=4.1.0
#tool nuget:?package=Healthie.NET.Alerting&version=4.1.0

Healthie.NET.Alerting
▶ Live demo — healthie.compiletheory.com — a read-only Healthie.NET dashboard watching real status pages (Anthropic, OpenAI, GitHub, Cloudflare, and more), built from these packages.
Turns health changes into alerts and delivers them, without letting a delivery problem become a monitoring problem.
Installation
dotnet add package Healthie.NET.Alerting
Usage
using Healthie.Alerting;
builder.Services
.AddHealthie(typeof(Program).Assembly)
.AddHealthieAlerts()
.AddHealthieSlackAlerts(new Uri("https://hooks.slack.com/services/..."))
.AddHealthiePagerDutyAlerts("your-integration-key");
Add as many sinks as you like; each gets every alert. For anywhere none of them reaches, implement IAlertSink and register it — the dispatcher finds every one that is registered.
Where alerts go
| Sink | Registered with | Sends |
|---|---|---|
| Slack | AddHealthieSlackAlerts(url) |
A message with a colour-coded attachment, to an incoming webhook |
| Microsoft Teams | AddHealthieMicrosoftTeamsAlerts(url) |
An Adaptive Card, to a Workflows URL |
| PagerDuty | AddHealthiePagerDutyAlerts(key) |
An Events API v2 trigger, resolved when the checker recovers |
| Anything else | AddHealthieWebhookAlerts(url) |
The generic JSON payload below |
Three of these are not the webhook wearing a hat. Slack, Teams and PagerDuty each reject arbitrary JSON, so posting the generic payload at them fails — which is why reaching them used to need something in between to reshape it. None needs a dependency this package did not already have, so they are here rather than in a package each.
Teams takes the Workflows URL, not an Office 365 connector. Microsoft has retired those connectors along with the MessageCard payload they accepted; in Teams, add a Workflow to the channel and use the URL it gives you.
PagerDuty closes what it opens. A failure raises an incident keyed on the checker, and the recovery resolves that same incident rather than posting a second message saying everything is fine. A checker flapping between suspicious and unhealthy stays one incident, because the deduplication key deliberately leaves out the health and the time. Suspicious maps to warning rather than critical — it is the state that means "failing, but not past the threshold yet", and paging on it would defeat having a threshold.
Configure any sink's HttpClient — its timeout, its handler, an auth header — by naming its HttpClientName constant in your own AddHttpClient call.
What alerts
By default, a checker becoming unhealthy, and a checker recovering. Not every check — only a change of health.
.AddHealthieAlerts(options =>
{
options.MinimumSeverity = PulseCheckerHealth.Suspicious; // include early warnings
options.SendRecoveries = false; // opens only, no all-clears
options.DeduplicationWindow = TimeSpan.FromMinutes(15);
})
MinimumSeverity defaults to Unhealthy. Suspicious is the state a checker passes through on its way there, so alerting on it by default would page somebody for every blip the failure threshold exists to absorb. Lower it when the early warning is the point — a certificate inside its expiry window is suspicious for weeks and never becomes unhealthy until it is too late to act.
DeduplicationWindow defaults to five minutes. A component on the edge of working flaps, and every flip is a genuine health change; without a window a checker running every second could send a hundred alerts about one incident.
Delivery cannot hurt the checks
This is the part worth knowing. Alerting subscribes to state changes rather than sitting inside the check, so:
- A sink that throws is logged and skipped. The other sinks still get the alert, and the next alert still goes out.
- A sink that hangs is abandoned at
DeliveryTimeout(ten seconds by default). - A slow sink never delays a check. Raising the event only queues; every delivery happens on the dispatcher's own loop.
- A backed-up queue drops rather than grows.
QueueCapacitybounds it at 1024, and drops are counted and logged. An unbounded queue would trade a delivery problem for a memory leak inside the process being monitored.
None of it can mark a component unhealthy. A checker reports on the thing it watches, and a broken webhook is not that thing.
Webhook payload
{
"checker": "Contoso.Api.DatabasePulseChecker",
"displayName": "Primary database",
"group": "data",
"tags": ["cloud", "primary"],
"status": "Unhealthy",
"previousStatus": "Healthy",
"isRecovery": false,
"message": "Connection timed out after 5s.",
"occurredAt": "2026-07-29T11:04:22.1234567Z",
"deduplicationKey": "healthie:Contoso.Api.DatabasePulseChecker"
}
deduplicationKey identifies the ongoing incident, not the occurrence — it deliberately excludes the health and the time, so an incident tracker keyed on it closes the same incident it opened rather than accumulating one per transition.
Configure the client — timeout, handler, an auth header — by naming WebhookAlertSink.HttpClientName in your own AddHttpClient call.
| Product | Versions 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 is compatible. 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. |
-
net10.0
- Healthie.NET.Abstractions (>= 4.1.0)
- Microsoft.Extensions.Http (>= 10.0.10)
-
net8.0
- Healthie.NET.Abstractions (>= 4.1.0)
- Microsoft.Extensions.Http (>= 10.0.10)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Twenty packages was too many, and two of them had no business being separate. This release fixes
that without breaking anything: **an application on 4.0.0 upgrades by changing nothing.**
### Added
- **`Healthie.NET`**, the package to install first. It carries no code of its own, only a dependency
on `Healthie.NET.DependencyInjection`, so it is one install and one dependency rather than a
bundle -- no provider, scheduler or UI framework arrives with it. The name people guess did not
exist before, and the actual entry point was called `DependencyInjection`, which reads like
plumbing rather than the way in.
- **Uptime reporting and leader election are in the core package.** `AddHealthieUptime()` and
`AddHealthieLeaderElection()` need nothing else installed. Both stay opt-in: nothing runs until
you call them.
### Deprecated
- **`Healthie.NET.Uptime`** and **`Healthie.NET.LeaderElection`**. Neither carried a third-party
dependency, so keeping them separate cost two installs and saved nothing -- the provider packages
exist to keep Npgsql or Temporalio off machines that do not use them, and these two were not
providers.
**Nothing breaks.** Both packages are still published, now as assemblies of type forwards, so an
application that references either keeps compiling *and* keeps running untouched. That is what
makes this a minor release: moving a type between assemblies is a binary break the compiler cannot
see, because source keeps building and only the runtime finds out. Remove the reference whenever it
suits you; neither package will gain features.
### Fixed
- **The sample Dockerfiles took their .NET base images by mutable tag.** A tag is a different image
next week, so the build that passed review is not the build that ships. Both are pinned by digest,
which Dependabot updates the way it updates a package version. Closes four OpenSSF Scorecard
*Pinned-Dependencies* findings.
### Security
- **An Azure CosmosDB key committed in May 2025 was confirmed dead and the alert closed.** It had
already been removed from the working tree; the account it belonged to no longer exists in the
owning tenant, verified by enumerating every Cosmos account across that tenant's subscriptions, so
the key authenticates to nothing. It remains in history at `ee0c78e`, inert.
- **Stray screenshots can no longer be committed.** Root-level PNGs are ignored, scoped to the root
so the images the docs and samples genuinely ship are untouched.
Full changelog: https://github.com/ivanvyd/Healthie.NET/blob/v4.1.0/CHANGELOG.md