creates simple healthchecks

This commit is contained in:
2025-08-25 23:46:04 +02:00
commit b81eb5b9f5
21 changed files with 2835 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.ComponentModel;
namespace MCVIngenieros.Healthchecks.__;
// Options for health check container
[EditorBrowsable(EditorBrowsableState.Never)]
public sealed class HealthCheckContainerOptions
{
public TimeSpan CacheDuration { get; set; } = TimeSpan.FromMinutes(10);
public TimeSpan Timeout { get; set; } = TimeSpan.FromSeconds(3);
public IEnumerable<System.Reflection.Assembly> AssembliesToScan { get; set; } = [];
}