Files
pulse/internal/alerts/constants.go
T
2026-07-02 23:27:49 +01:00

15 lines
419 B
Go

package alerts
import "time"
const (
StaleTrackingThreshold = 24 * time.Hour
RateLimitCleanupWindow = 1 * time.Hour
recentlyResolvedRetention = 5 * time.Minute
maxRecentlyResolvedAlerts = 1024
alertsDirPerm = 0o700
alertsFilePerm = 0o600
offlineRecoveryConfirmationsDefault = 3
offlineRecoveryConfirmationsStorage = 2
)