NetBox Atlassian Plugin
Display Jira issues and Confluence pages related to devices in NetBox.
Features
- Device Tab - Shows Jira issues and Confluence pages mentioning device attributes
- VM Tab - Same functionality for Virtual Machines
- Configurable Search Fields - Search by hostname, serial, asset tag, role, IP, etc.
- OR Search Logic - Finds content matching any configured field
- On-Premise Support - Works with Jira Server/Data Center and Confluence Server/Data Center (tested)
- Cloud Ready - Prepared for Atlassian Cloud (not yet tested)
- Legacy SSL Support - Works with older servers requiring legacy SSL renegotiation
- PAT Authentication - Supports Personal Access Tokens for Confluence
- Caching - Results cached to reduce API calls
- Project/Space Filtering - Limit searches to specific Jira projects or Confluence spaces
Requirements
- NetBox 4.0+
- Python 3.10+
- Access to Jira and/or Confluence REST APIs
Installation
pip install netbox-atlassian
Add to configuration.py:
PLUGINS = [
"netbox_atlassian",
]
Configuration
PLUGINS_CONFIG = {
"netbox_atlassian": {
# Jira settings (on-prem)
"jira_url": "https://jira.example.com",
"jira_username": "api_user",
"jira_password": "api_token_or_password",
"jira_verify_ssl": True,
"jira_projects": [], # Empty = all projects
# Confluence settings (on-prem)
"confluence_url": "https://confluence.example.com",
"confluence_token": "personal-access-token", # PAT (preferred)
# OR use username/password:
# "confluence_username": "api_user",
# "confluence_password": "api_password",
"confluence_verify_ssl": True,
"confluence_spaces": [], # Empty = all spaces
# Search configuration
"search_fields": [
{"name": "Hostname", "attribute": "name", "enabled": True},
{"name": "Serial", "attribute": "serial", "enabled": True},
{"name": "Asset Tag", "attribute": "asset_tag", "enabled": False},
{"name": "Role", "attribute": "role.name", "enabled": False},
{"name": "Primary IP", "attribute": "primary_ip4.address", "enabled": False},
],
# Results limits
"jira_max_results": 10,
"confluence_max_results": 10,
# General
"timeout": 30,
"cache_timeout": 300,
"device_types": [], # Filter by manufacturer (empty = all)
"enable_legacy_ssl": False, # Enable for older servers
}
}
Search Fields
The search_fields configuration defines which device attributes are searched. Searches use OR logic - content matching any enabled field will be returned.
| Field | Attribute Path | Description |
|---|---|---|
| Hostname | name |
Device name |
| Serial | serial |
Serial number |
| Asset Tag | asset_tag |
Asset tag |
| Role | role.name |
Device role name |
| Primary IP | primary_ip4.address |
Primary IPv4 address |
| Site | site.name |
Site name |
| Tenant | tenant.name |
Tenant name |
Custom Fields
You can search custom fields using dot notation:
{"name": "CMDB ID", "attribute": "custom_field_data.cmdb_id", "enabled": True}
Screenshots
Device Tab
Shows Jira issues and Confluence pages in a split view:
- Left: Jira issues with key, summary, status, and type
- Right: Confluence pages with title, space, and breadcrumb
Settings Page
View current configuration and test connections to Jira/Confluence.
API Endpoints
The plugin adds these endpoints:
| Endpoint | Method | Description |
|---|---|---|
/plugins/atlassian/settings/ |
GET | View settings |
/plugins/atlassian/test-jira/ |
POST | Test Jira connection |
/plugins/atlassian/test-confluence/ |
POST | Test Confluence connection |
Troubleshooting
Connection Errors
- Verify URLs are correct and accessible from NetBox server
- Check username/password or API token
- For on-prem, ensure
verify_sslmatches your certificate setup - Check firewall rules allow outbound HTTPS
SSL Renegotiation Errors
If you see "unsafe legacy renegotiation disabled" errors, enable legacy SSL:
"enable_legacy_ssl": True,
This is required for some older Confluence/Jira servers.
No Results
- Verify search fields are enabled in configuration
- Check that Jira/Confluence content contains the device attributes
- Review project/space filters if configured
- Check API user has read permissions
Slow Performance
- Increase
cache_timeoutto reduce API calls - Reduce
max_resultsvalues - Use project/space filters to limit search scope
Development
git clone https://github.com/sieteunoseis/netbox-atlassian.git
cd netbox-atlassian
pip install -e ".[dev]"
# Run linting
black netbox_atlassian/
isort netbox_atlassian/
flake8 netbox_atlassian/
Changelog
See CHANGELOG.md for release history.
Support
If you find this plugin helpful, consider supporting development:
License
Apache 2.0
Author
sieteunoseis
Release files for netbox-atlassian 0.5.9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| netbox_atlassian-0.5.9.tar.gz | 49.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| netbox_atlassian-0.5.9-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 115.1 kB
Release files / netbox_atlassian-0.5.9.tar.gz
| Download URL | netbox_atlassian-0.5.9.tar.gz |
|---|---|
| Size | 49.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f636fb93e598fe03d23be5ee9ee76c04cdc62be9d357f7e83fbcfbe10b590ea3
|
|
BLAKE2b-256 checksum How to use checksums |
ba9762875324d4dd0f40d3a2eedfe625a84f8f3c491ae3bf7bf6b349d9a8fc8f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on May 5, 2026.
Transparency logRelease files / netbox_atlassian-0.5.9-py3-none-any.whl
| Download URL | netbox_atlassian-0.5.9-py3-none-any.whl |
|---|---|
| Size | 66.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a9fc68a484e232e0714d9b913a0c996ea0021a31b50762e581db982e1d4798f6
|
|
BLAKE2b-256 checksum How to use checksums |
4f6d294485a519b22594799f5a53e49e01523f0fe38f848451f66d5a182698cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on May 5, 2026.
Transparency log