{"id":48744769,"url":"https://github.com/DanSheps/netbox-lifecycle","last_synced_at":"2026-04-28T07:00:53.113Z","repository":{"id":163762056,"uuid":"638475593","full_name":"DanSheps/netbox-lifecycle","owner":"DanSheps","description":"A Netbox plugin for managing Hardware EOL/EOS, and Support Contracts","archived":false,"fork":false,"pushed_at":"2026-03-26T01:08:12.000Z","size":299,"stargazers_count":102,"open_issues_count":10,"forks_count":19,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-03-26T22:59:18.343Z","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":"apache-2.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["dansheps"],"patreon":"dansheps","custom":"https://paypal.me/dansheps84?country.x=CA\u0026locale.x=en_US"}},"created_at":"2023-05-09T12:51:59.000Z","updated_at":"2026-03-26T01:08:18.000Z","dependencies_parsed_at":"2024-05-27T22:15:16.237Z","dependency_job_id":"74ea8139-51a8-4588-be47-5c241cd4a9b1","html_url":"https://github.com/DanSheps/netbox-lifecycle","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/DanSheps/netbox-lifecycle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-lifecycle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-lifecycle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-lifecycle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-lifecycle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DanSheps","download_url":"https://codeload.github.com/DanSheps/netbox-lifecycle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DanSheps%2Fnetbox-lifecycle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32370030,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"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":"2026-04-12T10:00:46.180Z","updated_at":"2026-04-28T07:00:53.108Z","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":["Python"],"sub_categories":[],"readme":"# NetBox Lifecycle Plugin\n\nThe Netbox Lifecycle plugin is a Hardware EOS/EOL, License and Support Contract tracking plugin for NetBox.\n\n## Features\n\n* Tracking EOL/EOS data for DeviceTypes and ModuleTypes\n* Tracking Licenses (assignable to Devices and Virtual Machines)\n* Tracking Support Contracts (assignable to Devices, Modules, and Virtual Machines)\n\n# Requirements\n\n* Netbox 4.1+\n* Python 3.10+\n\n## Compatibility Matrix\n\n|        | Netbox 3.2.x   | NetBox 4.1.x   | \n|--------|----------------|----------------|\n| 1.0.0+ | Compatible     | Not Compatible |\n| 1.1.3+ | Not Compatible | Compatible     |\n\n## Installation\n\nTo install, simply include this plugin in the plugins configuration section of netbox.\n\nExample:\n```python\n    PLUGINS = [\n        'netbox_lifecycle'\n    ],\n```\n\n## Configuration\n\nThe plugin can be configured via `PLUGINS_CONFIG` in your NetBox configuration file:\n\n```python\nPLUGINS_CONFIG = {\n    'netbox_lifecycle': {\n        'lifecycle_card_position': 'right_page',\n        'contract_card_position': 'right_page',\n    },\n}\n```\n\n### Available Settings\n\n| Setting | Default | Description |\n|---------|---------|-------------|\n| `lifecycle_card_position` | `right_page` | Position of the Hardware Lifecycle Info card on Device, Module, DeviceType, and ModuleType detail pages. Options: `left_page`, `right_page`, `full_width_page`. |\n| `contract_card_position` | `right_page` | Position of the Support Contracts card on Device and VirtualMachine detail pages. Options: `left_page`, `right_page`, `full_width_page`. |\n\n### Hardware Lifecycle Info Card\n\nDisplays EOL/EOS information for the hardware type on Device, Module, DeviceType, and ModuleType detail pages.\n\n### Support Contracts Card\n\nDisplays all contract assignments on Device and VirtualMachine detail pages, grouped by status:\n\n- **Active**: Contracts currently in effect\n- **Future**: Contracts with a start date in the future\n- **Unspecified**: Contracts without an end date\n- **Expired**: Contracts that have ended (lazy-loaded for performance)\n\n## Usage\n\nTBD\n\n## Additional Notes\n\nTBD\n\n## Contribute\n\nContributions are always welcome!  Please open an issue first before contributing as the scope is going to be kept\nintentionally narrow\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDanSheps%2Fnetbox-lifecycle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDanSheps%2Fnetbox-lifecycle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDanSheps%2Fnetbox-lifecycle/lists"}