Skip to content

Commit

Permalink
Expose active alarm cleanup and alarm limit config in the user-facing…
Browse files Browse the repository at this point in the history
… values file (#213)
  • Loading branch information
pvallone authored Aug 29, 2024
1 parent 43e142d commit 05ed7cb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions getting-started/templates/systemlink-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,29 @@ alarmservice:
## The amount of time inactive alarms will be retained in the database ([d.]hh:mm[:ss] format).
##
inactiveAlarmCleanupInterval: 30.00:00

activeAlarmCleanup:
## The amount of time active alarms will be retained in the database since they were
## last updated ([d.]hh:mm[:ss] format).
##
interval: 90.00:00
## Whether to limit active alarm cleanup to only affect active alarms whose most recent
## transition has a CLEAR transition type.
##
onlyCleanUpClearAlarms: false

## The total number of alarms the service supports creating, including
## both active and inactive alarms. Must be greater than activeAlarmLimit.
## The service will return an error if this limit is exceeded. Increasing
## this limit requires tuning of database resources.
##
alarmLimit: 100000

## The total number of active alarms the service supports creating. Must be less
## than alarmLimit. The service will return an error if this limit is exceeded.
## Increasing this limit requires tuning of database resources.
##
activeAlarmLimit: 10000

## Configuration for the Grafana dashboard provider.
##
Expand Down

0 comments on commit 05ed7cb

Please sign in to comment.