CronRadar 0.0.14
dotnet add package CronRadar --version 0.0.14
NuGet\Install-Package CronRadar -Version 0.0.14
<PackageReference Include="CronRadar" Version="0.0.14" />
<PackageVersion Include="CronRadar" Version="0.0.14" />
<PackageReference Include="CronRadar" />
paket add CronRadar --version 0.0.14
#r "nuget: CronRadar, 0.0.14"
#:package CronRadar@0.0.14
#addin nuget:?package=CronRadar&version=0.0.14
#tool nuget:?package=CronRadar&version=0.0.14
CronRadar .NET SDK
Self-healing monitors. Never breaks.
Installation
dotnet add package CronRadar
Quick Start
// Set API key via environment variable
// CRONRADAR_API_KEY=ck_app_xxxxx
// After your job completes
CronRadar.Monitor("daily-backup");
// With auto-registration (if monitor doesn't exist)
CronRadar.Monitor("daily-backup", schedule: "0 2 * * *");
Lifecycle Tracking
Track start/complete/fail for better insights:
CronRadar.StartJob("daily-backup", schedule: "0 2 * * *");
try
{
RunBackup();
CronRadar.CompleteJob("daily-backup");
}
catch (Exception e)
{
CronRadar.FailJob("daily-backup", e.Message);
throw;
}
Or use the wrapper:
CronRadar.Wrap("daily-backup", () =>
{
RunBackup();
}, schedule: "0 2 * * *");
Async Methods (Recommended)
All methods have async versions for non-blocking execution:
// Simple monitoring
await CronRadar.MonitorAsync("daily-backup");
await CronRadar.MonitorAsync("daily-backup", schedule: "0 2 * * *");
// Lifecycle tracking
await CronRadar.StartJobAsync("daily-backup", schedule: "0 2 * * *");
await CronRadar.CompleteJobAsync("daily-backup");
await CronRadar.FailJobAsync("daily-backup", errorMessage);
// Async wrapper
await CronRadar.WrapAsync("daily-backup", async () =>
{
await RunBackupAsync();
}, schedule: "0 2 * * *");
Configuration
API Key (required):
CRONRADAR_API_KEY=ck_app_xxxxx
Or pass directly:
CronRadar.Monitor("job-name", apiKey: "ck_app_xxxxx");
Debug logging (optional):
CRONRADAR_DEBUG=true
Links
Extensions: Hangfire | Quartz.NET
License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 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 is compatible. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Text.Json (>= 4.7.2)
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on CronRadar:
| Package | Downloads |
|---|---|
|
CronRadar.Hangfire
Automatic monitoring for Hangfire background jobs. Track job execution, detect failures, and get alerts with zero configuration. Simply add UseCronRadar() to your Hangfire setup. |
|
|
CronRadar.Quartz
Automatic monitoring for Quartz.NET scheduled jobs. Track job execution, detect failures, and get alerts with zero configuration. Simply add MonitorAll() to your scheduler setup. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 0.0.14 | 252 | 4/29/2026 | |
| 0.0.12 | 1,714 | 12/1/2025 | |
| 0.0.11 | 981 | 12/1/2025 | |
| 0.0.10 | 976 | 12/1/2025 | |
| 0.0.9 | 1,182 | 11/10/2025 | |
| 0.0.8 | 1,491 | 11/10/2025 | |
| 0.0.7 | 1,204 | 11/10/2025 | |
| 0.0.6 | 1,253 | 11/10/2025 | |
| 0.0.5 | 561 | 10/28/2025 | |
| 0.0.4 | 645 | 10/7/2025 | |
| 0.0.3 | 565 | 9/26/2025 | |
| 0.0.2 | 828 | 9/22/2025 | |
| 0.0.1 | 594 | 9/21/2025 |
Monitor any scheduled job with self-healing. Just call CronRadar.Ping() after your job completes.