f3c8f0d645
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 25s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (ultima) (push) Failing after 5m34s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (lunafreya) (push) Successful in 5m37s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rikku) (push) Failing after 5m40s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rinoa) (push) Failing after 6m33s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (lunafreya) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rikku) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rinoa) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (ultima) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (aranea) (push) Failing after 3m4s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (aranea) (push) Has been skipped
Gitea Branch PR & Ansible Deployment / PR Merge (push) Has been skipped
57 lines
1.9 KiB
Django/Jinja
57 lines
1.9 KiB
Django/Jinja
{% import 'app-configs/_macros/hashivault_kv2.j2' as vault %}
|
|
|
|
containers:
|
|
# adguard:
|
|
# action_keywords:
|
|
# - restart:
|
|
# regex: '\[error\] dnsproxy.*timeout'
|
|
ghost_blog:
|
|
action_keywords:
|
|
- restart:
|
|
regex: 'Connection Error.*ECONNRESET$'
|
|
immich-server:
|
|
action_keywords:
|
|
- restart:
|
|
regex: '(ENOTFOUND|Error|ECONNREFUSED)'
|
|
invidious:
|
|
action_keywords:
|
|
- restart:
|
|
regex: 'Error reading.*Connection reset by peer trying to reconnect\.\.\.'
|
|
maxun-backend:
|
|
action_keywords:
|
|
- restart:
|
|
regex: '[Ee]rror'
|
|
planka:
|
|
action_keywords:
|
|
- restart:
|
|
regex: 'Failed to lift app: Sails is taking too long to load.$'
|
|
searxng:
|
|
action_keywords:
|
|
- restart:
|
|
regex: 'Traceback \(most recent call last\)'
|
|
scrutiny:
|
|
action_keywords:
|
|
- restart:
|
|
regex: 's6-.*: fatal.*'
|
|
swag:
|
|
action_keywords:
|
|
- restart:
|
|
regex: 's6-.*: fatal.*$'
|
|
global_keywords:
|
|
keywords:
|
|
- panic
|
|
keywords_with_attachment:
|
|
- fatal
|
|
notifications:
|
|
apprise:
|
|
url: gotify://gotify/{{ vault.kv2_field('env','APPRISE_GOTIFY_TOKEN', vault_engine_mount_point) }} # Any Apprise-compatible URL (https://github.com/caronc/apprise/wiki)
|
|
# settings are optional because they all have default values
|
|
settings:
|
|
log_level: INFO # DEBUG, INFO, WARNING, ERROR
|
|
notification_cooldown: 5 # Seconds between alerts for same keyword (per container)
|
|
attachment_lines: 20 # Number of Lines to include in log attachments
|
|
multi_line_entries: true # Detect multi-line log entries
|
|
disable_restart: false # Disable restart when a config change is detected
|
|
disable_start_message: false # Suppress startup notification
|
|
disable_shutdown_message: false # Suppress shutdown notification
|
|
disable_restart_message: false # Suppress config reload notification |