From 2a9abcebc5841c8f1da153f9f3f0ee43fc352164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20M=C3=BCller?= Date: Tue, 23 Jan 2024 17:30:32 +0100 Subject: [PATCH] fix(xwiki): Add monitoring --- docs/monitoring.md | 1 + helmfile/apps/xwiki/values.yaml.gotmpl | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/docs/monitoring.md b/docs/monitoring.md index a5169dba..1dd7a36f 100644 --- a/docs/monitoring.md +++ b/docs/monitoring.md @@ -70,3 +70,4 @@ grafana: |:----------|-----------------------------------|-------------------------|---------------------| | Collabora | :white_check_mark: | :white_check_mark: | :white_check_mark: | | Nextcloud | :white_check_mark: | :x: | :x: | +| XWiki | :white_check_mark: | :x: | :x: | diff --git a/helmfile/apps/xwiki/values.yaml.gotmpl b/helmfile/apps/xwiki/values.yaml.gotmpl index c8e63322..ebc1f312 100644 --- a/helmfile/apps/xwiki/values.yaml.gotmpl +++ b/helmfile/apps/xwiki/values.yaml.gotmpl @@ -173,4 +173,11 @@ service: volumePermissions: enabled: true +prometheus: + javaagent: + enabled: {{ .Values.prometheus.podMonitors.enabled }} + podmonitor: + enabled: {{ .Values.prometheus.podMonitors.enabled }} + labels: + {{- toYaml .Values.prometheus.podMonitors.labels | nindent 6 }} ...