Skip to main content

Asset Management with semi-auto discovery processes

Project description

NetBox Inventory Monitor Plugin

A comprehensive NetBox plugin for asset management with semi-automatic discovery processes. This plugin extends NetBox with powerful inventory tracking capabilities, including asset lifecycle management, probe monitoring, contract tracking, and RMA (Return Merchandise Authorization) processing.

Version NetBox Python


Features

  • 🏷️ Asset Management: Track physical and logical assets with detailed metadata
  • 📊 Probe Monitoring: Visual status indicators for discovery data populated by external scripts (e.g., SNMP scans)
  • 📝 Contract Tracking: Manage contracts, contractors, and invoicing
  • 🔄 RMA Processing: Complete RMA workflow with serial number tracking
  • 🏢 External Inventory: Integration with external inventory systems
  • 🛠️ Asset Services: Track maintenance and service contracts
  • 📈 Lifecycle Management: Full asset lifecycle status tracking
  • 🔍 Advanced Search: Powerful filtering and search capabilities
  • 🎨 Visual Interface: Rich UI with status indicators and color coding
  • 🔌 NetBox Integration: Native NetBox plugin following best practices

Table of Contents


Data Model Overview

classDiagram
    class AssetType {
        +CharField name
        +SlugField slug
        +CharField description
        +ColorField color
    }

    class Asset {
        +CharField serial
        +CharField partnumber
        +CharField assignment_status
        +CharField lifecycle_status
        +GenericForeignKey assigned_object
        +ForeignKey type
        +ForeignKey order_contract
        +CharField project
        +CharField vendor
        +DecimalField price
        +CharField currency
        +DateField warranty_start
        +DateField warranty_end
        +is_recently_probed()
    }

    class AssetService {
        +DateField service_start
        +DateField service_end
        +DecimalField service_price
        +CharField service_currency
        +CharField service_category
        +CharField service_category_vendor
        +ForeignKey asset
        +ForeignKey contract
    }

    class Contract {
        +CharField name
        +CharField name_internal
        +ForeignKey contractor
        +CharField type
        +DecimalField price
        +CharField currency
        +DateField signed
        +DateField invoicing_start
        +DateField invoicing_end
        +ForeignKey parent
    }

    class Contractor {
        +CharField name
        +CharField company
        +CharField address
        +ForeignKey tenant
    }

    class Invoice {
        +CharField name
        +CharField project
        +ForeignKey contract
        +DecimalField price
        +CharField currency
        +DateField invoicing_start
        +DateField invoicing_end
    }

    class Probe {
        +DateTimeField time
        +CharField device_descriptor
        +CharField site_descriptor
        +CharField location_descriptor
        +CharField serial
        +ForeignKey device
        +ForeignKey site
        +ForeignKey location
        +JSONField discovered_data
        +is_recently_probed()
    }

    class RMA {
        +CharField rma_number
        +ForeignKey asset
        +CharField original_serial
        +CharField replacement_serial
        +CharField status
        +DateField date_issued
        +DateField date_replaced
        +update_asset_serial()
    }

    class ExternalInventory {
        +CharField inventory_number
        +CharField status
        +CharField project_code
        +CharField user_name
        +ManyToManyField assets
    }

    AssetType --> Asset : "type"
    Asset --> AssetService : "asset"
    Asset --> RMA : "asset"
    Asset --> Probe : "serial"
    Contract --> Asset : "order_contract"
    Contract --> AssetService : "contract"
    Contractor --> Contract : "contractor"
    Contract --> Invoice : "contract"
    Contract --> Contract : "parent"
    ExternalInventory --> Asset : "assets"

    Asset --> Device : "assigned_object"
    Asset --> Site : "assigned_object"
    Asset --> Location : "assigned_object"

Data Models

Core Models

Asset

The central model representing physical or logical inventory items.

Key Fields:

  • serial: Unique identifier for the asset
  • partnumber: Manufacturer part number
  • assignment_status: Current assignment status (stocked, assigned, retired, etc.)
  • lifecycle_status: Lifecycle stage (new, in_use, maintenance, decommissioned, etc.)
  • assigned_object: Generic foreign key to NetBox objects (Device, Site, Location, etc.)
  • type: Link to AssetType for categorization
  • order_contract: Associated purchase contract
  • price: Asset purchase price (nullable, 0 = free)
  • currency: Price currency (required only when price is set)
  • warranty_start/end: Warranty period tracking

Special Features:

  • Probe status integration with is_recently_probed() method
  • Generic assignment to any NetBox object
  • Integration with External Inventory systems
  • Multi-currency support with configurable currency symbols

