-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added *LiipMonitorBundle* for health-checking API docker container
- Loading branch information
1 parent
d51461e
commit 59fcb39
Showing
6 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
liip_monitor: | ||
# enabling the controller requires that `assets` are enabled in the framework bundle | ||
enable_controller: false | ||
checks: | ||
groups: | ||
default: | ||
# Checks to see if the disk usage is below warning/critical percent thresholds | ||
disk_usage: | ||
warning: 70 | ||
critical: 90 | ||
path: '%kernel.cache_dir%' | ||
|
||
# Connection name or an array of connection names | ||
doctrine_dbal: [default] | ||
|
||
# Checks to see if migrations from specified configuration file are applied | ||
doctrine_migrations: | ||
migrations: | ||
connection: default | ||
|
||
# Validate that a Redis service is running | ||
# redis: | ||
# cache_service: | ||
# dsn: '%env(string:REDIS_DSN)%' | ||
|
||
# Validate that a messenger transport does not contain more than warning/critical messages | ||
# Transport must implement MessageCountAwareInterface | ||
messenger_transports: | ||
async: | ||
critical_threshold: 10 # required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters