mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-24 20:22:53 +00:00
dcf541784d
Refs #1442
15 lines
419 B
Go
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
|
|
)
|