mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: Move more state sensors to yaml * Fix errors.. * Update comware.yaml * Update ddnos.yaml * Update dell-ups.yaml * Update mimosa.yaml * Update waas.yaml * added some test data for comware and dell-ups * added mimosa test data * re-saved comware test data * set arp-table sort order. remove unneeded modules from mimosa * remove arp-table it doesn't work yet * remove deleted sensors and mempools (which have no snmp data)
45 lines
2.0 KiB
YAML
45 lines
2.0 KiB
YAML
mib: SFA-INFO
|
|
modules:
|
|
sensors:
|
|
state:
|
|
data:
|
|
-
|
|
oid: tempTable
|
|
value: tempStatus
|
|
num_oid: .1.3.6.1.4.1.6894.2.2.1.4.
|
|
descr: 'Temperature Sensor {{ $index }}'
|
|
index: '{{ $index }}'
|
|
states:
|
|
- { value: 1, descr: normal, graph: 1, generic: 0 }
|
|
- { value: 2, descr: warning, graph: 1, generic: 1 }
|
|
- { value: 3, descr: critical, graph: 1, generic: 2 }
|
|
-
|
|
oid: fanTable
|
|
value: fanStatus
|
|
num_oid: .1.3.6.1.4.1.6894.2.4.1.4.
|
|
descr: 'Fan Sensor {{ $index }}'
|
|
index: '{{ $index }}'
|
|
states:
|
|
- { value: 1, descr: healthy, graph: 1, generic: 0 }
|
|
- { value: 2, descr: failure, graph: 1, generic: 2 }
|
|
-
|
|
oid: powerTable
|
|
value: powerStatus
|
|
num_oid: .1.3.6.1.4.1.6894.2.6.1.4.
|
|
descr: 'Power Supply Sensor {{ $index }}'
|
|
index: '{{ $index }}'
|
|
states:
|
|
- { value: 1, descr: healthy, graph: 1, generic: 0 }
|
|
- { value: 2, descr: failure, graph: 1, generic: 2 }
|
|
-
|
|
oid: physicalDiskTable
|
|
value: physDiskState
|
|
num_oid: .1.3.6.1.4.1.6894.2.9.1.7.
|
|
descr: 'Disk Sensor {{ $index }}'
|
|
index: '{{ $index }}'
|
|
states:
|
|
- { value: 1, descr: normal, graph: 1, generic: 0 }
|
|
- { value: 2, descr: failed, graph: 1, generic: 2 }
|
|
- { value: 3, descr: predictedfailure, graph: 1, generic: 1 }
|
|
- { value: 4, descr: unknown, graph: 1, generic: 3 }
|