├── README.md ├── docker-compose.yml ├── example-nodejs-app ├── Dockerfile ├── index.js ├── package-lock.json └── package.json ├── grafana └── provisioning │ ├── dashboards │ ├── dashboard.yml │ └── example-service-dashboard.json │ └── datasources │ └── datasource.yml └── prometheus └── prometheus.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example-nodejs-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/example-nodejs-app/Dockerfile -------------------------------------------------------------------------------- /example-nodejs-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/example-nodejs-app/index.js -------------------------------------------------------------------------------- /example-nodejs-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/example-nodejs-app/package-lock.json -------------------------------------------------------------------------------- /example-nodejs-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/example-nodejs-app/package.json -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /grafana/provisioning/dashboards/example-service-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/grafana/provisioning/dashboards/example-service-dashboard.json -------------------------------------------------------------------------------- /grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coder-society/nodejs-application-monitoring-with-prometheus-and-grafana/HEAD/prometheus/prometheus.yml --------------------------------------------------------------------------------