├── .gitignore ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ └── github.com │ └── garyburd │ └── redigo │ └── redis │ ├── conn.go │ ├── conn_test.go │ ├── doc.go │ ├── log.go │ ├── pool.go │ ├── pool_test.go │ ├── pubsub.go │ ├── pubsub_test.go │ ├── redis.go │ ├── reply.go │ ├── reply_test.go │ ├── scan.go │ ├── scan_test.go │ ├── script.go │ ├── script_test.go │ ├── test_test.go │ └── zpop_example_test.go ├── LICENSE ├── README.md ├── cache.go ├── check.go ├── hchecker.go └── test ├── base.py ├── requirements.txt ├── spawn_checks.py ├── test_codes.py ├── test_failures.py └── test_simple.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/.gitignore -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/conn_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pool_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/pubsub_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/redis.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/reply_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/scan_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/script.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/script_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/test_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/Godeps/_workspace/src/github.com/garyburd/redigo/redis/zpop_example_test.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/README.md -------------------------------------------------------------------------------- /cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/cache.go -------------------------------------------------------------------------------- /check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/check.go -------------------------------------------------------------------------------- /hchecker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/hchecker.go -------------------------------------------------------------------------------- /test/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/test/base.py -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- 1 | redis 2 | requests 3 | -------------------------------------------------------------------------------- /test/spawn_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/test/spawn_checks.py -------------------------------------------------------------------------------- /test/test_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/test/test_codes.py -------------------------------------------------------------------------------- /test/test_failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/test/test_failures.py -------------------------------------------------------------------------------- /test/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/hipache-hchecker/HEAD/test/test_simple.py --------------------------------------------------------------------------------