├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── ZabbixSender ├── ZabbixPacket.py ├── ZabbixSender.py └── __init__.py ├── _config.yml ├── setup.py └── tests ├── Dockerfile ├── __init__.py ├── docker-compose.yml ├── prepare_test.sh ├── runtests.py ├── test_Full.py ├── test_ZabbixPacket.py ├── test_ZabbixSender.py ├── zabbix.sql └── zabbix_agentd.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/README.rst -------------------------------------------------------------------------------- /ZabbixSender/ZabbixPacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/ZabbixSender/ZabbixPacket.py -------------------------------------------------------------------------------- /ZabbixSender/ZabbixSender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/ZabbixSender/ZabbixSender.py -------------------------------------------------------------------------------- /ZabbixSender/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/ZabbixSender/__init__.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/_config.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/prepare_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/prepare_test.sh -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/test_Full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/test_Full.py -------------------------------------------------------------------------------- /tests/test_ZabbixPacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/test_ZabbixPacket.py -------------------------------------------------------------------------------- /tests/test_ZabbixSender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/test_ZabbixSender.py -------------------------------------------------------------------------------- /tests/zabbix.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/zabbix.sql -------------------------------------------------------------------------------- /tests/zabbix_agentd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksim77/zsender/HEAD/tests/zabbix_agentd.conf --------------------------------------------------------------------------------