mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* add the softdeletes migrations for applications * add working migration file * add deleted_at to db schema.yaml for applications * update includes/html/forms/application-update.inc.php to work with softdeletes * update includes/html/pages/device/edit/apps.inc.php for softdelete * update includes/discovery/applications.inc.php to work with softdelete * minor updates to application-update.inc.php for disabling * style cleanup * set discovered when running discovery * update application tests to include deleted_at * add deleted_at to a missed test * a few more tweaks for opensips * add a missing deleted_at for linux_suricata_extract-v1 * fix fillable for Application model * massive cleanup of the application update widget thingy * improve the code for discovery and using Laravel * add a missing line to app/Models/Application * add a missing include to app/Models/Application.php * record includes for Application model * remove apps from the applications table when a device is deleted * revert to using upcert and where for discovery to fix CI * make discovered fillable and set it when running discovery... convert back to firstOrNew * clean up application discovery a bit and use observer * style fix * spelling fix... disablaed -> disabled * rever removal to just use where * cleanup app removal on delete * add restored to ModuleModelObserver * delete -> forcedelete fix * apply the suggested changes * use murrants other suggestion * style fix
89 lines
2.8 KiB
JSON
89 lines
2.8 KiB
JSON
{
|
|
"applications": {
|
|
"discovery": {
|
|
"applications": [
|
|
{
|
|
"app_type": "linux_softnet_stat",
|
|
"app_state": "UNKNOWN",
|
|
"discovered": "1",
|
|
"app_state_prev": null,
|
|
"app_status": "",
|
|
"app_instance": "",
|
|
"data": null,
|
|
"deleted_at": null
|
|
}
|
|
]
|
|
},
|
|
"poller": {
|
|
"applications": {
|
|
"0": {
|
|
"app_type": "linux_softnet_stat",
|
|
"app_state": "OK",
|
|
"discovered": "1",
|
|
"app_state_prev": "UNKNOWN",
|
|
"app_status": "",
|
|
"app_instance": "",
|
|
"data": "{\"budget\":\"300\",\"budget_usecs\":\"8000\"}",
|
|
"deleted_at": null
|
|
}
|
|
},
|
|
"application_metrics": [
|
|
{
|
|
"metric": "backlog_length",
|
|
"value": "0",
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "budget",
|
|
"value": "300",
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "budget_usecs",
|
|
"value": "8000",
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "cpu_collision",
|
|
"value": 0,
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "flow_limit",
|
|
"value": 0,
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "packet_dropped",
|
|
"value": 0,
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "packets",
|
|
"value": 395382025,
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "received_rps",
|
|
"value": 0,
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
},
|
|
{
|
|
"metric": "time_squeeze",
|
|
"value": 0,
|
|
"value_prev": null,
|
|
"app_type": "linux_softnet_stat"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|