NetBox plugin for device maintenance management with comprehensive REST API and Portuguese-BR support
Project description
NetBox Maintenance Device Plugin
A comprehensive NetBox plugin for managing device preventive and corrective maintenance with enhanced visual indicators, scheduling capabilities, and multi-language support.
Features
- Maintenance Plans: Create and manage maintenance plans for devices with configurable frequency
- Maintenance Executions: Record and track maintenance executions with status monitoring
- Device Integration: View maintenance history directly on device pages with dedicated tabs
- Quick Actions: Schedule and complete maintenance directly from the interface
- REST API: Complete REST API for external integrations and automation
- Advanced Filtering: Powerful filtering and search capabilities
- Custom Actions: Schedule, complete, and cancel maintenance via API
- Statistics: Get maintenance statistics and overdue/upcoming reports
Compatibility
| NetBox Version | Plugin Support | Notes |
|---|---|---|
| 4.5.x | Tested & Supported | Current target version |
| 4.4.x | Tested & Supported | Fully compatible |
| 4.3.x | Likely Compatible | Not officially tested |
| 4.2.x | Likely Compatible | Not officially tested |
| 4.1.x | Likely Compatible | Not officially tested |
| 4.0.x | Likely Compatible | Not officially tested |
| 3.x | Not Supported | Breaking changes |
Note: This version (v1.2.3) is specifically tested and certified for NetBox 4.5.x and 4.4.x. While it may work with other 4.x versions, we recommend testing in a development environment first.
Python Requirements: NetBox 4.5.x requires Python 3.12, 3.13, or 3.14. If you're using NetBox 4.4.x or earlier, you can use Python 3.8+.
Installation
Method 1: PyPI Installation (Recommended)
Now officially available on PyPI!
# Install the latest version
pip install netbox-maintenance-device
# Or install a specific version
pip install netbox-maintenance-device==1.2.3
For Docker deployments, add to your plugin_requirements.txt:
echo "netbox-maintenance-device>=1.2.3" >> plugin_requirements.txt
Method 2: GitHub Installation
# Install from GitHub (development version)
pip install git+https://github.com/diegogodoy06/netbox-maintenance-device.git
Method 3: Docker Installation
For Docker-based NetBox installations using netbox-docker:
📋 For detailed Docker installation instructions in English and Portuguese, see DOCKER_INSTALL.md
Configuration
Basic Configuration
Add the plugin to your NetBox configuration.py:
# configuration.py
PLUGINS = [
'netbox_maintenance_device',
# ... other plugins
]
# Optional: Plugin-specific settings
PLUGINS_CONFIG = {
'netbox_maintenance_device': {
# Future configuration options will be added here
# Currently, the plugin uses default settings
}
}
Language Configuration (Optional)
To enable Portuguese-BR by default:
# configuration.py
# Enable internationalization
USE_I18N = True
USE_L10N = True
# Set default language
LANGUAGE_CODE = 'pt-br'
TIME_ZONE = 'America/Sao_Paulo'
# Available languages
LANGUAGES = [
('en', 'English'),
('pt-br', 'Português (Brasil)'),
]
Restart Services
Restart your NetBox services:
# For systemd
sudo systemctl restart netbox netbox-rq
# For Docker
docker compose restart netbox netbox-worker
Usage
For detailed usage instructions, please refer to the USAGE.md guide, which includes:
- Creating and managing maintenance plans
- Scheduling and completing maintenance
- Monitoring maintenance status
- Using the REST API
- Troubleshooting common issues
Quick Start:
- Create maintenance plans for your devices
- View upcoming/overdue maintenance in the dashboard
- Use quick action buttons to schedule or complete maintenance
- Monitor device-specific maintenance on device pages
Screenshots
Device Maintenance Section
View maintenance plans and status directly on device pages
Upcoming Maintenance Dashboard
Monitor all upcoming and overdue maintenance across your infrastructure
Maintenance Plan Management
Create and manage maintenance plans with flexible scheduling
🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
📄 License
This project is licensed under the Apache 2.0 License - see the LICENSE file for details.
🙏 Acknowledgments
- NetBox community for the excellent platform
- Contributors and users providing feedback
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file netbox_maintenance_device-1.2.3.tar.gz.
File metadata
- Download URL: netbox_maintenance_device-1.2.3.tar.gz
- Upload date:
- Size: 43.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
094a34d46ff9f3e0c0b4ac7f6689ac2469f7813e517ee1d022fc3a346d36673b
|
|
| MD5 |
5a04425575025799597041195818bedb
|
|
| BLAKE2b-256 |
dfd77196cc7fe4423e2c24d58f3dd37af1f42e83bb06f20d799795358d339009
|
File details
Details for the file netbox_maintenance_device-1.2.3-py3-none-any.whl.
File metadata
- Download URL: netbox_maintenance_device-1.2.3-py3-none-any.whl
- Upload date:
- Size: 51.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42dc7e344ae1bdc9764791535f0b28c421a678a06b95e10b3271adc9d4aca42c
|
|
| MD5 |
8ff23d20f35b8db08d6f75c351b91b5a
|
|
| BLAKE2b-256 |
634f9efd16379d1bbced65634d188f8b8ce52f996521874815ad6b747de390b4
|