Files
librenms-librenms/doc/API/System.md
Jellyfrog 8f474dd4d4 Rework documentation (#13709)
* Rework documentation

* Slightly adjust theme

* wip

* fixes

* Remove unneeded header

* Re-added Acknowledgement.md file

* Added Acknowledgement.md to mkdocs.yml

Co-authored-by: Neil Lathwood <gh+n@laf.io>
2022-02-08 23:02:28 +00:00

670 B

system

Display Librenms instance information.

Route: /api/v0/system

Input:

Example:

curl -H 'X-Auth-Token: YOURAPITOKENHERE' https://librenms.org/api/v0/system

Output:

{
    "status": "ok",
    "system": [
        {
            "local_ver": "1.37-234-g19103ee",
            "local_sha": "19103ee36f68f009272c15be22e5a7e10a8b0b85",
            "local_date": "1526480966",
            "local_branch": "master",
            "db_schema": 249,
            "php_ver": "7.2.2",
            "mysql_ver": "5.5.56-MariaDB",
            "rrdtool_ver": "1.4.8",
            "netsnmp_ver": "NET-SNMP 5.7.2"
        }
    ],
    "count": 1
}