Arista EOS: Added groups and better sensor names (#11990)

* Arista EOS: Added groups and better sensor names

* Changed few sensors naming to remove redundancy

* Test files

* Better naming v2

* More rewriting and grouping

* And more grouping/rewritting

* Update arista_eos_vrf.json

* Minor code format fix

Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
TheGreatDoc 2020-08-18 15:36:14 +02:00 committed by GitHub
parent 29dae9cbbe
commit 29b09c8845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11096 additions and 386 deletions

View File

@ -71,7 +71,17 @@ if (!empty($entity_oids)) {
if ($descr) {
$descr = rewrite_entity_descr($descr);
} else {
$descr = $entity_array[$index]['entPhysicalDescr'];
// Better sensor names for Arista EOS. Remove some redundancy and improve them so they reflect to which unit they belong.
if ($device['os'] === 'arista_eos') {
$descr = $entity_array[$index]['entPhysicalDescr'];
if (preg_match("/(Input|Output) (voltage|current) sensor/i", $descr) || Str::startsWith($descr, 'Power supply') || preg_match('/^(Power Supply|Hotspot|Inlet|Board)/i', $descr)) {
$descr = ucwords($entity_array[substr_replace($index, '000', -3)]['entPhysicalDescr']) . " " . preg_replace('/(Voltage|Current|Power Supply) Sensor$/i', '', ucwords($entity_array[$index]['entPhysicalDescr']));
}
if (preg_match('/(temp|temperature) sensor$/i', $descr)) {
$descr = preg_replace('/(temp|temperature) sensor$/i', '', $descr);
}
}
// End better sensor names for Arista EOS.
$descr = rewrite_entity_descr($descr);
}
$valid_sensor = check_entity_sensor($descr, $device);
@ -183,8 +193,30 @@ if (!empty($entity_oids)) {
$high_limit = $entry['aristaEntSensorThresholdHighCritical'] / $divisor;
}
}
// Grouping sensors
$group = null;
if (preg_match("/DOM /i", $descr)) {
$group = "SFPs";
} elseif (preg_match('/PwrCon/', $descr)) {
$string = explode(' ', $descr);
if (preg_match('/PwrCon[0-9]/', $string[0])) {
$group = $string[0];
} else {
$group = preg_replace('/PwrCon/i', '', $string[0]);
}
$descr = preg_replace('/^.*?(PwrCon)[0-9]*/i', '', $descr);
} elseif (preg_match("/^(Trident.*|Jericho[0-9]|FM6000)/i", $descr)) {
// I only know replies for Trident|Jericho|FM6000 platform. If you have another please add to the preg_match
$group = "Platform";
} elseif (preg_match("/^(Power|PSU)/i", $descr)) {
$group = "PSUs";
} else {
$group = "System";
$descr = Str::replaceLast('temp sensor', '', $descr);
}
// End grouping sensors
}
discover_sensor($valid['sensor'], $type, $device, $oid, $index, 'entity-sensor', $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entry['entSensorMeasuredEntity']);
discover_sensor($valid['sensor'], $type, $device, $oid, $index, 'entity-sensor', $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, 'snmp', $entPhysicalIndex, $entry['entSensorMeasuredEntity'], null, $group);
}
}//end if
}//end foreach

View File

@ -36,6 +36,7 @@ function rewrite_entity_descr($descr)
$descr = str_replace('PMOD', 'PSU', $descr);
$descr = preg_replace('/^temperatures /', '', $descr);
$descr = preg_replace('/^voltages /', '', $descr);
$descr = str_replace('PowerSupply', 'PSU ', $descr);
return $descr;
}

File diff suppressed because it is too large Load Diff

View File