Probe

Discovery and monitoring data collection points populated by external scripts (e.g., SNMP discovery tools).

Key Fields:

  • time: Timestamp of the probe data collection
  • serial: Links to Asset via serial number matching
  • device_descriptor, site_descriptor, location_descriptor: Context information from discovery
  • discovered_data: JSON field for flexible data storage from external tools
  • category: Probe type classification

Note: Probe data is populated by external discovery scripts, not generated by the plugin itself.

Contract & Contractor

Business relationship management.

Contract Features:

  • Hierarchical contracts (parent/child relationships)
  • Invoice tracking
  • Service associations
  • Asset procurement tracking
  • Multi-currency pricing support with configurable currencies
  • Currency required only when price is set (price can be None, 0, or > 0)

RMA (Return Merchandise Authorization)

Complete RMA workflow management.

Key Features:

  • Automatic serial number updates upon completion
  • Status tracking (investigating, authorized, shipped, completed, cancelled)
  • Integration with Asset lifecycle

AssetService

Service and maintenance contract tracking.

Features:

  • Service period management
  • Pricing with multi-currency support (service_price, service_currency)
  • Category tracking (service_category, service_category_vendor)
  • Links to both Assets and Contracts
  • Currency required only when service price is set

ExternalInventory

Integration with external inventory management systems.

Features:

  • Many-to-many relationship with Assets
  • Project code tracking
  • Status synchronization

Installation

Requirements

  • NetBox 4.4.0 or higher
  • Python 3.10 or higher

From PyPI (Recommended)

pip install inventory-monitor

From Source

git clone https://github.com/CESNET/inventory-monitor-plugin.git
cd inventory-monitor-plugin
pip install .

NetBox Configuration

  1. Add the plugin to your NetBox configuration.py:
PLUGINS = [
    "inventory_monitor",
]
  1. Run database migrations:
python manage.py migrate
  1. Restart NetBox services:
sudo systemctl restart netbox netbox-rq

Configuration

Plugin Settings

Configure the plugin in your NetBox configuration.py:

PLUGINS_CONFIG = {
    "inventory_monitor": {
        # Probe Status Settings
        "probe_recent_days": 7,  # Days to consider probe "recent"
        
        # Currency Settings
        "currencies": [
            ("CZK", "Czech Koruna", "Kč"),
            ("EUR", "Euro", "€"),
            ("USD", "US Dollar", "$"),
            ("GBP", "British Pound", "£"),
            ("JPY", "Japanese Yen", "¥"),
        ],
        "default_currency": "EUR",  # Default currency for new contracts
        
        # External Inventory Status Configuration
        "external_inventory_status_config": {
            "1": {"label": "Active", "color": "success"},
            "0": {"label": "Pending Activation", "color": "warning"},
            "2": {"label": "Decommissioned", "color": "danger"},
        },
        
        # Custom tooltip template for status display
        "external_inventory_tooltip_template": "<span class='badge text-bg-{color}'>{code}</span> {label}",
    }
}

Configuration Options

Probe Status Settings

  • probe_recent_days (default: 7): Number of days to consider a probe "recent". Affects visual indicators and status badges.

Currency Settings

  • currencies (default: see example above): List of available currencies for all financial models (Assets, Contracts, Invoices, AssetServices). Each item is a tuple of (currency_code, display_name, symbol). The symbol is optional - if not provided, the currency code will be used for display.
    • currency_code: Currency identifier with no length restriction (e.g., "EUR", "USD", "CZK", or custom codes)
    • display_name: Human-readable name shown in forms
    • symbol: Currency symbol for display (e.g., "€", "$", "Kč") - optional
  • default_currency (default: "EUR"): Default currency code used when creating new records. Must match one of the codes in the currencies list.

Price and Currency Logic:

  • price = None: No pricing information (not applicable/unknown)
  • price = 0: Free/no charge (explicitly zero) - currency optional
  • price > 0: Actual cost - currency required and validated
  • Currency is validated only when price is set and non-zero
  • All price fields are nullable with no defaults

External Inventory Status Configuration

  • external_inventory_status_config: Maps status codes to display labels and Bootstrap colors
  • external_inventory_tooltip_template: Template string for formatting status tooltips

Status Configuration Structure:

{
    "status_code": {
        "label": "Human readable label",
        "color": "bootstrap_color_class"  # primary, secondary, success, danger, warning, info, light, dark
    }
}

Template Variables:

  • {code}: The status code
  • {label}: The translated label
  • {color}: The Bootstrap color class

Integration with NetBox Attachments

