Data Retrieval from external monitoring systems #1545

Closed
opened 2025-12-29 16:32:50 +01:00 by adam · 2 comments
Owner

Originally created by @girlpunk on GitHub (Feb 8, 2018).

Issue type

[X] Feature request
[ ] Bug report
[ ] Documentation

Environment

  • Python version: 3.5.3
  • NetBox version: 2.2.9

Description

Netbox provides an excellent overview of Layer 1-3 of a network, however the ability to see real-time status information alongside the plans would be very useful. Providing a full monitoring system is out-of-scope for Netbox, however it seems simple to load an external status (simply OK or fault) from another system. Ideally, this could be implemented similar to the reports section, as this would enable support for new monitoring systems to be easily implemented as necessary.

Originally created by @girlpunk on GitHub (Feb 8, 2018). <!-- Before opening a new issue, please search through the existing issues to see if your topic has already been addressed. Note that you may need to remove the "is:open" filter from the search bar to include closed issues. Check the appropriate type for your issue below by placing an x between the brackets. For assistance with installation issues, or for any other issues other than those listed below, please raise your topic for discussion on our mailing list: https://groups.google.com/forum/#!forum/netbox-discuss Please note that issues which do not fall under any of the below categories will be closed. Due to an excessive backlog of feature requests, we are not currently accepting any proposals which extend NetBox's feature scope. Do not prepend any sort of tag to your issue's title. An administrator will review your issue and assign labels as appropriate. ---> ### Issue type [X] Feature request <!-- An enhancement of existing functionality --> [ ] Bug report <!-- Unexpected or erroneous behavior --> [ ] Documentation <!-- A modification to the documentation --> <!-- Please describe the environment in which you are running NetBox. (Be sure to verify that you are running the latest stable release of NetBox before submitting a bug report.) If you are submitting a bug report and have made any changes to the code base, please first validate that your bug can be recreated while running an official release. --> ### Environment * Python version: 3.5.3 * NetBox version: 2.2.9 <!-- BUG REPORTS must include: * A list of the steps needed for someone else to reproduce the bug * A description of the expected and observed behavior * Any relevant error messages (screenshots may also help) FEATURE REQUESTS must include: * A detailed description of the proposed functionality * A use case for the new feature * A rough description of any necessary changes to the database schema * Any relevant third-party libraries which would be needed --> ### Description Netbox provides an excellent overview of Layer 1-3 of a network, however the ability to see real-time status information alongside the plans would be very useful. Providing a full monitoring system is out-of-scope for Netbox, however it seems simple to load an external status (simply `OK` or `fault`) from another system. Ideally, this could be implemented similar to the reports section, as this would enable support for new monitoring systems to be easily implemented as necessary.
adam closed this issue 2025-12-29 16:32:50 +01:00
Author
Owner

@girlpunk commented on GitHub (Feb 9, 2018):

Started working on this here. Very rough at the moment, but putting something like the below into the monitoring folder makes devices look like this:

image

from dcim.monitoring import Monitoring
    
class TestMonitoring(Monitoring):
    def get(self, object):
        self.log_default("Unknown")
        self.log_ok("OK")
        self.log_info("Hello, World")
        self.log_warning("Might break soon")
        self.log_failure("Just exploded!")
@girlpunk commented on GitHub (Feb 9, 2018): Started working on this [here](https://github.com/cyberjacob/netbox/commit/cf22aa095d25463da14ccf5e8faf959a4d8f6775). Very rough at the moment, but putting something like the below into the monitoring folder makes devices look like this: ![image](https://user-images.githubusercontent.com/161093/36039206-b883985c-0db9-11e8-8d6f-02a9eb6074d6.png) ```python from dcim.monitoring import Monitoring class TestMonitoring(Monitoring): def get(self, object): self.log_default("Unknown") self.log_ok("OK") self.log_info("Hello, World") self.log_warning("Might break soon") self.log_failure("Just exploded!") ```
Author
Owner

@jeremystretch commented on GitHub (Feb 13, 2018):

I have to reject this feature request as out of scope for NetBox. #969 will allow for predictive linking to external NMS and other systems, but that's as far as we'll go. Implementing the ability for NetBox to directly pull information from other systems would open a Pandora's box of development, performance, and security issues.

@jeremystretch commented on GitHub (Feb 13, 2018): I have to reject this feature request as out of scope for NetBox. #969 will allow for predictive linking to external NMS and other systems, but that's as far as we'll go. Implementing the ability for NetBox to directly pull information from other systems would open a Pandora's box of development, performance, and security issues.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#1545