├── .gitignore ├── README.md ├── ZabbixMap ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── mapmanager ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── base.html │ ├── map_form.html │ └── map_result.html ├── tests.py ├── urls.py ├── views.py └── zabbix_api │ ├── __init__.py │ ├── config-example.py │ ├── createElements.py │ ├── createLinks.py │ ├── createMap.py │ ├── createSysmap.py │ ├── getCdpItems.py │ ├── getHosts.py │ ├── getMapID.py │ ├── mapLog.py │ └── zabbixApiAuth.py ├── requirements.txt └── static └── ZabbixMap └── image ├── favicon-16x16.png ├── favicon-32x32.png └── favicon.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/README.md -------------------------------------------------------------------------------- /ZabbixMap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZabbixMap/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/ZabbixMap/asgi.py -------------------------------------------------------------------------------- /ZabbixMap/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/ZabbixMap/settings.py -------------------------------------------------------------------------------- /ZabbixMap/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/ZabbixMap/urls.py -------------------------------------------------------------------------------- /ZabbixMap/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/ZabbixMap/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/manage.py -------------------------------------------------------------------------------- /mapmanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapmanager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/admin.py -------------------------------------------------------------------------------- /mapmanager/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/apps.py -------------------------------------------------------------------------------- /mapmanager/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/forms.py -------------------------------------------------------------------------------- /mapmanager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapmanager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/models.py -------------------------------------------------------------------------------- /mapmanager/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/templates/base.html -------------------------------------------------------------------------------- /mapmanager/templates/map_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/templates/map_form.html -------------------------------------------------------------------------------- /mapmanager/templates/map_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/templates/map_result.html -------------------------------------------------------------------------------- /mapmanager/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/tests.py -------------------------------------------------------------------------------- /mapmanager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/urls.py -------------------------------------------------------------------------------- /mapmanager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/views.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapmanager/zabbix_api/config-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/config-example.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/createElements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/createElements.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/createLinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/createLinks.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/createMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/createMap.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/createSysmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/createSysmap.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/getCdpItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/getCdpItems.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/getHosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/getHosts.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/getMapID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/getMapID.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/mapLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/mapLog.py -------------------------------------------------------------------------------- /mapmanager/zabbix_api/zabbixApiAuth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/mapmanager/zabbix_api/zabbixApiAuth.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/ZabbixMap/image/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/static/ZabbixMap/image/favicon-16x16.png -------------------------------------------------------------------------------- /static/ZabbixMap/image/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/static/ZabbixMap/image/favicon-32x32.png -------------------------------------------------------------------------------- /static/ZabbixMap/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheuskshn/Zabbix-Map-Manager/HEAD/static/ZabbixMap/image/favicon.ico --------------------------------------------------------------------------------