mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
ISIS-adjacency polling support (#12461)
* init
* Add adjacency polling support
* Format messages
* Fix prints
* Apply fixes from StyleCI
* Fix schema
* Schema fix
* Alert rule example
* Remove display format
* Change option order
* Add test data
* Add test data
* Test data
* Review fixes
* Remove duplicate MIB-file
* Add cleanup
* Fix
* Print fix
* Remove extra cleanup
* Revert "Remove duplicate MIB-file"
This reverts commit 4b3cf8127c.
* Remove unneeded MIB-files
* Add check for empty array
* Apply fixes from StyleCI
* Review fixes
* StyleCI
* StyleCI
* Apply fixes from StyleCI
* typo
* Update function calls on pages
* Linting fixes
* Apply fixes from StyleCI
* Discovery module
* Add discovery module
* Apply fixes from StyleCI
* Update example alert rule
Co-authored-by: ottorei <[email protected]>
Co-authored-by: PipoCanaja <[email protected]>
This commit is contained in:
co-authored by
ottorei
PipoCanaja
parent
84c6d215cf
commit
69397ea70f
@@ -654,6 +654,11 @@ class Device extends BaseModel
|
||||
return $this->hasMany(\App\Models\OspfPort::class, 'device_id');
|
||||
}
|
||||
|
||||
public function isisAdjacencies(): HasMany
|
||||
{
|
||||
return $this->hasMany(\App\Models\IsisAdjacency::class, 'device_id', 'device_id');
|
||||
}
|
||||
|
||||
public function netscalerVservers(): HasMany
|
||||
{
|
||||
return $this->hasMany(NetscalerVserver::class, 'device_id');
|
||||
|
||||
Reference in New Issue
Block a user