├── .gitignore ├── README.md ├── backend ├── Dockerfile ├── main.py └── req.txt ├── docker-compose.yml ├── grafana ├── datasources.yaml └── example-dashboard.json ├── loki-config.yaml ├── prometheus.yml └── promtail-config.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/README.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/req.txt: -------------------------------------------------------------------------------- 1 | litestar 2 | uvicorn 3 | prometheus_client -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /grafana/datasources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/grafana/datasources.yaml -------------------------------------------------------------------------------- /grafana/example-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/grafana/example-dashboard.json -------------------------------------------------------------------------------- /loki-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/loki-config.yaml -------------------------------------------------------------------------------- /prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/prometheus.yml -------------------------------------------------------------------------------- /promtail-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemonsh/grafana-deploy/HEAD/promtail-config.yaml --------------------------------------------------------------------------------