{"id":17918349,"url":"https://github.com/dansheps/netbox-zabbix","last_synced_at":"2025-08-10T21:06:05.234Z","repository":{"id":137531815,"uuid":"554320335","full_name":"DanSheps/netbox-zabbix","owner":"DanSheps","description":"Netbox Zabbix Sync Plugin","archived":false,"fork":false,"pushed_at":"2025-01-08T06:23:29.000Z","size":44,"stargazers_count":17,"open_issues_count":3,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-04T19:52:43.852Z","etag":null,"topics":["netbox-plugin"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DanSheps.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["dansheps"],"patreon":"dansheps","custom":"https://paypal.me/dansheps84?country.x=CA\u0026locale.x=en_US"}},"created_at":"2022-10-19T16:03:09.000Z","updated_at":"2025-03-31T21:41:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"ad05992b-f3f1-4c45-832e-52c81ccda5da","html_url":"https://github.com/DanSheps/netbox-zabbix","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/DanSheps/netbox-zabbix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-zabbix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-zabbix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-zabbix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-zabbix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DanSheps","download_url":"https://codeload.github.com/DanSheps/netbox-zabbix/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-zabbix/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269787316,"owners_count":24475716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["netbox-plugin"],"created_at":"2024-10-28T20:10:52.734Z","updated_at":"2025-08-10T21:06:05.202Z","avatar_url":"https://github.com/DanSheps.png","language":"Python","funding_links":["https://github.com/sponsors/dansheps","https://patreon.com/dansheps","https://paypal.me/dansheps84?country.x=CA\u0026locale.x=en_US"],"categories":[],"sub_categories":[],"readme":"# Netbox Zabbix\n\nA plugin to sync NetBox to Zabbix.\n\n# Features\n\n* Automatically update/delete zabbix with device information\n\n# Installation\n\n1. Install the plugin within your environment (pip install netbox-zabbix)\n2. Create required configurations within NetBox:\n   - username: Zabbix username\n   - password: Zabbix password\n   - tags: A list of tags to filter on for determining if the signal should fire.  Optional\n   - snmp: dictionary with various SNMP settings.  Optional\n   - group: Default host group.  Optional\n3. Optionally, configure additional settings using configuration contexts with the root dictionary name of \"zabbix\":\n   - Dictionary with the same settings available within the configuration.\n4. Create a custom field to hold the zabbix host id:\n   - Name: `zabbix_hostid`\n   - Content type: `Device`\n   - Label: `Zabbix Host ID`\n   - Type: `Integer`\n   - Required: `False`\n   - UI visibility: `readonly`\n5. Optionally, create a custom field to hold the zabbix host group id, if not using the default set group or configuration contexts\n   - Name: `zabbix_group`\n   - Content type: `Device Type`\n   - Label: `Zabbix Group`\n   - Type: `Integer`\n   - Required: `False`\n   - UI visibility:`read/write`\n   \n# SNMP Configuration\n\nThe SNMP configuration is quite robust and for pushing to Zabbix.\n\nThe SNMP dictionary can include any of the following:\n\n```python\n{\n    'version': '2c',  # 1, 2c, 3\n    'community': None,\n    'context': None,\n    'username': None,\n    'level': None,  # None, noAuthNoPriv, authNoPriv, authPriv\n    'auth_protocol': None,  # None, MD5, SHA1, SHA224, SHA256, SHA384, SHA512\n    'auth_passphrase': None,\n    'priv_protocol': None,  # None, DES, AES128, AES192, AES256, AES192C, AES256C\n    'priv_passphrase': None,\n}\n```\n\n# Config Contexts\n\nConfiguration Zabbix settings using Config Contexts within NetBox is available as well, which provide a much more robust configuration platform.  Any options from the settings can be used within the configuration context.\n\nConfiuration context could look like:\n\n```python\n{\n    'snmp': { 'community': 'public'},\n    'tags': ['zabbix']\n}\n```\n\n# Future\n\n* Separate model for storing Zabbix information (instead of custom field)\n* Separate model for storing configuration information (Remove config contexts, configuration parameters)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdansheps%2Fnetbox-zabbix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdansheps%2Fnetbox-zabbix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdansheps%2Fnetbox-zabbix/lists"}