├── .gitignore ├── PGHAHA.png ├── README.md ├── config.py ├── config.py.example ├── configs └── .gitignore ├── create_haproxy_check.py ├── haproxy-example.cfg ├── screenshots └── hastats.png └── template ├── redirect.template ├── standby-multi.template ├── standby-partial.template └── standby.template /.gitignore: -------------------------------------------------------------------------------- 1 | config.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /PGHAHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/PGHAHA.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/config.py -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/config.py.example -------------------------------------------------------------------------------- /configs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/configs/.gitignore -------------------------------------------------------------------------------- /create_haproxy_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/create_haproxy_check.py -------------------------------------------------------------------------------- /haproxy-example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/haproxy-example.cfg -------------------------------------------------------------------------------- /screenshots/hastats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/screenshots/hastats.png -------------------------------------------------------------------------------- /template/redirect.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/template/redirect.template -------------------------------------------------------------------------------- /template/standby-multi.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/template/standby-multi.template -------------------------------------------------------------------------------- /template/standby-partial.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/template/standby-partial.template -------------------------------------------------------------------------------- /template/standby.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gplv2/haproxy-postgresql/HEAD/template/standby.template --------------------------------------------------------------------------------