├── .gitignore ├── LICENSE.md ├── README.md ├── db ├── README.md ├── backup.sh ├── move_items.py ├── rename.sh └── restore.sh ├── docs ├── requirements.md ├── zbx_changeMultipleTriggers.md ├── zbx_clone.md ├── zbx_deleteMonitors.md ├── zbx_deleted-linux.md ├── zbx_deleted.md ├── zbx_discovery-manager.md ├── zbx_historyGet.md └── zbx_hostgroupOrganizer.md ├── odbc ├── README.md └── test_odbc_connection.sh ├── requirements.txt ├── zbx_changeMultipleTriggers.py ├── zbx_clone.py ├── zbx_deleteMonitors.py ├── zbx_deleted-linux.py ├── zbx_deleted.py ├── zbx_discovery-manager.py ├── zbx_historyGet.py └── zbx_hostgroupOrganizer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/README.md -------------------------------------------------------------------------------- /db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/db/README.md -------------------------------------------------------------------------------- /db/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/db/backup.sh -------------------------------------------------------------------------------- /db/move_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/db/move_items.py -------------------------------------------------------------------------------- /db/rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/db/rename.sh -------------------------------------------------------------------------------- /db/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/db/restore.sh -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/zbx_changeMultipleTriggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_changeMultipleTriggers.md -------------------------------------------------------------------------------- /docs/zbx_clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_clone.md -------------------------------------------------------------------------------- /docs/zbx_deleteMonitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_deleteMonitors.md -------------------------------------------------------------------------------- /docs/zbx_deleted-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_deleted-linux.md -------------------------------------------------------------------------------- /docs/zbx_deleted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_deleted.md -------------------------------------------------------------------------------- /docs/zbx_discovery-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_discovery-manager.md -------------------------------------------------------------------------------- /docs/zbx_historyGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_historyGet.md -------------------------------------------------------------------------------- /docs/zbx_hostgroupOrganizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/docs/zbx_hostgroupOrganizer.md -------------------------------------------------------------------------------- /odbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/odbc/README.md -------------------------------------------------------------------------------- /odbc/test_odbc_connection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/odbc/test_odbc_connection.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/requirements.txt -------------------------------------------------------------------------------- /zbx_changeMultipleTriggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_changeMultipleTriggers.py -------------------------------------------------------------------------------- /zbx_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_clone.py -------------------------------------------------------------------------------- /zbx_deleteMonitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_deleteMonitors.py -------------------------------------------------------------------------------- /zbx_deleted-linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_deleted-linux.py -------------------------------------------------------------------------------- /zbx_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_deleted.py -------------------------------------------------------------------------------- /zbx_discovery-manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_discovery-manager.py -------------------------------------------------------------------------------- /zbx_historyGet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_historyGet.py -------------------------------------------------------------------------------- /zbx_hostgroupOrganizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globocom/zabbix-scripts/HEAD/zbx_hostgroupOrganizer.py --------------------------------------------------------------------------------