├── .github └── workflows │ └── regression.yml ├── .gitignore ├── .perlcriticrc ├── .travis.yml ├── LICENSE ├── MANIFEST ├── MANIFEST.SKIP ├── META.yml ├── Makefile.PL ├── README.dev ├── README.md ├── SIGNATURE ├── TODO ├── check_postgres.pl ├── check_postgres.pl.asc ├── check_postgres.pl.html ├── perlcriticrc ├── set_translations.pl └── t ├── 00_basic.t ├── 00_release.t ├── 00_signature.t ├── 00_test_tester.t ├── 01_validate_range.t ├── 02_autovac_freeze.t ├── 02_backends.t ├── 02_bloat.t ├── 02_checkpoint.t ├── 02_cluster_id.t ├── 02_commitratio.t ├── 02_connection.t ├── 02_custom_query.t ├── 02_database_size.t ├── 02_dbstats.t ├── 02_disabled_triggers.t ├── 02_disk_space.t ├── 02_fsm_pages.t ├── 02_fsm_relations.t ├── 02_hitratio.t ├── 02_last_analyze.t ├── 02_last_vacuum.t ├── 02_listener.t ├── 02_locks.t ├── 02_logfile.t ├── 02_new_version_bc.t ├── 02_new_version_box.t ├── 02_new_version_cp.t ├── 02_new_version_pg.t ├── 02_new_version_tnm.t ├── 02_pgagent_jobs.t ├── 02_pgbouncer_checksum.t ├── 02_prepared_txns.t ├── 02_query_runtime.t ├── 02_query_time.t ├── 02_relation_size.t ├── 02_replicate_row.t ├── 02_replication_slots.t ├── 02_same_schema.t ├── 02_sequence.t ├── 02_settings_checksum.t ├── 02_slony_status.t ├── 02_timesync.t ├── 02_txn_idle.t ├── 02_txn_time.t ├── 02_txn_wraparound.t ├── 02_version.t ├── 02_wal_files.t ├── 03_translations.t ├── 04_timeout.t ├── 05_docs.t ├── 99_cleanup.t ├── 99_perlcritic.t ├── 99_pod.t ├── 99_spellcheck.t └── CP_Testing.pm /.github/workflows/regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/.github/workflows/regression.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /.perlcriticrc: -------------------------------------------------------------------------------- 1 | perlcriticrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/MANIFEST.SKIP -------------------------------------------------------------------------------- /META.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/META.yml -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/README.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/README.md -------------------------------------------------------------------------------- /SIGNATURE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/SIGNATURE -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/TODO -------------------------------------------------------------------------------- /check_postgres.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/check_postgres.pl -------------------------------------------------------------------------------- /check_postgres.pl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/check_postgres.pl.asc -------------------------------------------------------------------------------- /check_postgres.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/check_postgres.pl.html -------------------------------------------------------------------------------- /perlcriticrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/perlcriticrc -------------------------------------------------------------------------------- /set_translations.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/set_translations.pl -------------------------------------------------------------------------------- /t/00_basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/00_basic.t -------------------------------------------------------------------------------- /t/00_release.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/00_release.t -------------------------------------------------------------------------------- /t/00_signature.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/00_signature.t -------------------------------------------------------------------------------- /t/00_test_tester.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/00_test_tester.t -------------------------------------------------------------------------------- /t/01_validate_range.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/01_validate_range.t -------------------------------------------------------------------------------- /t/02_autovac_freeze.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_autovac_freeze.t -------------------------------------------------------------------------------- /t/02_backends.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_backends.t -------------------------------------------------------------------------------- /t/02_bloat.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_bloat.t -------------------------------------------------------------------------------- /t/02_checkpoint.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_checkpoint.t -------------------------------------------------------------------------------- /t/02_cluster_id.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_cluster_id.t -------------------------------------------------------------------------------- /t/02_commitratio.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_commitratio.t -------------------------------------------------------------------------------- /t/02_connection.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_connection.t -------------------------------------------------------------------------------- /t/02_custom_query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_custom_query.t -------------------------------------------------------------------------------- /t/02_database_size.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_database_size.t -------------------------------------------------------------------------------- /t/02_dbstats.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_dbstats.t -------------------------------------------------------------------------------- /t/02_disabled_triggers.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_disabled_triggers.t -------------------------------------------------------------------------------- /t/02_disk_space.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_disk_space.t -------------------------------------------------------------------------------- /t/02_fsm_pages.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_fsm_pages.t -------------------------------------------------------------------------------- /t/02_fsm_relations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_fsm_relations.t -------------------------------------------------------------------------------- /t/02_hitratio.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_hitratio.t -------------------------------------------------------------------------------- /t/02_last_analyze.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_last_analyze.t -------------------------------------------------------------------------------- /t/02_last_vacuum.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_last_vacuum.t -------------------------------------------------------------------------------- /t/02_listener.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_listener.t -------------------------------------------------------------------------------- /t/02_locks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_locks.t -------------------------------------------------------------------------------- /t/02_logfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_logfile.t -------------------------------------------------------------------------------- /t/02_new_version_bc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_new_version_bc.t -------------------------------------------------------------------------------- /t/02_new_version_box.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_new_version_box.t -------------------------------------------------------------------------------- /t/02_new_version_cp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_new_version_cp.t -------------------------------------------------------------------------------- /t/02_new_version_pg.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_new_version_pg.t -------------------------------------------------------------------------------- /t/02_new_version_tnm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_new_version_tnm.t -------------------------------------------------------------------------------- /t/02_pgagent_jobs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_pgagent_jobs.t -------------------------------------------------------------------------------- /t/02_pgbouncer_checksum.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_pgbouncer_checksum.t -------------------------------------------------------------------------------- /t/02_prepared_txns.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_prepared_txns.t -------------------------------------------------------------------------------- /t/02_query_runtime.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_query_runtime.t -------------------------------------------------------------------------------- /t/02_query_time.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_query_time.t -------------------------------------------------------------------------------- /t/02_relation_size.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_relation_size.t -------------------------------------------------------------------------------- /t/02_replicate_row.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_replicate_row.t -------------------------------------------------------------------------------- /t/02_replication_slots.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_replication_slots.t -------------------------------------------------------------------------------- /t/02_same_schema.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_same_schema.t -------------------------------------------------------------------------------- /t/02_sequence.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_sequence.t -------------------------------------------------------------------------------- /t/02_settings_checksum.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_settings_checksum.t -------------------------------------------------------------------------------- /t/02_slony_status.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_slony_status.t -------------------------------------------------------------------------------- /t/02_timesync.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_timesync.t -------------------------------------------------------------------------------- /t/02_txn_idle.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_txn_idle.t -------------------------------------------------------------------------------- /t/02_txn_time.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_txn_time.t -------------------------------------------------------------------------------- /t/02_txn_wraparound.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_txn_wraparound.t -------------------------------------------------------------------------------- /t/02_version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_version.t -------------------------------------------------------------------------------- /t/02_wal_files.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/02_wal_files.t -------------------------------------------------------------------------------- /t/03_translations.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/03_translations.t -------------------------------------------------------------------------------- /t/04_timeout.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/04_timeout.t -------------------------------------------------------------------------------- /t/05_docs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/05_docs.t -------------------------------------------------------------------------------- /t/99_cleanup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/99_cleanup.t -------------------------------------------------------------------------------- /t/99_perlcritic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/99_perlcritic.t -------------------------------------------------------------------------------- /t/99_pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/99_pod.t -------------------------------------------------------------------------------- /t/99_spellcheck.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/99_spellcheck.t -------------------------------------------------------------------------------- /t/CP_Testing.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bucardo/check_postgres/HEAD/t/CP_Testing.pm --------------------------------------------------------------------------------