├── .gitignore ├── LICENSE ├── README.md ├── grafana ├── cluster-dashboard.json └── dag-dashboard.json └── statsd └── statsd.conf /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databand-ai/airflow-dashboards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databand-ai/airflow-dashboards/HEAD/README.md -------------------------------------------------------------------------------- /grafana/cluster-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databand-ai/airflow-dashboards/HEAD/grafana/cluster-dashboard.json -------------------------------------------------------------------------------- /grafana/dag-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databand-ai/airflow-dashboards/HEAD/grafana/dag-dashboard.json -------------------------------------------------------------------------------- /statsd/statsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databand-ai/airflow-dashboards/HEAD/statsd/statsd.conf --------------------------------------------------------------------------------