@ -6538,7 +6538,7 @@
"sensor_index": "100321211",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM TX Bias for Ethernet21",
"group": null,
"group": "SFPs",
"sensor_divisor": 100000,
"sensor_multiplier": 1,
"sensor_current": 0.01656,
@ -6562,7 +6562,7 @@
"sensor_index": "100322211",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM TX Bias for Ethernet22",
"group": null,
"group": "SFPs",
"sensor_divisor": 100000,
"sensor_multiplier": 1,
"sensor_current": 0.01843,
@ -6585,8 +6585,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711102",
"sensor_index": "100711102",
"sensor_type": "entity-sensor",
"sensor_descr": "Input current sensor",
"group": null,
"sensor_descr": "PSU 1 Input ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 0.34,
@ -6609,8 +6609,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711103",
"sensor_index": "100711103",
"sensor_type": "entity-sensor",
"sensor_descr": "Output current sensor",
"group": null,
"sensor_descr": "PSU 1 Output ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 5.5,
@ -6633,8 +6633,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721102",
"sensor_index": "100721102",
"sensor_type": "entity-sensor",
"sensor_descr": "Input current sensor",
"group": null,
"sensor_descr": "PSU 2 Input ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 0.31,
@ -6657,8 +6657,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721103",
"sensor_index": "100721103",
"sensor_type": "entity-sensor",
"sensor_descr": "Output current sensor",
"group": null,
"sensor_descr": "PSU 2 Output ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 5.25,
@ -6682,7 +6682,7 @@
"sensor_index": "100321212",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM TX Power for Ethernet21",
"group": null,
"group": "SFPs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": -6.556,
@ -6706,10 +6706,10 @@
"sensor_index": "100321213",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM RX Power for Ethernet21",
"group": null,
"group": "SFPs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": null,
"sensor_current": 0,
"sensor_limit": -3,
"sensor_limit_warn": -4,
"sensor_limit_low": -22.01,
@ -6730,7 +6730,7 @@
"sensor_index": "100322212",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM TX Power for Ethernet22",
"group": null,
"group": "SFPs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": -6.478,
@ -6754,10 +6754,10 @@
"sensor_index": "100322213",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM RX Power for Ethernet22",
"group": null,
"group": "SFPs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": null,
"sensor_current": 0,
"sensor_limit": -3,
"sensor_limit_warn": -4,
"sensor_limit_low": -22.01,
@ -6778,7 +6778,7 @@
"sensor_index": "100601111",
"sensor_type": "entity-sensor",
"sensor_descr": "Fan Tray 1 Fan 1 1",
"group": null,
"group": "System",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17460,
@ -6802,7 +6802,7 @@
"sensor_index": "100602111",
"sensor_type": "entity-sensor",
"sensor_descr": "Fan Tray 2 Fan 1 1",
"group": null,
"group": "System",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17820,
@ -6826,7 +6826,7 @@
"sensor_index": "100603111",
"sensor_type": "entity-sensor",
"sensor_descr": "Fan Tray 3 Fan 1 1",
"group": null,
"group": "System",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17820,
@ -6850,7 +6850,7 @@
"sensor_index": "100604111",
"sensor_type": "entity-sensor",
"sensor_descr": "Fan Tray 4 Fan 1 1",
"group": null,
"group": "System",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17820,
@ -6873,8 +6873,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711211",
"sensor_index": "100711211",
"sensor_type": "entity-sensor",
"sensor_descr": "PowerSupply1 Fan 1 1",
"group": null,
"sensor_descr": "PSU 1 Fan 1 1",
"group": "PSUs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17820,
@ -6897,8 +6897,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721211",
"sensor_index": "100721211",
"sensor_type": "entity-sensor",
"sensor_descr": "PowerSupply2 Fan 1 1",
"group": null,
"sensor_descr": "PSU 2 Fan 1 1",
"group": "PSUs",
"sensor_divisor": 1,
"sensor_multiplier": 1,
"sensor_current": 17820,
@ -6921,8 +6921,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006001",
"sensor_index": "100006001",
"sensor_type": "entity-sensor",
"sensor_descr": "Cpu temp sensor",
"group": null,
"sensor_descr": "Cpu ",
"group": "System",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 41.8,
@ -6945,8 +6945,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006002",
"sensor_index": "100006002",
"sensor_type": "entity-sensor",
"sensor_descr": "Rear temp sensor",
"group": null,
"sensor_descr": "Rear ",
"group": "System",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 39,
@ -6969,8 +6969,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006003",
"sensor_index": "100006003",
"sensor_type": "entity-sensor",
"sensor_descr": "Board temp sensor",
"group": null,
"sensor_descr": " Board ",
"group": "System",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 38,
@ -6993,8 +6993,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006004",
"sensor_index": "100006004",
"sensor_type": "entity-sensor",
"sensor_descr": "Front-panel temp sensor",
"group": null,
"sensor_descr": "Front-panel ",
"group": "System",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 35.9,
@ -7017,8 +7017,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006005",
"sensor_index": "100006005",
"sensor_type": "entity-sensor",
"sensor_descr": "Board temp sensor",
"group": null,
"sensor_descr": " Board ",
"group": "System",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 39,
@ -7041,8 +7041,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006006",
"sensor_index": "100006006",
"sensor_type": "entity-sensor",
"sensor_descr": "FM6000 temp sensor",
"group": null,
"sensor_descr": "FM6000 ",
"group": "Platform",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 44.1,
@ -7066,7 +7066,7 @@
"sensor_index": "100321201",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM Temperature for Ethernet21",
"group": null,
"group": "SFPs",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 41,
@ -7090,7 +7090,7 @@
"sensor_index": "100322201",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM Temperature for Ethernet22",
"group": null,
"group": "SFPs",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 44.8,
@ -7113,8 +7113,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711101",
"sensor_index": "100711101",
"sensor_type": "entity-sensor",
"sensor_descr": "Power supply sensor",
"group": null,
"sensor_descr": "PSU 1 ",
"group": "PSUs",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 35.5,
@ -7137,8 +7137,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721101",
"sensor_index": "100721101",
"sensor_type": "entity-sensor",
"sensor_descr": "Power supply sensor",
"group": null,
"sensor_descr": "PSU 2 ",
"group": "PSUs",
"sensor_divisor": 10,
"sensor_multiplier": 1,
"sensor_current": 35,
@ -7161,8 +7161,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006007",
"sensor_index": "100006007",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail1 12V standby",
"group": null,
"sensor_descr": " Rail1 12V standby",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 12.33,
@ -7185,8 +7185,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006008",
"sensor_index": "100006008",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail2 This rail isn't monitored",
"group": null,
"sensor_descr": " Rail2 This rail isn't monitored",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 0,
@ -7209,8 +7209,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006009",
"sensor_index": "100006009",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail3 5V",
"group": null,
"sensor_descr": " Rail3 5V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 4.93,
@ -7233,8 +7233,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006010",
"sensor_index": "100006010",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail4 3.3V",
"group": null,
"sensor_descr": " Rail4 3.3V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3.35,
@ -7257,8 +7257,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006011",
"sensor_index": "100006011",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail5 2.5V",
"group": null,
"sensor_descr": " Rail5 2.5V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 2.55,
@ -7281,8 +7281,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006012",
"sensor_index": "100006012",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail6 1.8V",
"group": null,
"sensor_descr": " Rail6 1.8V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.8,
@ -7305,8 +7305,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006013",
"sensor_index": "100006013",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail7 1.5V",
"group": null,
"sensor_descr": " Rail7 1.5V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.52,
@ -7329,8 +7329,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006014",
"sensor_index": "100006014",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail8 1.1V",
"group": null,
"sensor_descr": " Rail8 1.1V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.11,
@ -7353,8 +7353,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006015",
"sensor_index": "100006015",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail9 0.9V",
"group": null,
"sensor_descr": " Rail9 0.9V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 0.91,
@ -7377,8 +7377,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006016",
"sensor_index": "100006016",
"sensor_type": "entity-sensor",
"sensor_descr": "CpucardPwrCon Rail10 0.75V",
"group": null,
"sensor_descr": " Rail10 0.75V",
"group": "Cpucard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 0.75,
@ -7401,8 +7401,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006017",
"sensor_index": "100006017",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail1 POS12V",
"group": null,
"sensor_descr": " Rail1 POS12V",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 12.2,
@ -7425,8 +7425,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006018",
"sensor_index": "100006018",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail2 POS12_STDBY",
"group": null,
"sensor_descr": " Rail2 POS12_STDBY",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 11.96,
@ -7449,8 +7449,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006019",
"sensor_index": "100006019",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail3 POS5V_STDBY",
"group": null,
"sensor_descr": " Rail3 POS5V_STDBY",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 5,
@ -7473,8 +7473,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006020",
"sensor_index": "100006020",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail4 POS3V3_STDBY",
"group": null,
"sensor_descr": " Rail4 POS3V3_STDBY",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3.23,
@ -7497,8 +7497,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006021",
"sensor_index": "100006021",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail5 POS3V3",
"group": null,
"sensor_descr": " Rail5 POS3V3",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3.3,
@ -7521,8 +7521,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006022",
"sensor_index": "100006022",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail6 POS2V5",
"group": null,
"sensor_descr": " Rail6 POS2V5",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 2.49,
@ -7545,8 +7545,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006023",
"sensor_index": "100006023",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail7 POS_ALTA_AVDD",
"group": null,
"sensor_descr": " Rail7 POS_ALTA_AVDD",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.09,
@ -7569,8 +7569,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006024",
"sensor_index": "100006024",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail8 POS1V2",
"group": null,
"sensor_descr": " Rail8 POS1V2",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.19,
@ -7593,8 +7593,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006025",
"sensor_index": "100006025",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail9 POS_VDD_ALTA",
"group": null,
"sensor_descr": " Rail9 POS_VDD_ALTA",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.19,
@ -7617,8 +7617,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006026",
"sensor_index": "100006026",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail10 POS_VDDS",
"group": null,
"sensor_descr": " Rail10 POS_VDDS",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.2,
@ -7641,8 +7641,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006027",
"sensor_index": "100006027",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail11 POS3V3_VF",
"group": null,
"sensor_descr": " Rail11 POS3V3_VF",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3.25,
@ -7665,8 +7665,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006028",
"sensor_index": "100006028",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail12 POS1V2_GTP",
"group": null,
"sensor_descr": " Rail12 POS1V2_GTP",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.2,
@ -7689,8 +7689,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006029",
"sensor_index": "100006029",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail13 POS_GATEDRIVE",
"group": null,
"sensor_descr": " Rail13 POS_GATEDRIVE",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 6.32,
@ -7713,8 +7713,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006030",
"sensor_index": "100006030",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail14 POS2V5_156",
"group": null,
"sensor_descr": " Rail14 POS2V5_156",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 2.48,
@ -7737,8 +7737,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006031",
"sensor_index": "100006031",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail15 POS2V5_125",
"group": null,
"sensor_descr": " Rail15 POS2V5_125",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 2.48,
@ -7761,8 +7761,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006032",
"sensor_index": "100006032",
"sensor_type": "entity-sensor",
"sensor_descr": "SwitchcardPwrCon Rail16 PSU_OK",
"group": null,
"sensor_descr": " Rail16 PSU_OK",
"group": "Switchcard",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3,
@ -7785,8 +7785,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006033",
"sensor_index": "100006033",
"sensor_type": "entity-sensor",
"sensor_descr": "Chl822xPwrCon Rail1 POS_ALTA_AVDD",
"group": null,
"sensor_descr": " Rail1 POS_ALTA_AVDD",
"group": "Chl822x",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.19,
@ -7809,8 +7809,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100006034",
"sensor_index": "100006034",
"sensor_type": "entity-sensor",
"sensor_descr": "Chl822xPwrCon Rail2 POS_VDD_ALTA",
"group": null,
"sensor_descr": " Rail2 POS_VDD_ALTA",
"group": "Chl822x",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 1.19,
@ -7834,7 +7834,7 @@
"sensor_index": "100321202",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM Voltage for Ethernet21",
"group": null,
"group": "SFPs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3.26,
@ -7858,7 +7858,7 @@
"sensor_index": "100322202",
"sensor_type": "entity-sensor",
"sensor_descr": "DOM Voltage for Ethernet22",
"group": null,
"group": "SFPs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 3.27,
@ -7881,8 +7881,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711104",
"sensor_index": "100711104",
"sensor_type": "entity-sensor",
"sensor_descr": "Input voltage sensor",
"group": null,
"sensor_descr": "PSU 1 Input ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 227.5,
@ -7905,8 +7905,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100711105",
"sensor_index": "100711105",
"sensor_type": "entity-sensor",
"sensor_descr": "Output voltage sensor",
"group": null,
"sensor_descr": "PSU 1 Output ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 12.23,
@ -7929,8 +7929,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721104",
"sensor_index": "100721104",
"sensor_type": "entity-sensor",
"sensor_descr": "Input voltage sensor",
"group": null,
"sensor_descr": "PSU 2 Input ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 227.5,
@ -7953,8 +7953,8 @@
"sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.100721105",
"sensor_index": "100721105",
"sensor_type": "entity-sensor",
"sensor_descr": "Output voltage sensor",
"group": null,
"sensor_descr": "PSU 2 Output ",
"group": "PSUs",
"sensor_divisor": 100,
"sensor_multiplier": 1,
"sensor_current": 12.2,

File diff suppressed because it is too large Load Diff