├── .gitignore ├── LICENSE ├── README.md ├── barman_exporter ├── __init__.py └── barman_exporter.py ├── grafana-dashboard.json ├── grafana-screenshot.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/README.md -------------------------------------------------------------------------------- /barman_exporter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /barman_exporter/barman_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/barman_exporter/barman_exporter.py -------------------------------------------------------------------------------- /grafana-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/grafana-dashboard.json -------------------------------------------------------------------------------- /grafana-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/grafana-screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinhlybin/prometheus-barman-exporter/HEAD/setup.py --------------------------------------------------------------------------------