For file attachments, install and configure netbox-attachments:

pip install netbox-attachments

Usage

Accessing the Plugin

After installation, the plugin adds an "Inventory Monitor" section to the NetBox navigation menu with the following sections:

Assets

  • Assets: Main asset inventory management
  • Asset Types: Asset categorization and classification
  • RMA: Return Merchandise Authorization tracking
  • External Inventory: External system integration
  • Services: Asset service and maintenance contracts

Network Probe

  • Probes: Discovery and monitoring data
  • Data Locations: Probe data organization

Contracts

  • Contractors: Vendor and service provider management
  • Contracts: Business agreement tracking
  • Invoices: Billing and invoice management

Basic Workflow

  1. Set up Asset Types: Define categories for your assets
  2. Add Contractors: Register vendors and service providers
  3. Create Contracts: Define business agreements
  4. Register Assets: Add inventory items with full metadata
  5. Populate Probe Data: Use external scripts (SNMP, discovery tools) to populate monitoring data
  6. Track Services: Manage maintenance and service contracts
  7. Process RMAs: Handle return merchandise authorizations

Probe Status Monitoring

The plugin provides visual feedback for probe status:

  • Green indicators: Recent probes (within configured days)
  • Red indicators: Stale probes (older than configured threshold)
  • Status badges: Clear visual indicators in asset lists and details

Asset Assignment

Assets can be assigned to any NetBox object using GenericForeignKey:

  • Devices
  • Sites
  • Locations
  • Racks
  • And more...

API

The plugin provides a full REST API following NetBox patterns:

Available Endpoints

  • /api/plugins/inventory-monitor/assets/ - Asset management
  • /api/plugins/inventory-monitor/asset-types/ - Asset type management
  • /api/plugins/inventory-monitor/probes/ - Probe data access
  • /api/plugins/inventory-monitor/contracts/ - Contract management
  • /api/plugins/inventory-monitor/contractors/ - Contractor management
  • /api/plugins/inventory-monitor/invoices/ - Invoice tracking
  • /api/plugins/inventory-monitor/asset-services/ - Service management
  • /api/plugins/inventory-monitor/rmas/ - RMA processing
  • /api/plugins/inventory-monitor/external-inventory/ - External inventory integration

API Features

  • Full CRUD operations on all models
  • Advanced filtering with NetBox's built-in filter backend
  • Pagination for large datasets
  • Search capabilities across relevant fields
  • Bulk operations for efficient data management
  • OpenAPI/Swagger documentation at /api/docs/

Development

Architecture Overview

The plugin follows NetBox plugin best practices:

Models Architecture

Asset ←→ Probe (via serial number matching)
Asset → AssetType
Asset → Contract (order_contract)
Asset ← GenericForeignKey (assigned to Device, Site, Location, etc.)
Asset ←→ RMA (via serial numbers)
Asset ←→ ExternalInventory (many-to-many)

Key Components

  1. Models: Core business logic with probe status methods
  2. Views: Standard NetBox generic views with enhancements
  3. Tables: Django-tables2 with probe status indicators
  4. Templates: Custom templates with integrated status visualization
  5. API: DRF-based REST API following NetBox patterns
  6. Configuration: Plugin settings via default_settings

Performance Considerations

  • Database Optimizations: Proper indexing on frequently queried fields
  • Query Optimization: Use of select_related() and prefetch_related()
  • Caching: Consider caching probe status for large asset lists

Settings Access Pattern

# Recommended approach
from inventory_monitor.settings import get_probe_recent_days
days = get_probe_recent_days()

# Alternative approach
from inventory_monitor.settings import get_plugin_settings
settings = get_plugin_settings()
days = settings.get("probe_recent_days", 7)

License

This project is licensed under the MIT License. See the LICENSE file for more details.


Acknowledgments

  • Built for the NetBox ecosystem
  • Part of the CESNET infrastructure management toolkit

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

inventory_monitor-11.1.0b1.tar.gz (74.0 kB view details)

Uploaded Source

File details

Details for the file inventory_monitor-11.1.0b1.tar.gz.

File metadata

  • Download URL: inventory_monitor-11.1.0b1.tar.gz
  • Upload date:
  • Size: 74.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for inventory_monitor-11.1.0b1.tar.gz
Algorithm Hash digest
SHA256 8a1a7182563271937c63c1830998966e6283dd351aba1a3e53c63c0a534475ac
MD5 da62e6977ace2ef96420096d32142087
BLAKE2b-256 0546833a0723364ad010338cb98fa1218d7cb8cb4f9d5f602f858f15c2a2ad81

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page