Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renatoalmeidaoliveira/nbservice
Netbox Plugin for ITSM service mapping.
https://github.com/renatoalmeidaoliveira/nbservice
netbox-plugin
Last synced: about 2 months ago
JSON representation
Netbox Plugin for ITSM service mapping.
- Host: GitHub
- URL: https://github.com/renatoalmeidaoliveira/nbservice
- Owner: renatoalmeidaoliveira
- License: apache-2.0
- Created: 2022-04-22T20:59:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-21T19:49:21.000Z (6 months ago)
- Last Synced: 2024-07-21T21:16:34.741Z (6 months ago)
- Topics: netbox-plugin
- Language: Python
- Homepage:
- Size: 1.84 MB
- Stars: 47
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-netbox - renatoalmeidaoliveira/nbservice - Plugin for ITSM service mapping (Plugins)
README
# Netbox Nbservice
[Netbox](https://github.com/netbox-community/netbox) Plugin for ITSM service mapping.## Compatibility
| Plugin Version | NetBox Version | Tested on |
| ------------- |:-------------| :-----:|
| 1.0.7 | < 3.2.1 | 2.10.6; 2.11.12; 3.1.11; 3.2.1 |
| 2.0.0 | > 3.7.0, < 3.7.8 | 3.7.0, 3.7.4 |
| 3.0.0 | > 4.0.0 | 4.0.7 |
| 4.0.0 | > 4.1.0 | 4.1.0 |## Installation
Add the following line to /opt/netbox/local_requirements.txt with
```
nb-service
```Enable the plugin in /opt/netbox/netbox/netbox/configuration.py:
```
PLUGINS = ['nb_service']
```Runs /opt/netbox/upgrade.sh
```
sudo /opt/netbox/upgrade.sh
```## Configuration
```python
PLUGINS_CONFIG = {
"nb_service": {
"top_level_menu": True # If set to True the plugin will add a top level menu item for the plugin. If set to False the plugin will add a menu item under the Plugins menu item. Default is set to True.
},
}
```# Screenshots
## Versions 2.X
### Service List
![](docs/2_x_SvList.png)
### Service View
![](docs/2_x_SvView.png)
### Service Relations
![](docs/2_x_SvRelation.png)
### Service Diagram
![](docs/2_x_SvDiagram.png)
### Application List
![](docs/2_x_AppList.png)
### Application View
![](docs/2_x_AppView.png)
### Application Devices
![](docs/2_x_AppDevices.png)
## Versions 3.X
### Service List
![](docs/3_x_SvList.png)
### Service View
![](docs/3_x_SvView.png)
### Service Relations
![](docs/3_x_SvRelation.png)
### Service Diagram
![](docs/3_x_SvDiagram.png)
### Application List
![](docs/3_x_AppList.png)
### Application View
![](docs/3_x_AppView.png)
### Application Devices
![](docs/3_x_AppDevices.png)