Add users processes panel on mysqld dashboard

This commit is contained in:
tom.chivert 2024-05-24 11:00:22 +02:00
parent e5d1adeded
commit ff4e3b5e68
2 changed files with 380 additions and 198 deletions

File diff suppressed because it is too large Load Diff

View File

@ -105,11 +105,11 @@ services:
traefik.http.routers.prometheus.tls.certresolver: letsencrypt
traefik.http.routers.prometheus.entrypoints: "{{ grafana_traefik_entrypoint }}"
traefik.http.services.prometheus.loadbalancer.server.port: 9090
{% else %}
{% if prometheus_traefik_ipwhitelist is defined %}
traefik.http.middlewares.prometheus-clientips.ipwhitelist.sourcerange: {{ prometheus_traefik_ipwhitelist }}
traefik.http.routers.prometheus.middlewares: "prometheus-clientips@docker"
{% endif %}
{% else %}
ports:
- "{{ prometheus_port | default(9090) }}:9090"
{% endif %}