├── .env ├── .gitattributes ├── README.md ├── alertmanager └── alertmanager.yml ├── blackbox └── blackbox.yml ├── config ├── docker-compose.yml ├── grafana └── provisioning │ ├── dashboards │ ├── dashboard.yml │ └── node_exporter.json │ └── datasources │ └── datasource.yml └── prometheus ├── alert_rules.yml └── prometheus.yml /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/README.md -------------------------------------------------------------------------------- /alertmanager/alertmanager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/alertmanager/alertmanager.yml -------------------------------------------------------------------------------- /blackbox/blackbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/blackbox/blackbox.yml -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/config -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/node_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/grafana/provisioning/dashboards/node_exporter.json -------------------------------------------------------------------------------- /grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /prometheus/alert_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/prometheus/alert_rules.yml -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarkpanda/Monitoring_With_Prometheus-and-Grafana/HEAD/prometheus/prometheus.yml --------------------------------------------------------------------------------