├── .github └── workflows │ └── create-release.yml ├── .gitignore ├── CHANGELOG.txt ├── LICENSE.txt ├── README.rst ├── extensions ├── __init__.py └── zabbix.py ├── template-app-redis-sentinel.j2 ├── template-app-redis-server.j2 └── zabbix-redis.py /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/README.rst -------------------------------------------------------------------------------- /extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/extensions/__init__.py -------------------------------------------------------------------------------- /extensions/zabbix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/extensions/zabbix.py -------------------------------------------------------------------------------- /template-app-redis-sentinel.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/template-app-redis-sentinel.j2 -------------------------------------------------------------------------------- /template-app-redis-server.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/template-app-redis-server.j2 -------------------------------------------------------------------------------- /zabbix-redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenta/zabbix-template-for-redis/HEAD/zabbix-redis.py --------------------------------------------------------------------------------