mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-05 14:05:31 +02:00
* Initial plan * Fix Prometheus mounted prometheus.yml file by adding volume mount Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com> * Update blueprints/prometheus/template.toml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Siumauricio <47042324+Siumauricio@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
56 lines
1.2 KiB
TOML
56 lines
1.2 KiB
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
|
|
[config]
|
|
env = []
|
|
|
|
[[config.domains]]
|
|
serviceName = "prometheus"
|
|
port = 9_090
|
|
host = "${main_domain}"
|
|
|
|
[[config.mounts]]
|
|
# Note: this relative path is resolved by Dokploy to the file mounted from
|
|
# ../files/prometheus.yml in docker-compose, and mapped inside the container
|
|
# to /etc/prometheus/prometheus.yml.
|
|
filePath = "prometheus.yml"
|
|
serviceName = "prometheus"
|
|
content = """
|
|
# Prometheus Configuration
|
|
# https://prometheus.io/docs/prometheus/latest/configuration/configuration/
|
|
|
|
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
external_labels:
|
|
monitor: 'dokploy-prometheus'
|
|
|
|
# Alertmanager configuration (optional)
|
|
# alerting:
|
|
# alertmanagers:
|
|
# - static_configs:
|
|
# - targets:
|
|
# - 'alertmanager:9093'
|
|
|
|
# Load rules once and periodically evaluate them
|
|
# rule_files:
|
|
# - "alerts.yml"
|
|
|
|
# Scrape configurations
|
|
scrape_configs:
|
|
# Prometheus self-monitoring
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|
|
|
|
# Example: Add your own targets here
|
|
# - job_name: 'node_exporter'
|
|
# static_configs:
|
|
# - targets: ['node-exporter:9100']
|
|
|
|
# - job_name: 'docker'
|
|
# static_configs:
|
|
# - targets: ['docker-host:9323']
|
|
"""
|
|
|