diff --git a/LibreNMS/Interfaces/Module.php b/LibreNMS/Interfaces/Module.php index 35c6078dd6..42b73b93d0 100644 --- a/LibreNMS/Interfaces/Module.php +++ b/LibreNMS/Interfaces/Module.php @@ -83,9 +83,7 @@ interface Module * Make sure to hide transient fields, such as id and date. * You should always order the data by a non-transient column. * Some id fields may need to be joined to tie back to non-transient data. - * Module may return false if testing is not supported or required. - * - * @return array|false + * Module may return null if testing is not supported or required. */ - public function dump(Device $device); + public function dump(Device $device, string $type): ?array; } diff --git a/LibreNMS/Modules/Availability.php b/LibreNMS/Modules/Availability.php index ee283453cc..b935610f63 100644 --- a/LibreNMS/Modules/Availability.php +++ b/LibreNMS/Modules/Availability.php @@ -116,8 +116,12 @@ class Availability implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { + if ($type == 'discovery') { + return null; + } + return [ 'availability' => $device->availability()->orderBy('duration') ->get()->map->makeHidden(['availability_id', 'device_id']), diff --git a/LibreNMS/Modules/Core.php b/LibreNMS/Modules/Core.php index 281af8bf32..b6682d6ec8 100644 --- a/LibreNMS/Modules/Core.php +++ b/LibreNMS/Modules/Core.php @@ -138,9 +138,9 @@ class Core implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { - return false; // all data here is stored in the devices table and covered by the os module + return null; // all data here is stored in the devices table and covered by the os module } /** diff --git a/LibreNMS/Modules/EntityPhysical.php b/LibreNMS/Modules/EntityPhysical.php index 8bb32ab9cc..1b60399db6 100644 --- a/LibreNMS/Modules/EntityPhysical.php +++ b/LibreNMS/Modules/EntityPhysical.php @@ -74,7 +74,7 @@ class EntityPhysical implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'entPhysical' => $device->entityPhysical()->orderBy('entPhysicalIndex') diff --git a/LibreNMS/Modules/Isis.php b/LibreNMS/Modules/Isis.php index 5166b6c97f..6075367b6a 100644 --- a/LibreNMS/Modules/Isis.php +++ b/LibreNMS/Modules/Isis.php @@ -205,7 +205,7 @@ class Isis implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'isis_adjacencies' => $device->isisAdjacencies()->orderBy('index') diff --git a/LibreNMS/Modules/LegacyModule.php b/LibreNMS/Modules/LegacyModule.php index 9640822312..40a85cf301 100644 --- a/LibreNMS/Modules/LegacyModule.php +++ b/LibreNMS/Modules/LegacyModule.php @@ -42,7 +42,7 @@ class LegacyModule implements Module /** @var array */ private $module_deps = [ 'arp-table' => ['ports'], - 'bgp-peers' => ['ports', 'vrf'], + 'bgp-peers' => ['ports', 'vrf', 'ipv4-addresses', 'ipv6-addresses'], 'cisco-mac-accounting' => ['ports'], 'fdb-table' => ['ports', 'vlans'], 'vlans' => ['ports'], @@ -130,12 +130,19 @@ class LegacyModule implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { + if ($type == 'discovery' && ! \LibreNMS\Util\Module::legacyDiscoveryExists($this->name)) { + return null; + } + if ($type == 'poller' && ! \LibreNMS\Util\Module::legacyPollingExists($this->name)) { + return null; + } + $data = []; $dump_rules = $this->moduleDumpDefinition(); if (empty($dump_rules)) { - return false; // not supported for this legacy module + return null; // not supported for this legacy module } foreach ($dump_rules as $table => $info) { diff --git a/LibreNMS/Modules/Mempools.php b/LibreNMS/Modules/Mempools.php index 111dc3d055..dc6f3d0e91 100644 --- a/LibreNMS/Modules/Mempools.php +++ b/LibreNMS/Modules/Mempools.php @@ -161,7 +161,7 @@ class Mempools implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'mempools' => $device->mempools()->orderBy('mempool_type')->orderBy('mempool_id') diff --git a/LibreNMS/Modules/Mpls.php b/LibreNMS/Modules/Mpls.php index b2cf1bf1c4..92379ad5b1 100644 --- a/LibreNMS/Modules/Mpls.php +++ b/LibreNMS/Modules/Mpls.php @@ -198,7 +198,7 @@ class Mpls implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'mpls_lsps' => $device->mplsLsps()->orderBy('vrf_oid')->orderBy('lsp_oid') diff --git a/LibreNMS/Modules/Nac.php b/LibreNMS/Modules/Nac.php index 9f830cf977..2f10c0b3f4 100644 --- a/LibreNMS/Modules/Nac.php +++ b/LibreNMS/Modules/Nac.php @@ -130,8 +130,12 @@ class Nac implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { + if ($type == 'discovery') { + return null; + } + return [ 'ports_nac' => $device->portsNac()->orderBy('ports.ifIndex')->orderBy('mac_address') ->leftJoin('ports', 'ports_nac.port_id', 'ports.port_id') diff --git a/LibreNMS/Modules/Netstats.php b/LibreNMS/Modules/Netstats.php index dbff4387c7..ab2d288613 100644 --- a/LibreNMS/Modules/Netstats.php +++ b/LibreNMS/Modules/Netstats.php @@ -243,9 +243,9 @@ class Netstats implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { - return false; // no database data to dump (may add rrd later) + return null; // no database data to dump (may add rrd later) } private function statName(string $oid): string diff --git a/LibreNMS/Modules/Os.php b/LibreNMS/Modules/Os.php index 8ae3ef75d4..922e32e8f3 100644 --- a/LibreNMS/Modules/Os.php +++ b/LibreNMS/Modules/Os.php @@ -125,7 +125,7 @@ class Os implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { // get data fresh from the database return [ diff --git a/LibreNMS/Modules/Ospf.php b/LibreNMS/Modules/Ospf.php index a839e593c1..ab49ccc718 100644 --- a/LibreNMS/Modules/Ospf.php +++ b/LibreNMS/Modules/Ospf.php @@ -267,16 +267,27 @@ class Ospf implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { + if ($type == 'discovery') { + return null; + } + return [ 'ospf_ports' => $device->ospfPorts() ->leftJoin('ports', 'ospf_ports.port_id', 'ports.port_id') ->select(['ospf_ports.*', 'ifIndex']) + ->orderBy('ospf_port_id')->orderBy('context_name') ->get()->map->makeHidden(['id', 'device_id', 'port_id']), - 'ospf_instances' => $device->ospfInstances->map->makeHidden(['id', 'device_id']), - 'ospf_areas' => $device->ospfAreas->map->makeHidden(['id', 'device_id']), - 'ospf_nbrs' => $device->ospfNbrs->map->makeHidden(['id', 'device_id']), + 'ospf_instances' => $device->ospfInstances() + ->orderBy('ospf_instance_id')->orderBy('context_name') + ->get()->map->makeHidden(['id', 'device_id']), + 'ospf_areas' => $device->ospfAreas() + ->orderBy('ospfAreaId')->orderBy('context_name') + ->get()->map->makeHidden(['id', 'device_id']), + 'ospf_nbrs' => $device->ospfNbrs() + ->orderBy('ospf_nbr_id')->orderBy('context_name') + ->get()->map->makeHidden(['id', 'device_id']), ]; } } diff --git a/LibreNMS/Modules/PortsStack.php b/LibreNMS/Modules/PortsStack.php index 13fb79edb5..8e8cf5d1e5 100644 --- a/LibreNMS/Modules/PortsStack.php +++ b/LibreNMS/Modules/PortsStack.php @@ -117,8 +117,12 @@ class PortsStack implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { + if ($type == 'poller') { + return null; + } + return [ 'ports_stack' => $device->portsStack() ->orderBy('high_ifIndex')->orderBy('low_ifIndex') diff --git a/LibreNMS/Modules/PrinterSupplies.php b/LibreNMS/Modules/PrinterSupplies.php index 39e845198f..550223cd14 100644 --- a/LibreNMS/Modules/PrinterSupplies.php +++ b/LibreNMS/Modules/PrinterSupplies.php @@ -152,7 +152,7 @@ class PrinterSupplies implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'printer_supplies' => $device->printerSupplies()->orderBy('supply_oid')->orderBy('supply_index') diff --git a/LibreNMS/Modules/Slas.php b/LibreNMS/Modules/Slas.php index 8d9c092c1a..0b02252e01 100644 --- a/LibreNMS/Modules/Slas.php +++ b/LibreNMS/Modules/Slas.php @@ -119,7 +119,7 @@ class Slas implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'slas' => $device->slas()->orderBy('sla_nr') diff --git a/LibreNMS/Modules/Stp.php b/LibreNMS/Modules/Stp.php index 4755e123d0..134ebb46d0 100644 --- a/LibreNMS/Modules/Stp.php +++ b/LibreNMS/Modules/Stp.php @@ -104,7 +104,7 @@ class Stp implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'stp' => $device->stpInstances()->orderBy('bridgeAddress') diff --git a/LibreNMS/Modules/Vminfo.php b/LibreNMS/Modules/Vminfo.php index 077f653bdb..05038d953b 100644 --- a/LibreNMS/Modules/Vminfo.php +++ b/LibreNMS/Modules/Vminfo.php @@ -109,7 +109,7 @@ class Vminfo implements \LibreNMS\Interfaces\Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'vminfo' => $device->vminfo()->orderBy('vmwVmVMID') diff --git a/LibreNMS/Modules/Xdsl.php b/LibreNMS/Modules/Xdsl.php index bdd6c37396..21f78725f7 100644 --- a/LibreNMS/Modules/Xdsl.php +++ b/LibreNMS/Modules/Xdsl.php @@ -120,7 +120,7 @@ class Xdsl implements Module /** * @inheritDoc */ - public function dump(Device $device) + public function dump(Device $device, string $type): ?array { return [ 'ports_adsl' => $device->portsAdsl()->orderBy('ifIndex') diff --git a/LibreNMS/Polling/ModuleStatus.php b/LibreNMS/Polling/ModuleStatus.php index 87a0a75d07..5b897c4991 100644 --- a/LibreNMS/Polling/ModuleStatus.php +++ b/LibreNMS/Polling/ModuleStatus.php @@ -30,7 +30,7 @@ use App\Models\Device; class ModuleStatus { public function __construct( - public bool $global, + public ?bool $global, public ?bool $os = null, public ?bool $device = null, public ?bool $manual = null, @@ -39,6 +39,10 @@ class ModuleStatus public function isEnabled(): bool { + if ($this->global === null) { + return false; // this module does not have polling + } + if ($this->manual !== null) { return $this->manual; } @@ -57,7 +61,7 @@ class ModuleStatus public function reason(): string { if ($this->manual !== null) { - return 'mannually'; + return 'manually'; } if ($this->device !== null) { diff --git a/LibreNMS/Util/Module.php b/LibreNMS/Util/Module.php index 99bed6ec40..9d8c8a1d71 100644 --- a/LibreNMS/Util/Module.php +++ b/LibreNMS/Util/Module.php @@ -61,7 +61,7 @@ class Module public static function pollingStatus(string $module_name, Device $device, ?bool $manual = null): ModuleStatus { return new ModuleStatus( - Config::get("poller_modules.$module_name", false), + Config::get("poller_modules.$module_name"), Config::get("os.{$device->os}.poller_modules.$module_name"), $device->getAttrib("poll_$module_name"), $manual, diff --git a/LibreNMS/Util/ModuleTestHelper.php b/LibreNMS/Util/ModuleTestHelper.php index 7124ab9606..760deec7ae 100644 --- a/LibreNMS/Util/ModuleTestHelper.php +++ b/LibreNMS/Util/ModuleTestHelper.php @@ -733,8 +733,8 @@ class ModuleTestHelper // only dump data for the given modules (and modules that support dumping) foreach ($modules as $module) { - $module_data = Module::fromName($module)->dump(DeviceCache::get($device_id)); - if ($module_data !== false) { + $module_data = Module::fromName($module)->dump(DeviceCache::get($device_id), $type); + if ($module_data !== null) { $data[$module][$type] = $this->dumpToArray($module_data); } } @@ -774,7 +774,7 @@ class ModuleTestHelper if (isset($this->discovery_module_output[$module])) { return $this->discovery_module_output[$module]; } else { - return "Module $module not run. Modules: " . implode(',', array_keys($this->poller_module_output)); + return "Module $module not run. Modules: " . implode(',', array_keys($this->discovery_module_output)); } } diff --git a/app/Discovery/Sensor.php b/app/Discovery/Sensor.php index f69abab669..2e1717ccd4 100644 --- a/app/Discovery/Sensor.php +++ b/app/Discovery/Sensor.php @@ -68,7 +68,6 @@ class Sensor $this->discovered[$sensor->syncGroup()] = false; Log::debug("Discovered Sensor: $sensor"); - Log::info("$sensor->sensor_descr: Cur $sensor->sensor_current, Low: $sensor->sensor_limit_low, Low Warn: $sensor->sensor_limit_low_warn, Warn: $sensor->sensor_limit_warn, High: $sensor->sensor_limit"); return $this; } diff --git a/app/Models/Sensor.php b/app/Models/Sensor.php index 107a2d135a..2f34f23bb1 100644 --- a/app/Models/Sensor.php +++ b/app/Models/Sensor.php @@ -98,30 +98,34 @@ class Sensor extends DeviceRelatedModel implements Keyable return self::$icons; } - public function guessLimits(): void + public function guessLimits(bool $high, bool $low): void { - $this->sensor_limit_low = match ($this->sensor_class) { - 'temperature' => $this->sensor_current - 10, - 'voltage' => $this->sensor_current * 0.85, - 'humidity' => 30, - 'fanspeed' => $this->sensor_current * 0.80, - 'power_factor' => -1, - 'signal' => -80, - 'airflow', 'snr', 'frequency', 'pressure', 'cooling' => $this->sensor_current * 0.95, - default => null, - }; + if ($high) { + $this->sensor_limit = match ($this->sensor_class) { + 'temperature' => $this->sensor_current + 20, + 'voltage' => $this->sensor_current * 1.15, + 'humidity' => 70, + 'fanspeed' => $this->sensor_current * 1.80, + 'power_factor' => 1, + 'signal' => -30, + 'load' => 80, + 'airflow', 'snr', 'frequency', 'pressure', 'cooling' => $this->sensor_current * 1.05, + default => null, + }; + } - $this->sensor_limit = match ($this->sensor_class) { - 'temperature' => $this->sensor_current + 20, - 'voltage' => $this->sensor_current * 1.15, - 'humidity' => 70, - 'fanspeed' => $this->sensor_current * 1.80, - 'power_factor' => 1, - 'signal' => -30, - 'load' => 80, - 'airflow', 'snr', 'frequency', 'pressure', 'cooling' => $this->sensor_current * 1.05, - default => null, - }; + if ($low) { + $this->sensor_limit_low = match ($this->sensor_class) { + 'temperature' => $this->sensor_current - 10, + 'voltage' => $this->sensor_current * 0.85, + 'humidity' => 30, + 'fanspeed' => $this->sensor_current * 0.80, + 'power_factor' => -1, + 'signal' => -80, + 'airflow', 'snr', 'frequency', 'pressure', 'cooling' => $this->sensor_current * 0.95, + default => null, + }; + } } // ---- Define Relationships ---- diff --git a/app/Observers/SensorObserver.php b/app/Observers/SensorObserver.php index 43504d45bb..2a16244b84 100644 --- a/app/Observers/SensorObserver.php +++ b/app/Observers/SensorObserver.php @@ -6,6 +6,7 @@ use App\Models\Eventlog; use App\Models\Sensor; use Illuminate\Foundation\Application; use Illuminate\Support\Facades\Log; +use LibreNMS\Config; use LibreNMS\Enum\Severity; class SensorObserver @@ -19,14 +20,6 @@ class SensorObserver public function saving(Sensor $sensor): void { - // fix inverted limits - if ($sensor->sensor_limit !== null && $sensor->sensor_limit_low !== null && $sensor->sensor_limit_low > $sensor->sensor_limit) { - Log::error('Fixing swapped sensor limits'); - - // Fix high/low thresholds (i.e. on negative numbers) - [$sensor->sensor_limit, $sensor->sensor_limit_low] = [$sensor->sensor_limit_low, $sensor->sensor_limit]; - } - if ($this->runningInConsole && ! $sensor->isDirty()) { echo '.'; } @@ -34,9 +27,23 @@ class SensorObserver public function creating(Sensor $sensor): void { - $guess_limits = \LibreNMS\Config::get('sensors.guess_limits', true); - if ($guess_limits && $sensor->sensor_current !== null && $sensor->sensor_limit === null && $sensor->sensor_limit_low === null) { - $sensor->guessLimits(); + // fix inverted warn limits + if ($sensor->sensor_limit_warn !== null && $sensor->sensor_limit_low_warn !== null && $sensor->sensor_limit_low_warn > $sensor->sensor_limit_warn) { + Log::error('Fixing swapped sensor warn limits'); + + // Fix high/low thresholds (i.e. on negative numbers) + [$sensor->sensor_limit_warn, $sensor->sensor_limit_low_warn] = [$sensor->sensor_limit_low_warn, $sensor->sensor_limit_warn]; + } + + if (Config::get('sensors.guess_limits') && $sensor->sensor_current !== null) { + $sensor->guessLimits($sensor->sensor_limit === null, $sensor->sensor_limit_low === null); + } + + // Fix high/low thresholds (i.e. on negative numbers) + if ($sensor->sensor_limit !== null && $sensor->sensor_limit_low > $sensor->sensor_limit) { + Log::error('Fixing swapped sensor limits'); + + [$sensor->sensor_limit, $sensor->sensor_limit_low] = [$sensor->sensor_limit_low, $sensor->sensor_limit]; } } @@ -49,6 +56,7 @@ class SensorObserver public function created(Sensor $sensor): void { EventLog::log('Sensor Added: ' . $sensor->sensor_class . ' ' . $sensor->sensor_type . ' ' . $sensor->sensor_index . ' ' . $sensor->sensor_descr, $sensor->device_id, 'sensor', Severity::Notice, $sensor->sensor_id); + Log::info("$sensor->sensor_descr: Cur $sensor->sensor_current, Low: $sensor->sensor_limit_low, Low Warn: $sensor->sensor_limit_low_warn, Warn: $sensor->sensor_limit_warn, High: $sensor->sensor_limit"); if ($this->runningInConsole) { echo '+'; diff --git a/discovery.php b/discovery.php index c90a29e1f2..9056c58976 100755 --- a/discovery.php +++ b/discovery.php @@ -104,8 +104,6 @@ if (! empty(\LibreNMS\Config::get('distributed_poller_group'))) { global $device; foreach (dbFetchRows("SELECT * FROM `devices` WHERE disabled = 0 $where ORDER BY device_id DESC", $sqlparams) as $device) { $device_start = microtime(true); - DeviceCache::setPrimary($device['device_id']); - App::forgetInstance('sensor-discovery'); if (discover_device($device, $module_override)) { $discovered_devices++; diff --git a/includes/common.php b/includes/common.php index afba3f03a3..e949a319b3 100644 --- a/includes/common.php +++ b/includes/common.php @@ -739,7 +739,15 @@ function string_to_float($value) */ function uw_to_dbm($value) { - return $value <= 0 ? -60 : 10 * log10($value / 1000); + if ($value < 0) { + return null; + } + + if ($value == 0) { + return -60; + } + + return 10 * log10($value / 1000); } /** @@ -748,7 +756,15 @@ function uw_to_dbm($value) */ function mw_to_dbm($value) { - return $value <= 0 ? -60 : 10 * log10($value); + if ($value < 0) { + return null; + } + + if ($value == 0) { + return -60; + } + + return 10 * log10($value); } /** diff --git a/includes/definitions/discovery/infinera-xtm.yaml b/includes/definitions/discovery/infinera-xtm.yaml index 3171a52d97..564a279457 100644 --- a/includes/definitions/discovery/infinera-xtm.yaml +++ b/includes/definitions/discovery/infinera-xtm.yaml @@ -13,7 +13,7 @@ modules: total: LUM-SYSINFO-MIB::sysinfoBoardMemoryTotalMem free: LUM-SYSINFO-MIB::sysinfoBoardMemoryFreeMem percent_used: LUM-SYSINFO-MIB::sysinfoBoardMemoryUsageMemPercent - descr: '{{ LUM-SYSINFO-MIB::sysinfoBoardMemoryName }}' + descr: '{{ LUM-SYSINFO-MIB::sysinfoBoardMemoryName }}' processors: data: @@ -70,12 +70,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: equipmentBoardAdminStatus op: '=' - value: 1 + value: 1 - oid: equipmentBoardTable value: equipmentBoardTempHighExceeded @@ -86,7 +86,7 @@ modules: state_name: BoardTempHighExceeded states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: equipmentPowerTable @@ -98,7 +98,7 @@ modules: state_name: PSUOperStatus states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: equipmentFanTable @@ -110,7 +110,7 @@ modules: state_name: FanOperStatus states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: oaIfTable @@ -123,12 +123,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaIfTable @@ -140,12 +140,12 @@ modules: state_name: AmpSaturationFault states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaIfTable value: oaIfLaserTempOutOfRange @@ -156,12 +156,12 @@ modules: state_name: AmpTempExceeded states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaIfTable @@ -173,13 +173,13 @@ modules: state_name: AmpLoS states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 - + value: 1 + - oid: oaIfTable value: oaIfTxSignalStatus @@ -191,12 +191,12 @@ modules: states: - { descr: down, graph: 0, value: 1, generic: 2 } - { descr: degraded, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 3, generic: 0 } + - { descr: ok, graph: 0, value: 3, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaIfTable @@ -209,12 +209,12 @@ modules: states: - { descr: down, graph: 0, value: 1, generic: 2 } - { descr: degraded, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 3, generic: 0 } + - { descr: ok, graph: 0, value: 3, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaIfTable @@ -226,12 +226,12 @@ modules: state_name: AmpLoS states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } skip_values: - oid: oaIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaVoaClientIfTable @@ -243,12 +243,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: oaVoaClientIfAdminStatus op: '=' - value: 1 + value: 1 - oid: oaVoaLineIfTable @@ -260,12 +260,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: oaVoaLineIfAdminStatus op: '=' - value: 1 + value: 1 - oid: ocmIfTable @@ -278,12 +278,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: ocmIfAdminStatus op: '=' - value: 1 + value: 1 - oid: ocmIfTable @@ -295,7 +295,7 @@ modules: state_name: OCMSwitch states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ocmIfTable @@ -307,7 +307,7 @@ modules: state_name: OCMModule states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ifOtnOtuTable @@ -319,7 +319,7 @@ modules: state_name: OTNLoF states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ifOtnOtuTable @@ -331,7 +331,7 @@ modules: state_name: OTNLoMF states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ifOtnOtuTable @@ -343,7 +343,7 @@ modules: state_name: OTNIndicationSignal states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ifOtnMonSmTable @@ -355,7 +355,7 @@ modules: state_name: OTNBDIState states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ifOtnMonSmTable @@ -367,7 +367,7 @@ modules: state_name: OTNIAEState states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: ifOtnMonSmTable @@ -379,7 +379,7 @@ modules: state_name: OTNBIAEState states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } - oid: wdmCtrlChannelTable @@ -411,12 +411,12 @@ modules: state_name: WDMChannelLoSStatus states: - { descr: alarm, graph: 0, value: 2, generic: 2 } - - { descr: ok, graph: 0, value: 1, generic: 0 } + - { descr: ok, graph: 0, value: 1, generic: 0 } skip_values: - oid: wdmCtrlChannelAdminStatus op: '=' - value: 1 + value: 1 - oid: ifBasicAdminTable @@ -429,12 +429,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: ifBasicAdminAdminStatus op: '=' - value: 1 + value: 1 - oid: dcnIfTable @@ -446,12 +446,12 @@ modules: states: - { descr: notPresent, graph: 0, value: 1, generic: 0 } - { descr: down, graph: 0, value: 2, generic: 2 } - - { descr: up, graph: 0, value: 3, generic: 0 } + - { descr: up, graph: 0, value: 3, generic: 0 } skip_values: - oid: dcnIfAdminStatus op: '=' - value: 1 + value: 1 temperature: @@ -466,7 +466,7 @@ modules: entPhysicalIndex: 'sr-{{ $index }}' high_limit: equipmentSubrackTempThreshold low_limit: 3 - + - oid: equipmentBoardTable value: equipmentBoardTemp @@ -475,8 +475,8 @@ modules: descr: 'Temperature {{ $equipmentBoardSubrack }}:{{ $equipmentBoardName }}' group: Board Temperature entPhysicalIndex: 'board-{{ $index }}' - high_limit: equipmentBoardTempThreshold - low_limit: equipmentBoardTempLowThreshold + high_limit: equipmentBoardTempThreshold + low_limit: equipmentBoardTempLowThreshold - oid: oaIfTable @@ -484,20 +484,20 @@ modules: divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.19.2.2.1.1.43.{{ $index }}' descr: 'Temperature {{ $oaIfSubrack }}:{{ $oaIfName }}' - group: Amplifier Laser Temperature + group: Amplifier Laser Temperature entPhysicalIndex: 'oa-{{ $index }}' - oid: ifPhysicalTrxTable value: ifPhysicalTrxLaserTemp - divisor: 10 + divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.47.2.2.1.1.5.{{ $index }}' descr: 'Laser Temperature {{ $ifPhysicalTrxName }}' group: Laser Temperature - entPhysicalIndex: 'laser-{{ $index }}' - skip_values: [2147483646, 2147483647, -2147483648] + entPhysicalIndex: 'laser-{{ $index }}' + skip_values: [2147483646, 2147483647, -2147483648] + - dbm: @@ -505,95 +505,86 @@ modules: skip_values: 0 data: - - oid: oaIfTable + oid: oaIfTable value: oaIfRxPowerLevel divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.19.2.2.1.1.20.{{ $index }}' descr: 'Amplifier Rx {{ $oaIfSubrack }}:{{ $oaIfName }}' - group: Amplifier Laser dBm - index: oa-rx-dbm.{{ $index }} - entPhysicalIndex: 'oa-{{ $index }}' + group: Amplifier Laser dBm + index: oa-rx-dbm.{{ $index }} + entPhysicalIndex: 'oa-{{ $index }}' - - oid: oaIfTable + oid: oaIfTable value: oaIfTxPowerLevel divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.19.2.2.1.1.19.{{ $index }}' descr: 'Amplifier Tx {{ $oaIfSubrack }}:{{ $oaIfName }}' - group: Amplifier Laser dBm - index: oa-tx-dbm.{{ $index }} - entPhysicalIndex: 'oa-{{ $index }}' + group: Amplifier Laser dBm + index: oa-tx-dbm.{{ $index }} + entPhysicalIndex: 'oa-{{ $index }}' - - oid: oaIfTable + oid: oaIfTable value: oaIfActualGain divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.19.2.2.1.1.51.{{ $index }}' descr: 'Amplifier Gain {{ $oaIfSubrack }}:{{ $oaIfName }}' - group: Amplifier Laser Gain dBm - index: oa-gain-dbm.{{ $index }} - entPhysicalIndex: 'oa-{{ $index }}' + group: Amplifier Laser Gain dBm + index: oa-gain-dbm.{{ $index }} + entPhysicalIndex: 'oa-{{ $index }}' - - oid: ifPerfL0Table + oid: ifPerfL0Table value: ifPerfL0RxPower divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.56.2.6.1.1.4.{{ $index }}' descr: 'Laser Rx {{ $ifPerfL0Name }}' - group: Laser dBm - index: laser-rx-dbm.{{ $index }} - entPhysicalIndex: 'laser-{{ $index }}' - skip_values: [2147483646, -2147483648] + group: Laser dBm + index: laser-rx-dbm.{{ $index }} + entPhysicalIndex: 'laser-{{ $index }}' + skip_values: [2147483646, -2147483648] - - oid: ifPerfL0Table + oid: ifPerfL0Table value: ifPerfL0TxPower divisor: 10 num_oid: '.1.3.6.1.4.1.8708.2.56.2.6.1.1.5.{{ $index }}' descr: 'Laser Tx {{ $ifPerfL0Name }}' - group: Laser dBm - index: laser-tx-dbm.{{ $index }} + group: Laser dBm + index: laser-tx-dbm.{{ $index }} entPhysicalIndex: 'laser-{{ $index }}' - skip_values: [2147483646, -2147483648] + skip_values: [2147483646, -2147483648] current: data: - oid: oaIfTable value: oaIfLaserBias - divisor: 10000 + divisor: 10000 num_oid: '.1.3.6.1.4.1.8708.2.19.2.2.1.1.22.{{ $index }}' descr: 'Amplifier current {{ $oaIfSubrack }}:{{ $oaIfName }}' group: Amplifier Laser Current entPhysicalIndex: 'oa-{{ $index }}' - - - oid: oaIfTable - value: oaIfLaserBias - divisor: 10000 - num_oid: '.1.3.6.1.4.1.8708.2.19.2.2.1.1.22.{{ $index }}' - descr: 'Amplifier current {{ $oaIfSubrack }}:{{ $oaIfName }}' - group: Amplifier Laser Current - entPhysicalIndex: 'oa-{{ $index }}' - - oid: ifPhysicalTrxTable value: ifPhysicalTrxLaserBias - divisor: 10000 + divisor: 10000 num_oid: '.1.3.6.1.4.1.8708.2.47.2.2.1.1.4.{{ $index }}' descr: 'Laser current {{ $ifPhysicalTrxName }}' group: Laser Current - entPhysicalIndex: 'laser-{{ $index }}' - skip_values: [2147483646, 2147483647, -2147483648, 4294967293, 4294967294, 2147483648] + entPhysicalIndex: 'laser-{{ $index }}' + skip_values: [2147483646, 2147483647, -2147483648, 4294967293, 4294967294, 2147483648] chromatic_dispersion: data: - - oid: ifPerfL0Table + oid: ifPerfL0Table value: ifPerfL0ChromaticDispersion num_oid: '.1.3.6.1.4.1.8708.2.56.2.6.1.1.7.{{ $index }}' descr: 'Laser CD {{ $ifPerfL0Name }}' - group: Laser Chromatic Dispersion - index: laser-cd.{{ $index }} + group: Laser Chromatic Dispersion + index: laser-cd.{{ $index }} entPhysicalIndex: 'laser-{{ $index }}' - skip_values: [2147483646, 2147483647, -2147483648] \ No newline at end of file + skip_values: [2147483646, 2147483647, -2147483648] diff --git a/includes/definitions/discovery/innovaphone.yaml b/includes/definitions/discovery/innovaphone.yaml index d2442c539d..f1bd50aee1 100644 --- a/includes/definitions/discovery/innovaphone.yaml +++ b/includes/definitions/discovery/innovaphone.yaml @@ -36,7 +36,7 @@ modules: - { descr: up, graph: 0, value: 2, generic: 0 } - oid: l3Table - value: l3Label + value: l3Protocol num_oid: '.1.3.6.1.4.1.6666.1.4.1.2.{{ $index }}' descr: 'ISDN signaling protocol {{ $l3Label }}' state_name: l3Label @@ -53,13 +53,16 @@ modules: value: l3NumBchanActive num_oid: '.1.3.6.1.4.1.6666.1.4.1.4.{{ $index }}' descr: 'Active calls {{ $l3Label }}' + index: 'l3NumBchanActive.{{ $index }}' - oid: l3Table value: l3CallsBoot num_oid: '.1.3.6.1.4.1.6666.1.4.1.5.{{ $index }}' descr: "Calls since boot {{ $l3Label }}" + index: 'l3CallsBoot.{{ $index }}' - oid: l3Table value: l3NumBchan num_oid: '.1.3.6.1.4.1.6666.1.4.1.3.{{ $index }}' descr: 'Available Channels {{ $l3Label }}' + index: 'l3NumBchan.{{ $index }}' diff --git a/includes/definitions/discovery/polycomLens.yaml b/includes/definitions/discovery/polycomLens.yaml index 3f53b81cf9..74c9b8bc14 100644 --- a/includes/definitions/discovery/polycomLens.yaml +++ b/includes/definitions/discovery/polycomLens.yaml @@ -12,6 +12,8 @@ modules: value: identityStatus num_oid: '.1.3.6.1.4.1.13885.101.1.1.6.{{ $index }}' descr: 'Overall System status' + index: "identityStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -21,6 +23,8 @@ modules: value: serviceH323Status num_oid: '.1.3.6.1.4.1.13885.101.1.2.7.1.{{ $index }}' descr: 'H323 Status' + index: "serviceH323Status.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -28,8 +32,10 @@ modules: - oid: serviceH323 value: serviceH323RegistrationStatus - num_oid: '.1.3.6.1.4.1.13885.101.1.2.7.1.{{ $index }}' + num_oid: '.1.3.6.1.4.1.13885.101.1.2.7.2.{{ $index }}' descr: 'H323 Status' + index: "serviceH323RegistrationStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -39,6 +45,8 @@ modules: value: serviceSipStatus num_oid: '.1.3.6.1.4.1.13885.101.1.2.8.1.{{ $index }}' descr: 'Sip overall Status' + index: "serviceSipStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -48,6 +56,8 @@ modules: value: serviceSipRegistrationStatus num_oid: '.1.3.6.1.4.1.13885.101.1.2.8.3.1.2.{{ $index }}' descr: 'Sip Status Line {{ $index }}' + index: "serviceSipRegistrationStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -57,6 +67,8 @@ modules: value: serviceIsdnStatus num_oid: '.1.3.6.1.4.1.13885.101.1.2.9.1.{{ $index }}' descr: 'ISDN Status' + index: "serviceIsdnStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -66,6 +78,8 @@ modules: value: hardwareOverallStatus num_oid: '.1.3.6.1.4.1.13885.101.1.3.1.{{ $index }}' descr: 'Hardware Status' + index: "hardwareOverallStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -75,6 +89,8 @@ modules: value: hardwareMicrophoneStatus num_oid: '.1.3.6.1.4.1.13885.101.1.3.5.1.{{ $index }}' descr: 'Microphone Status' + index: "hardwareMicrophoneStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -84,6 +100,8 @@ modules: value: hardwareCameraStatus num_oid: '.1.3.6.1.4.1.13885.101.1.3.6.1.{{ $index }}' descr: 'Camera Status' + index: "hardwareCameraStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -93,6 +111,8 @@ modules: value: hardwareNICStatus num_oid: '.1.3.6.1.4.1.13885.101.1.3.10.1.{{ $index }}' descr: 'NIC Status' + index: "hardwareNICStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -102,6 +122,8 @@ modules: value: hardwarePTCStatus num_oid: '.1.3.6.1.4.1.13885.101.1.3.11.1.{{ $index }}' descr: 'PTC Status' + index: "hardwarePTCStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -111,6 +133,8 @@ modules: value: hardwareUcBoardStatus num_oid: '.1.3.6.1.4.1.13885.101.1.3.12.1.{{ $index }}' descr: 'Uc Board Status' + index: "hardwareUcBoardStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -120,6 +144,8 @@ modules: value: externalIntegrationPresenceStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.7.1.{{ $index }}' descr: 'Poly Presence Service Status' + index: "externalIntegrationPresenceStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -129,6 +155,8 @@ modules: value: externalIntegrationCDRStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.8.1.{{ $index }}' descr: 'Poly CDR Service Status' + index: "externalIntegrationCDRStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -138,6 +166,8 @@ modules: value: externalIntegrationSyslogStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.9.1.{{ $index }}' descr: 'Syslog Service Status' + index: "externalIntegrationSyslogStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -147,6 +177,8 @@ modules: value: externalIntegrationSoftwareUpdateStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.10.1.{{ $index }}' descr: 'Poly Software Update Status' + index: "externalIntegrationSoftwareUpdateStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -156,6 +188,8 @@ modules: value: externalIntegrationProvisioningStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.11.1.{{ $index }}' descr: 'Poly Provisioning Status' + index: "externalIntegrationProvisioningStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -165,6 +199,8 @@ modules: value: externalIntegrationExchangeStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.12.1.{{ $index }}' descr: 'Exchange Integration Status' + index: "externalIntegrationExchangeStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } @@ -174,7 +210,9 @@ modules: value: externalIntegrationDirectorySvcsStatus num_oid: '.1.3.6.1.4.1.13885.101.1.6.13.1.{{ $index }}' descr: 'Directory Integration Status' + index: "externalIntegrationDirectorySvcsStatus.{{ $index }}" + state_name: polycomEndpointGeneric states: - { value: 1, descr: disabled, graph: 1, generic: 3 } - { value: 2, descr: ok, graph: 1, generic: 0 } - - { value: 3, descr: failed, graph: 1, generic: 2 } \ No newline at end of file + - { value: 3, descr: failed, graph: 1, generic: 2 } diff --git a/includes/definitions/discovery/scs-ks.yaml b/includes/definitions/discovery/scs-ks.yaml index 60df290c4b..ebe54876b7 100644 --- a/includes/definitions/discovery/scs-ks.yaml +++ b/includes/definitions/discovery/scs-ks.yaml @@ -8,6 +8,7 @@ modules: value: exhaust-air-temperature num_oid: '.1.3.6.1.4.1.9839.1.2.15.{{ $index }}' descr: 'Exhaust air temperature' + index: "exhaust.{{ $index }}" divisor: 10 - @@ -15,6 +16,7 @@ modules: value: supply-air-temperature num_oid: '.1.3.6.1.4.1.9839.1.2.16.{{ $index }}' descr: 'Supply air temperature' + index: "supply.{{ $index }}" divisor: 10 - @@ -22,6 +24,7 @@ modules: value: outside-air-temperature num_oid: '.1.3.6.1.4.1.9839.1.2.17.{{ $index }}' descr: 'Outside air temperature' + index: "outside.{{ $index }}" divisor: 10 - @@ -29,6 +32,7 @@ modules: value: room-temperature num_oid: '.1.3.6.1.4.1.9839.1.2.18.{{ $index }}' descr: 'Room temperature' + index: "room.{{ $index }}" divisor: 10 humidity: diff --git a/includes/definitions/discovery/sentry3.yaml b/includes/definitions/discovery/sentry3.yaml index 6b04db871d..23c857801d 100644 --- a/includes/definitions/discovery/sentry3.yaml +++ b/includes/definitions/discovery/sentry3.yaml @@ -17,11 +17,11 @@ modules: value: infeedLoadValue num_oid: '.1.3.6.1.4.1.1718.3.2.2.1.7.{{ $index }}' descr: infeedName - index: 'infeedID.{{ $index }}' + index: 'infeedID.{{ $index }}' ## limits need to be excluded from the divisor somehow #warn_limit: infeedLoadHighThresh #high_limit: infeedCapacity - + - oid: outletTable value: outletLoadValue num_oid: '.1.3.6.1.4.1.1718.3.2.3.1.7.{{ $index }}' @@ -32,7 +32,6 @@ modules: #warn_limit: outletLoadHighThresh #high_limit: outputCapacity voltage: - # note: this is configured, not measured options: divisor: 10 skip_value_lt: 0 @@ -44,7 +43,7 @@ modules: # recording voltage for additional feeds (3-phase) # would require reindexing and moving RRD files; # this is a configured value, not measured. - index: '{{ $subindex0 }}' + # ^ yeah, you broke it anyway by setting "index: '{{ $subindex0 }}'" group: 'Configured Voltage' power: options: diff --git a/includes/definitions/discovery/smartos-dcp-m.yaml b/includes/definitions/discovery/smartos-dcp-m.yaml index d10f82c408..3fbf7764d0 100644 --- a/includes/definitions/discovery/smartos-dcp-m.yaml +++ b/includes/definitions/discovery/smartos-dcp-m.yaml @@ -7,7 +7,7 @@ modules: data: - oid: dcpInterfaceTable - num_oid: '.1.3.6.1.4.1.30826.2.2.2.1.1.1.5.{{ $index }}' + num_oid: '.1.3.6.1.4.1.30826.2.2.1.1.1.1.5.{{ $index }}' value: dcpInterfaceStatus descr: '{{ $dcpInterfaceName }}' index: 'dcpInterfaceStatus.{{ $index }}' @@ -18,7 +18,7 @@ modules: - { value: 3, generic: 0, graph: 1, descr: up } - oid: dcpLinkviewTable - num_oid: '.1.3.6.1.4.1.30826.2.2.2.1.1.1.5.{{ $index }}' + num_oid: '.1.3.6.1.4.1.30826.2.2.3.1.1.1.4.{{ $index }}' value: dcpLinkviewLocalStatus descr: '{{ $dcpLinkviewLocalName }} - {{ $dcpLinkviewRemoteName }}' index: 'dcpLinkviewLocalStatus.{{ $index }}' diff --git a/includes/definitions/discovery/timos.yaml b/includes/definitions/discovery/timos.yaml index 69520fa206..87208381b8 100644 --- a/includes/definitions/discovery/timos.yaml +++ b/includes/definitions/discovery/timos.yaml @@ -216,10 +216,12 @@ modules: op: '=' value: 2 - - oid: tmnxDigitalDiagMonitorEntry + oid: tmnxDigitalDiagMonitorTable value: tmnxDDMTemperature num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.1.{{ $index }}' descr: '{{ ifName:1 }}' + entPhysicalIndex: '{{ $subindex1 }}' + entPhysicalIndex_measured: ports index: '{{ $index }}' high_limit: tmnxDDMTempHiAlarm warn_limit: tmnxDDMTempHiWarning @@ -238,11 +240,11 @@ modules: current: data: - - oid: tmnxDigitalDiagMonitorEntry + oid: tmnxDigitalDiagMonitorTable value: tmnxDDMTxBiasCurrent num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.11.{{ $index }}' descr: '{{ ifName:1 }} Tx Bias' - entPhysicalIndex: '{{ $index }}' + entPhysicalIndex: '{{ $subindex1 }}' entPhysicalIndex_measured: ports index: 'tx-bias-{{ $index }}' divisor: 500000 @@ -264,7 +266,7 @@ modules: value: tmnxDDMLaneTxBiasCurrent num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.66.1.7.{{ $index }}' descr: '{{ ifName:1 }} Lane {{ $subindex2 }} Tx Bias' - entPhysicalIndex: '{{ $index }}' + entPhysicalIndex: '{{ $subindex1 }}' entPhysicalIndex_measured: ports index: 'tx-bias-{{ $index }}' divisor: 500000 @@ -285,11 +287,11 @@ modules: dbm: data: - - oid: tmnxDigitalDiagMonitorEntry + oid: tmnxDigitalDiagMonitorTable value: tmnxDDMRxOpticalPower num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.{{ $index }}' descr: '{{ ifName:1 }} Rx' - entPhysicalIndex: '{{ $index }}' + entPhysicalIndex: '{{ $subindex1 }}' entPhysicalIndex_measured: ports index: 'rx-{{ $index }}' divisor: 10 @@ -309,11 +311,11 @@ modules: op: '>' value: 0 - - oid: tmnxDigitalDiagMonitorEntry + oid: tmnxDigitalDiagMonitorTable value: tmnxDDMTxOutputPower num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.{{ $index }}' descr: '{{ ifName:1 }} Tx' - entPhysicalIndex: '{{ $index }}' + entPhysicalIndex: '{{ $subindex1 }}' entPhysicalIndex_measured: ports index: 'tx-{{ $index }}' divisor: 10 @@ -337,7 +339,7 @@ modules: value: tmnxDDMLaneRxOpticalPower num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.66.1.17.{{ $index }}' descr: '{{ ifName:1 }} Lane {{ $subindex2 }} Rx' - entPhysicalIndex: '{{ $index }}' + entPhysicalIndex: '{{ $subindex1 }}' entPhysicalIndex_measured: ports index: 'lane-rx-{{ $index }}' user_func: 'uw_to_dbm' @@ -357,7 +359,7 @@ modules: value: tmnxDDMLaneTxOutputPower num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.66.1.12.{{ $index }}' descr: '{{ ifName:1 }} Lane {{ $subindex2 }} Tx' - entPhysicalIndex: '{{ $index }}' + entPhysicalIndex: '{{ $subindex1 }}' entPhysicalIndex_measured: ports index: 'lane-tx-{{ $index }}' user_func: 'uw_to_dbm' @@ -375,10 +377,12 @@ modules: voltage: data: - - oid: tmnxDigitalDiagMonitorEntry + oid: tmnxDigitalDiagMonitorTable value: tmnxDDMSupplyVoltage num_oid: '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.6.{{ $index }}' descr: '{{ ifName:1 }}' + entPhysicalIndex: '{{ $subindex1 }}' + entPhysicalIndex_measured: ports index: '{{ $index }}' high_limit: tmnxDDMSupplyVoltageHiAlarm warn_limit: tmnxDDMSupplyVoltageHiWarning diff --git a/includes/discovery/functions.inc.php b/includes/discovery/functions.inc.php index fdb1323434..3445b44424 100644 --- a/includes/discovery/functions.inc.php +++ b/includes/discovery/functions.inc.php @@ -125,6 +125,9 @@ function discover_new_device($hostname, $device, $method, $interface = null) */ function discover_device(&$device, $force_module = false) { + DeviceCache::setPrimary($device['device_id']); + App::forgetInstance('sensor-discovery'); + if ($device['snmp_disable'] == '1') { return true; } diff --git a/includes/discovery/ipv6-addresses.inc.php b/includes/discovery/ipv6-addresses.inc.php index f2fff744b1..0d553599c0 100644 --- a/includes/discovery/ipv6-addresses.inc.php +++ b/includes/discovery/ipv6-addresses.inc.php @@ -4,6 +4,8 @@ use LibreNMS\Config; use LibreNMS\Exceptions\InvalidIpException; use LibreNMS\Util\IPv6; +$valid ??= []; // may not be instantiated. I think this is the last place that uses this global. + foreach (DeviceCache::getPrimary()->getVrfContexts() as $context_name) { $device['context_name'] = $context_name; @@ -14,6 +16,12 @@ foreach (DeviceCache::getPrimary()->getVrfContexts() as $context_name) { ->walk(['IP-MIB::ipAddressIfIndex.ipv6', 'IP-MIB::ipAddressOrigin.ipv6', 'IP-MIB::ipAddressPrefix.ipv6']) ->table(4); foreach ($oids['ipv6'] ?? [] as $address => $data) { + if (! is_array($data)) { + \Illuminate\Support\Facades\Log::debug('IPv6 data invalid'); + + continue; + } + try { $ifIndex = $data['IP-MIB::ipAddressIfIndex']; $ipv6_address = IPv6::fromHexString($address)->uncompressed(); diff --git a/includes/discovery/ports/moxa-etherdevice.inc.php b/includes/discovery/ports/moxa-etherdevice.inc.php index 71c28411f4..89697b1392 100644 --- a/includes/discovery/ports/moxa-etherdevice.inc.php +++ b/includes/discovery/ports/moxa-etherdevice.inc.php @@ -11,12 +11,9 @@ //portName OID is based on each device model/MIB $oid = $device['sysObjectID'] . '.1.9.1.1.7'; -$port_names = snmpwalk_cache_oid($device, $oid, $port_names); - -foreach ($port_names as $oid => $value) { - if (! empty($value['iso'])) { - // determine index - $index = end(explode('.', $oid)); - $port_stats[$index]['ifAlias'] = $value['iso']; +foreach (SnmpQuery::walk($oid)->values() as $oid => $name) { + if ($name) { + $index = \Illuminate\Support\Str::afterLast($oid, '.'); + $port_stats[$index]['ifAlias'] = $name; } } diff --git a/includes/discovery/sensors/dbm/timos.inc.php b/includes/discovery/sensors/dbm/timos.inc.php deleted file mode 100755 index 2037ab6fdf..0000000000 --- a/includes/discovery/sensors/dbm/timos.inc.php +++ /dev/null @@ -1,49 +0,0 @@ - $entry) { - if (is_numeric($entry['tmnxDDMRxOpticalPower']) && $entry['tmnxDDMRxOpticalPower'] != 0 && $entry['tmnxDDMTxOutputPower'] != 0) { - $oid = '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.' . $index; - $value = round(10 * log10($entry['tmnxDDMRxOpticalPower'] / $divisor), 2); - - $int_ext = $entry['tmnxDDMExternallyCalibrated']; - if ($int_ext == 'true') { - $int_ext = 'Ext-Cal'; - } elseif ($int_ext == 'false') { - $int_ext = 'Int-Cal'; - } else { - $int_ext = 'Unknown'; - } - - $entPhysicalIndex = $index; - $entPhysicalIndex_measured = 'ports'; - - $limit_low = round(10 * log10($entry['tmnxDDMRxOpticalPowerLowAlarm'] / $divisor), 2); - $warn_limit_low = round(10 * log10($entry['tmnxDDMRxOpticalPowerLowWarning'] / $divisor), 2); - $limit = round(10 * log10($entry['tmnxDDMRxOpticalPowerHiAlarm'] / $divisor), 2); - $warn_limit = round(10 * log10($entry['tmnxDDMRxOpticalPowerHiWarning'] / $divisor), 2); - - $port_descr = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index)); - $descr = $port_descr['ifName'] . ' RX Power ' . $int_ext; - - discover_sensor(null, 'dbm', $device, $oid, 'rx-' . $index, 'timos', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured, $user_func); - } - if (is_numeric($entry['tmnxDDMTxOutputPower']) && $entry['tmnxDDMTxOutputPower'] != 0 && $entry['tmnxDDMRxOpticalPower'] != 0) { - $oid = '.1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.' . $index; - $value = round(10 * log10($entry['tmnxDDMTxOutputPower'] / $divisor), 2); - $entPhysicalIndex = $index; - $entPhysicalIndex_measured = 'ports'; - - $limit_low = round(10 * log10($entry['tmnxDDMTxOutputPowerLowAlarm'] / $divisor), 2); - $warn_limit_low = round(10 * log10($entry['tmnxDDMTxOutputPowerLowWarning'] / $divisor), 2); - $limit = round(10 * log10($entry['tmnxDDMTxOutputPowerHiAlarm'] / $divisor), 2); - $warn_limit = round(10 * log10($entry['tmnxDDMTxOutputPowerHiWarning'] / $divisor), 2); - - $port_descr = get_port_by_index_cache($device['device_id'], str_replace('1.', '', $index)); - $descr = $port_descr['ifName'] . ' TX Power'; - - discover_sensor(null, 'dbm', $device, $oid, 'tx-' . $index, 'timos', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $value, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured, $user_func); - } -} diff --git a/includes/discovery/sensors/gw-eydfa.inc.php b/includes/discovery/sensors/gw-eydfa.inc.php index 795abb45fb..22e5c641c6 100644 --- a/includes/discovery/sensors/gw-eydfa.inc.php +++ b/includes/discovery/sensors/gw-eydfa.inc.php @@ -48,7 +48,7 @@ foreach (explode("\n", $oids) as $data) { } discover_sensor(null, 'current', $device, $num_oid, $sensor_index, 'gw-eydfa', $descr, $divisor, 1, $low_limit, $low_warn, $high_warn, $high_limit, $value); } - if ($split_oid[0] == 'oaPumpTEC' && $index = 1) { // Current - A + if ($split_oid[0] == 'oaPumpTEC' && $index == 1) { // Current - A $divisor = 100; $descr = 'TEC Pump - ' . $index; $num_oid = '.1.3.6.1.4.1.17409.1.11.4.1.3.' . $index; @@ -62,7 +62,7 @@ foreach (explode("\n", $oids) as $data) { $sensor_index = 'oaPumpTEC' . $index; discover_sensor(null, 'current', $device, $num_oid, $sensor_index, 'gw-eydfa', $descr, $divisor, 1, $low_limit, $low_warn, $high_warn, $high_limit, $value); } - if ($split_oid[0] == 'oaPumpTemp' && $index = 1) { // Temperature - C + if ($split_oid[0] == 'oaPumpTemp' && $index == 1) { // Temperature - C $divisor = 10; $descr = 'Temperature Pump - ' . $index; $num_oid = '.1.3.6.1.4.1.17409.1.11.4.1.4.' . $index; diff --git a/includes/discovery/sensors/pre-cache/timos.inc.php b/includes/discovery/sensors/pre-cache/timos.inc.php deleted file mode 100755 index e5cfcc6f2c..0000000000 --- a/includes/discovery/sensors/pre-cache/timos.inc.php +++ /dev/null @@ -1,13 +0,0 @@ - - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. Please see LICENSE.txt at the top level of - * the source code distribution for details. - */ - -$pre_cache['timos_oids'] = snmpwalk_cache_multi_oid($device, 'tmnxDigitalDiagMonitorEntry', [], 'TIMETRA-PORT-MIB', 'timos'); diff --git a/includes/polling/ports/os/moxa-etherdevice.inc.php b/includes/polling/ports/os/moxa-etherdevice.inc.php index 71c28411f4..89697b1392 100644 --- a/includes/polling/ports/os/moxa-etherdevice.inc.php +++ b/includes/polling/ports/os/moxa-etherdevice.inc.php @@ -11,12 +11,9 @@ //portName OID is based on each device model/MIB $oid = $device['sysObjectID'] . '.1.9.1.1.7'; -$port_names = snmpwalk_cache_oid($device, $oid, $port_names); - -foreach ($port_names as $oid => $value) { - if (! empty($value['iso'])) { - // determine index - $index = end(explode('.', $oid)); - $port_stats[$index]['ifAlias'] = $value['iso']; +foreach (SnmpQuery::walk($oid)->values() as $oid => $name) { + if ($name) { + $index = \Illuminate\Support\Str::afterLast($oid, '.'); + $port_stats[$index]['ifAlias'] = $name; } } diff --git a/tests/AuthSSOTest.php b/tests/AuthSSOTest.php index ae3636882e..62088f4202 100644 --- a/tests/AuthSSOTest.php +++ b/tests/AuthSSOTest.php @@ -66,6 +66,8 @@ class AuthSSOTest extends DBTestCase Config::set('sso.group_delimiter', ';'); Config::set('sso.group_level_map', null); Config::set('sso.static_level', -1); + /** @phpstan-ignore-next-line */ + \Bouncer::refresh(); } // Set up $_SERVER in env mode diff --git a/tests/OSModulesTest.php b/tests/OSModulesTest.php index c012fb1c4a..06f3077a52 100644 --- a/tests/OSModulesTest.php +++ b/tests/OSModulesTest.php @@ -119,8 +119,8 @@ class OSModulesTest extends DBTestCase $phpunit_debug = in_array('--debug', $_SERVER['argv'], true); foreach ($modules as $module => $module_status) { - $expected = $expected_data[$module]['discovery'] ?? []; - $actual = $results[$module]['discovery'] ?? []; + $expected = $expected_data[$module]['discovery'] ?? null; + $actual = $results[$module]['discovery'] ?? null; $this->checkTestData($expected, $actual, 'Discovered', $os, $module, $filename, $helper, $phpunit_debug); // modules without polling @@ -129,9 +129,9 @@ class OSModulesTest extends DBTestCase } if ($expected_data[$module]['poller'] !== 'matches discovery') { - $expected = $expected_data[$module]['poller'] ?? []; + $expected = $expected_data[$module]['poller'] ?? null; } - $actual = $results[$module]['poller'] ?? []; + $actual = $results[$module]['poller'] ?? null; $this->checkTestData($expected, $actual, 'Polled', $os, $module, $filename, $helper, $phpunit_debug); } @@ -174,10 +174,13 @@ class OSModulesTest extends DBTestCase }); } - private function checkTestData(array $expected, array $actual, string $type, string $os, mixed $module, string $filename, ModuleTestHelper $helper, bool $phpunit_debug): void + private function checkTestData(?array $expected, ?array $actual, string $type, string $os, mixed $module, string $filename, ModuleTestHelper $helper, bool $phpunit_debug): void { // try simple and fast comparison first, if that fails, do a costly/well formatted comparison if ($expected != $actual) { + $this->assertNotNull($actual, "OS $os: $type $module no data generated when it is expected"); + $this->assertNotNull($expected, "OS $os: $type $module generates data when none is expected"); + $message = Color::colorize('bg-red', "OS $os: $type $module data does not match that found in $filename"); $message .= PHP_EOL; $message .= ($type == 'Discovered' diff --git a/tests/data/cumulus_cumulus.json b/tests/data/cumulus_cumulus.json index 492eb43c79..cc0ea18d67 100644 --- a/tests/data/cumulus_cumulus.json +++ b/tests/data/cumulus_cumulus.json @@ -3013,7 +3013,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 2, "bgpLocalAddr": "192.168.125.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", diff --git a/tests/data/drac.json b/tests/data/drac.json index ff9a3370b6..46d9a95cd1 100644 --- a/tests/data/drac.json +++ b/tests/data/drac.json @@ -669,7 +669,7 @@ "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 1.281, + "sensor_current": 0.8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -694,7 +694,7 @@ "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 1.195, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -4928,7 +4928,7 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 1.281, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null @@ -4953,7 +4953,7 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 1.195, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null diff --git a/tests/data/edgeos.json b/tests/data/edgeos.json index 044223a4b2..e126c346a1 100644 --- a/tests/data/edgeos.json +++ b/tests/data/edgeos.json @@ -3672,10 +3672,10 @@ "bgpPeerRemoteAs": 65000, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 26, "bgpLocalAddr": "172.16.200.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", diff --git a/tests/data/fortigate_60f3g4g.json b/tests/data/fortigate_60f3g4g.json index 74af5525d8..70f0838703 100644 --- a/tests/data/fortigate_60f3g4g.json +++ b/tests/data/fortigate_60f3g4g.json @@ -4814,7 +4814,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 18, "bgpLocalAddr": "192.168.1.22", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", diff --git a/tests/data/ies5000_5005.json b/tests/data/ies5000_5005.json index e84c257ddd..35505c53eb 100644 --- a/tests/data/ies5000_5005.json +++ b/tests/data/ies5000_5005.json @@ -6943,10 +6943,108 @@ }, { "state_name": "systemStatus", - "state_descr": null, - "state_draw_graph": null, - "state_value": null, - "state_generic_value": null + "state_descr": "moduleNoDefect", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleOverHeat", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleFanRpmLow", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleVoltageLow", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleThermalSensorFailure", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "modulePullOut", + "state_draw_graph": 0, + "state_value": 32, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "powerDC48VAFailure", + "state_draw_graph": 0, + "state_value": 64, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "powerDC48VBFailure", + "state_draw_graph": 0, + "state_value": 128, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "extAlarmInputTrigger", + "state_draw_graph": 0, + "state_value": 256, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleDown", + "state_draw_graph": 0, + "state_value": 512, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "mscSwitchOverOK", + "state_draw_graph": 0, + "state_value": 1024, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "networkTopologyChange", + "state_draw_graph": 0, + "state_value": 2048, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "macSpoof", + "state_draw_graph": 0, + "state_value": 4096, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "cpuHigh", + "state_draw_graph": 0, + "state_value": 8192, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "memoryUsageHigh", + "state_draw_graph": 0, + "state_value": 16384, + "state_generic_value": 2 } ] }, diff --git a/tests/data/ies5000_5106.json b/tests/data/ies5000_5106.json index a09d34ae6c..2e01297d8e 100644 --- a/tests/data/ies5000_5106.json +++ b/tests/data/ies5000_5106.json @@ -11768,10 +11768,108 @@ }, { "state_name": "systemStatus", - "state_descr": null, - "state_draw_graph": null, - "state_value": null, - "state_generic_value": null + "state_descr": "moduleNoDefect", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleOverHeat", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleFanRpmLow", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleVoltageLow", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleThermalSensorFailure", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "modulePullOut", + "state_draw_graph": 0, + "state_value": 32, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "powerDC48VAFailure", + "state_draw_graph": 0, + "state_value": 64, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "powerDC48VBFailure", + "state_draw_graph": 0, + "state_value": 128, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "extAlarmInputTrigger", + "state_draw_graph": 0, + "state_value": 256, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "moduleDown", + "state_draw_graph": 0, + "state_value": 512, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "mscSwitchOverOK", + "state_draw_graph": 0, + "state_value": 1024, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "networkTopologyChange", + "state_draw_graph": 0, + "state_value": 2048, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "macSpoof", + "state_draw_graph": 0, + "state_value": 4096, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "cpuHigh", + "state_draw_graph": 0, + "state_value": 8192, + "state_generic_value": 2 + }, + { + "state_name": "systemStatus", + "state_descr": "memoryUsageHigh", + "state_draw_graph": 0, + "state_value": 16384, + "state_generic_value": 2 } ] }, diff --git a/tests/data/infinera-xtm_infinera-xtm-r33b-43.json b/tests/data/infinera-xtm_infinera-xtm-r33b-43.json index 1bbd7af179..d903fc2336 100644 --- a/tests/data/infinera-xtm_infinera-xtm-r33b-43.json +++ b/tests/data/infinera-xtm_infinera-xtm-r33b-43.json @@ -6655,7 +6655,7 @@ "group": "Laser Current", "sensor_divisor": 10000, "sensor_multiplier": 1, - "sensor_current": 0.1333, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -6680,7 +6680,7 @@ "group": "Laser Current", "sensor_divisor": 10000, "sensor_multiplier": 1, - "sensor_current": 0.1333, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -12464,5852 +12464,6 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "chromatic_dispersion", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.7.149", - "sensor_index": "laser-cd.149", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser CD lineL0:1:2:21-22", - "group": "Laser Chromatic Dispersion", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 812, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.129", - "sensor_index": "129", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:1-2", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-129", - "entPhysicalIndex_measured": null, - "sensor_prev": 0.1333, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.131", - "sensor_index": "131", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:3-4", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-131", - "entPhysicalIndex_measured": null, - "sensor_prev": 0.1333, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.133", - "sensor_index": "133", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:5-6", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0083, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-133", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.135", - "sensor_index": "135", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:7-8", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.008, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-135", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.137", - "sensor_index": "137", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:9-10", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0083, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-137", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.139", - "sensor_index": "139", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:11-12", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0083, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-139", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.143", - "sensor_index": "143", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:15-16", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-143", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.145", - "sensor_index": "145", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:17-18", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-145", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.147", - "sensor_index": "147", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current clientTrx:1:2:19-20", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-147", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.4.149", - "sensor_index": "149", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser current lineTrx:1:2:21-22", - "group": "Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.22.45", - "sensor_index": "45", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier current 1:oa:1:11:1-2", - "group": "Amplifier Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.1031, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.22.61", - "sensor_index": "61", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier current 1:oa:1:15:1-2", - "group": "Amplifier Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0694, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.22.63", - "sensor_index": "63", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier current 1:oa:1:15:3-4", - "group": "Amplifier Laser Current", - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0725, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.4.133", - "sensor_index": "laser-rx-dbm.133", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Rx clientL0:1:2:5-6", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-133", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.4.135", - "sensor_index": "laser-rx-dbm.135", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Rx clientL0:1:2:7-8", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-135", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.4.137", - "sensor_index": "laser-rx-dbm.137", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Rx clientL0:1:2:9-10", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-137", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.4.139", - "sensor_index": "laser-rx-dbm.139", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Rx clientL0:1:2:11-12", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.6, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-139", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.4.149", - "sensor_index": "laser-rx-dbm.149", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Rx lineL0:1:2:21-22", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -9.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.129", - "sensor_index": "laser-tx-dbm.129", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:1-2", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -100, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.131", - "sensor_index": "laser-tx-dbm.131", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:3-4", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -100, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.133", - "sensor_index": "laser-tx-dbm.133", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:5-6", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-133", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.135", - "sensor_index": "laser-tx-dbm.135", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:7-8", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-135", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.137", - "sensor_index": "laser-tx-dbm.137", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:9-10", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-137", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.139", - "sensor_index": "laser-tx-dbm.139", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:11-12", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -2.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-139", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.143", - "sensor_index": "laser-tx-dbm.143", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:15-16", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -100, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-143", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.145", - "sensor_index": "laser-tx-dbm.145", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:17-18", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -100, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-145", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.147", - "sensor_index": "laser-tx-dbm.147", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx clientL0:1:2:19-20", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -100, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-147", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.56.2.6.1.1.5.149", - "sensor_index": "laser-tx-dbm.149", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Tx lineL0:1:2:21-22", - "group": "Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.51.129", - "sensor_index": "oa-gain-dbm.129", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Gain 2:oa:2:16:1-2", - "group": "Amplifier Laser Gain dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 22, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.51.131", - "sensor_index": "oa-gain-dbm.131", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Gain 2:oa:2:16:3-4", - "group": "Amplifier Laser Gain dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 22, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.51.45", - "sensor_index": "oa-gain-dbm.45", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Gain 1:oa:1:11:1-2", - "group": "Amplifier Laser Gain dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 28, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.51.61", - "sensor_index": "oa-gain-dbm.61", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Gain 1:oa:1:15:1-2", - "group": "Amplifier Laser Gain dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 23, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.51.63", - "sensor_index": "oa-gain-dbm.63", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Gain 1:oa:1:15:3-4", - "group": "Amplifier Laser Gain dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 23, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.20.129", - "sensor_index": "oa-rx-dbm.129", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Rx 2:oa:2:16:1-2", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -10.7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.20.131", - "sensor_index": "oa-rx-dbm.131", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Rx 2:oa:2:16:3-4", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -10.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.20.45", - "sensor_index": "oa-rx-dbm.45", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Rx 1:oa:1:11:1-2", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -20.1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.20.61", - "sensor_index": "oa-rx-dbm.61", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Rx 1:oa:1:15:1-2", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -18.2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.20.63", - "sensor_index": "oa-rx-dbm.63", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Rx 1:oa:1:15:3-4", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -16, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.19.129", - "sensor_index": "oa-tx-dbm.129", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Tx 2:oa:2:16:1-2", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 11.4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.19.131", - "sensor_index": "oa-tx-dbm.131", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Tx 2:oa:2:16:3-4", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 11.8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.19.45", - "sensor_index": "oa-tx-dbm.45", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Tx 1:oa:1:11:1-2", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 8.6, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.19.61", - "sensor_index": "oa-tx-dbm.61", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Tx 1:oa:1:15:1-2", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 5.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.19.63", - "sensor_index": "oa-tx-dbm.63", - "sensor_type": "infinera-xtm", - "sensor_descr": "Amplifier Tx 1:oa:1:15:3-4", - "group": "Amplifier Laser dBm", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 7.4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.60.129", - "sensor_index": "129", - "sensor_type": "AmplifierRxSignalStatus", - "sensor_descr": "Amplifier Rx Signals 2:oa:2:16:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierRxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.60.131", - "sensor_index": "131", - "sensor_type": "AmplifierRxSignalStatus", - "sensor_descr": "Amplifier Rx Signals 2:oa:2:16:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierRxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.60.45", - "sensor_index": "45", - "sensor_type": "AmplifierRxSignalStatus", - "sensor_descr": "Amplifier Rx Signals 1:oa:1:11:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierRxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.60.61", - "sensor_index": "61", - "sensor_type": "AmplifierRxSignalStatus", - "sensor_descr": "Amplifier Rx Signals 1:oa:1:15:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierRxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.60.63", - "sensor_index": "63", - "sensor_type": "AmplifierRxSignalStatus", - "sensor_descr": "Amplifier Rx Signals 1:oa:1:15:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierRxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.59.129", - "sensor_index": "129", - "sensor_type": "AmplifierTxSignalStatus", - "sensor_descr": "Amplifier Tx Signals 2:oa:2:16:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierTxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.59.131", - "sensor_index": "131", - "sensor_type": "AmplifierTxSignalStatus", - "sensor_descr": "Amplifier Tx Signals 2:oa:2:16:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierTxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.59.45", - "sensor_index": "45", - "sensor_type": "AmplifierTxSignalStatus", - "sensor_descr": "Amplifier Tx Signals 1:oa:1:11:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierTxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.59.61", - "sensor_index": "61", - "sensor_type": "AmplifierTxSignalStatus", - "sensor_descr": "Amplifier Tx Signals 1:oa:1:15:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierTxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.59.63", - "sensor_index": "63", - "sensor_type": "AmplifierTxSignalStatus", - "sensor_descr": "Amplifier Tx Signals 1:oa:1:15:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmplifierTxSignalStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.61.129", - "sensor_index": "129", - "sensor_type": "AmpLoS", - "sensor_descr": "Amplifier Output Power 2:oa:2:16:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpLoS" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.61.131", - "sensor_index": "131", - "sensor_type": "AmpLoS", - "sensor_descr": "Amplifier Output Power 2:oa:2:16:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpLoS" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.61.45", - "sensor_index": "45", - "sensor_type": "AmpLoS", - "sensor_descr": "Amplifier Output Power 1:oa:1:11:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpLoS" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.61.61", - "sensor_index": "61", - "sensor_type": "AmpLoS", - "sensor_descr": "Amplifier Output Power 1:oa:1:15:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpLoS" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.61.63", - "sensor_index": "63", - "sensor_type": "AmpLoS", - "sensor_descr": "Amplifier Output Power 1:oa:1:15:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpLoS" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.10.129", - "sensor_index": "129", - "sensor_type": "AmpOperStatus", - "sensor_descr": "oa:2:16:1-2 - oa1:Pre-Amp von xy", - "group": "Amplifier Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.10.131", - "sensor_index": "131", - "sensor_type": "AmpOperStatus", - "sensor_descr": "oa:2:16:3-4 - oa2: Booster nach xy", - "group": "Amplifier Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.10.45", - "sensor_index": "45", - "sensor_type": "AmpOperStatus", - "sensor_descr": "oa:1:11:1-2 - Pre-Amp von xy", - "group": "Amplifier Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.10.61", - "sensor_index": "61", - "sensor_type": "AmpOperStatus", - "sensor_descr": "oa:1:15:1-2 - Pre-Amp von xy", - "group": "Amplifier Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.10.63", - "sensor_index": "63", - "sensor_type": "AmpOperStatus", - "sensor_descr": "oa:1:15:3-4 - Booster nach xy", - "group": "Amplifier Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.52.129", - "sensor_index": "129", - "sensor_type": "AmpSaturationFault", - "sensor_descr": "Amplifier Saturation Fault 2:oa:2:16:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpSaturationFault" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.52.131", - "sensor_index": "131", - "sensor_type": "AmpSaturationFault", - "sensor_descr": "Amplifier Saturation Fault 2:oa:2:16:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpSaturationFault" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.52.45", - "sensor_index": "45", - "sensor_type": "AmpSaturationFault", - "sensor_descr": "Amplifier Saturation Fault 1:oa:1:11:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpSaturationFault" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.52.61", - "sensor_index": "61", - "sensor_type": "AmpSaturationFault", - "sensor_descr": "Amplifier Saturation Fault 1:oa:1:15:1-2", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpSaturationFault" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.52.63", - "sensor_index": "63", - "sensor_type": "AmpSaturationFault", - "sensor_descr": "Amplifier Saturation Fault 1:oa:1:15:3-4", - "group": "Amplifier Signal States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpSaturationFault" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.57.129", - "sensor_index": "129", - "sensor_type": "AmpTempExceeded", - "sensor_descr": "Temperature Amplifier 2:oa:2:16:1-2", - "group": "Amplifier Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpTempExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.57.131", - "sensor_index": "131", - "sensor_type": "AmpTempExceeded", - "sensor_descr": "Temperature Amplifier 2:oa:2:16:3-4", - "group": "Amplifier Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpTempExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.57.45", - "sensor_index": "45", - "sensor_type": "AmpTempExceeded", - "sensor_descr": "Temperature Amplifier 1:oa:1:11:1-2", - "group": "Amplifier Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpTempExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.57.61", - "sensor_index": "61", - "sensor_type": "AmpTempExceeded", - "sensor_descr": "Temperature Amplifier 1:oa:1:15:1-2", - "group": "Amplifier Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpTempExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.57.63", - "sensor_index": "63", - "sensor_type": "AmpTempExceeded", - "sensor_descr": "Temperature Amplifier 1:oa:1:15:3-4", - "group": "Amplifier Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "AmpTempExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10101", - "sensor_index": "10101", - "sensor_type": "BoardOperStatus", - "sensor_descr": "cusfpii:1:1 -", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10101", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10102", - "sensor_index": "10102", - "sensor_type": "BoardOperStatus", - "sensor_descr": "mxp100gotn:1:2 - nach xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10102", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10108", - "sensor_index": "10108", - "sensor_type": "BoardOperStatus", - "sensor_descr": "mdu40even:1:8 - nach xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10108", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10111", - "sensor_index": "10111", - "sensor_type": "BoardOperStatus", - "sensor_descr": "oa1x17dbm:1:11 - Pre-Amp von xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10111", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10112", - "sensor_index": "10112", - "sensor_type": "BoardOperStatus", - "sensor_descr": "mdu40even:1:12 - nach xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10112", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10115", - "sensor_index": "10115", - "sensor_type": "BoardOperStatus", - "sensor_descr": "oa2x17dbm:1:15 - OA1:Pre-Amp xy / OA2:Booster xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10115", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10116", - "sensor_index": "10116", - "sensor_type": "BoardOperStatus", - "sensor_descr": "ocm2p:1:16 - A: xy, B:xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10116", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10117", - "sensor_index": "10117", - "sensor_type": "BoardOperStatus", - "sensor_descr": "fpu1:1:17 -", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10117", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10201", - "sensor_index": "10201", - "sensor_type": "BoardOperStatus", - "sensor_descr": "cusfpii:2:1 -", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10201", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10213", - "sensor_index": "10213", - "sensor_type": "BoardOperStatus", - "sensor_descr": "mdu40even:2:13 - nach xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10213", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10216", - "sensor_index": "10216", - "sensor_type": "BoardOperStatus", - "sensor_descr": "oa2xlg20dbmb:2:16 - oa1:Pre-Amp xy, oa2: xy", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10216", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.12.10217", - "sensor_index": "10217", - "sensor_type": "BoardOperStatus", - "sensor_descr": "ocm2p:2:17 - A: xy, B:", - "group": "Board Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10217", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10101", - "sensor_index": "10101", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm cusfpii:1:1", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10101", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10102", - "sensor_index": "10102", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm mxp100gotn:1:2", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10102", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10108", - "sensor_index": "10108", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm mdu40even:1:8", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10108", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10111", - "sensor_index": "10111", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm oa1x17dbm:1:11", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10111", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10112", - "sensor_index": "10112", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm mdu40even:1:12", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10112", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10115", - "sensor_index": "10115", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm oa2x17dbm:1:15", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10115", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10116", - "sensor_index": "10116", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm ocm2p:1:16", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10116", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10117", - "sensor_index": "10117", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm fpu1:1:17", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10117", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10201", - "sensor_index": "10201", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm cusfpii:2:1", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10201", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10213", - "sensor_index": "10213", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm mdu40even:2:13", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10213", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10216", - "sensor_index": "10216", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm oa2xlg20dbmb:2:16", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10216", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.17.10217", - "sensor_index": "10217", - "sensor_type": "BoardTempHighExceeded", - "sensor_descr": "Temperature High Alarm ocm2p:2:17", - "group": "Board Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10217", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "BoardTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.2.1.1.19.1", - "sensor_index": "1", - "sensor_type": "equipmentSubrackOperStatus", - "sensor_descr": "Operational State Subrack 1", - "group": "Subrack Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "sr-1", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "equipmentSubrackOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.2.1.1.19.2", - "sensor_index": "2", - "sensor_type": "equipmentSubrackOperStatus", - "sensor_descr": "Operational State Subrack 2", - "group": "Subrack Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "sr-2", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "equipmentSubrackOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.2.1.1.12.1", - "sensor_index": "1", - "sensor_type": "equipmentSubrackTempHighExceeded", - "sensor_descr": "Temperature High Alarm Subrack 1", - "group": "Subrack Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "sr-1", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "equipmentSubrackTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.2.1.1.12.2", - "sensor_index": "2", - "sensor_type": "equipmentSubrackTempHighExceeded", - "sensor_descr": "Temperature High Alarm Subrack 2", - "group": "Subrack Temperature States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "sr-2", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "equipmentSubrackTempHighExceeded" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.5.1.1.10.1011", - "sensor_index": "1011", - "sensor_type": "FanOperStatus", - "sensor_descr": "Fan Status fan:1:1", - "group": "Fan States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "fan-1011", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "FanOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.5.1.1.10.1012", - "sensor_index": "1012", - "sensor_type": "FanOperStatus", - "sensor_descr": "Fan Status fan:1:2", - "group": "Fan States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "fan-1012", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "FanOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.5.1.1.10.1021", - "sensor_index": "1021", - "sensor_type": "FanOperStatus", - "sensor_descr": "Fan Status fan:2:1", - "group": "Fan States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "fan-1021", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "FanOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.5.1.1.10.1022", - "sensor_index": "1022", - "sensor_type": "FanOperStatus", - "sensor_descr": "Fan Status fan:2:2", - "group": "Fan States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "fan-1022", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "FanOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.6.1.1.10.2321", - "sensor_index": "2321", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "line:2:13:81-82 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2803", - "sensor_index": "2803", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:3-4:920 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2805", - "sensor_index": "2805", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:5-6:921 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2807", - "sensor_index": "2807", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:7-8:922 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2809", - "sensor_index": "2809", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:9-10:923 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2811", - "sensor_index": "2811", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:11-12:924 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2813", - "sensor_index": "2813", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:13-14:925 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.2817", - "sensor_index": "2817", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:2:13:17-18:927 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.6.1.1.10.593", - "sensor_index": "593", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "line:1:8:81-82 - Richtung xy", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.643", - "sensor_index": "643", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:8:3-4:920 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.651", - "sensor_index": "651", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:8:11-12:924 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.653", - "sensor_index": "653", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:8:13-14:925 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.657", - "sensor_index": "657", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:8:17-18:927 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.6.1.1.10.849", - "sensor_index": "849", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "line:1:12:81-82 - Richtung xy", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.961", - "sensor_index": "961", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:1-2:919 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.963", - "sensor_index": "963", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:3-4:920 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.965", - "sensor_index": "965", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:5-6:921 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.967", - "sensor_index": "967", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:7-8:922 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.969", - "sensor_index": "969", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:9-10:923 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.971", - "sensor_index": "971", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:11-12:924 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.973", - "sensor_index": "973", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:13-14:925 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.5.1.1.10.977", - "sensor_index": "977", - "sensor_type": "OaVoaOperStatus", - "sensor_descr": "client:1:12:17-18:927 -", - "group": "oaVoa Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OaVoaOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.25.1025", - "sensor_index": "1025", - "sensor_type": "OCMModule", - "sensor_descr": "OCM Module Status 1:ocm:1:16:1-A", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-1025", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMModule" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.25.1026", - "sensor_index": "1026", - "sensor_type": "OCMModule", - "sensor_descr": "OCM Module Status 1:ocm:1:16:2-B", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-1026", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMModule" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.25.2113", - "sensor_index": "2113", - "sensor_type": "OCMModule", - "sensor_descr": "OCM Module Status 2:ocm:2:17:1-A", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-2113", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMModule" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.25.2114", - "sensor_index": "2114", - "sensor_type": "OCMModule", - "sensor_descr": "OCM Module Status 2:ocm:2:17:2-B", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-2114", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMModule" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.9.1025", - "sensor_index": "1025", - "sensor_type": "OCMOperStatus", - "sensor_descr": "ocm:1:16:1-A - Monitor nach xy", - "group": "OCM Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-1025", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.9.1026", - "sensor_index": "1026", - "sensor_type": "OCMOperStatus", - "sensor_descr": "ocm:1:16:2-B - Monitor nach xy", - "group": "OCM Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-1026", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.9.2113", - "sensor_index": "2113", - "sensor_type": "OCMOperStatus", - "sensor_descr": "ocm:2:17:1-A - nach xy", - "group": "OCM Operational States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-2113", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.22.1025", - "sensor_index": "1025", - "sensor_type": "OCMSwitch", - "sensor_descr": "OCM Switch Status 1:ocm:1:16:1-A", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-1025", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMSwitch" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.22.1026", - "sensor_index": "1026", - "sensor_type": "OCMSwitch", - "sensor_descr": "OCM Switch Status 1:ocm:1:16:2-B", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-1026", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMSwitch" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.22.2113", - "sensor_index": "2113", - "sensor_type": "OCMSwitch", - "sensor_descr": "OCM Switch Status 2:ocm:2:17:1-A", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-2113", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMSwitch" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.33.2.2.1.1.22.2114", - "sensor_index": "2114", - "sensor_type": "OCMSwitch", - "sensor_descr": "OCM Switch Status 2:ocm:2:17:2-B", - "group": "OCM Module States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "ocm-2114", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OCMSwitch" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.55.2.2.1.1.6.149", - "sensor_index": "149", - "sensor_type": "OTNBDIState", - "sensor_descr": "OTN BDI lineSm:1:2:21-22", - "group": "OTN Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "otnmon-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OTNBDIState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.55.2.2.1.1.8.149", - "sensor_index": "149", - "sensor_type": "OTNBIAEState", - "sensor_descr": "OTN BIAE lineSm:1:2:21-22", - "group": "OTN Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "otnmon-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OTNBIAEState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.55.2.2.1.1.7.149", - "sensor_index": "149", - "sensor_type": "OTNIAEState", - "sensor_descr": "OTN IAE lineSm:1:2:21-22", - "group": "OTN Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "otnmon-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OTNIAEState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.50.2.2.1.1.7.149", - "sensor_index": "149", - "sensor_type": "OTNIndicationSignal", - "sensor_descr": "OTN Indication Signal lineOtu:1:2:21-22", - "group": "OTN Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "otn-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OTNIndicationSignal" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.50.2.2.1.1.6.149", - "sensor_index": "149", - "sensor_type": "OTNLoF", - "sensor_descr": "OTN Loss of Frame lineOtu:1:2:21-22", - "group": "OTN Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "otn-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OTNLoF" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.50.2.2.1.1.8.149", - "sensor_index": "149", - "sensor_type": "OTNLoMF", - "sensor_descr": "OTN Loss of Multiframe lineOtu:1:2:21-22", - "group": "OTN Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "otn-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "OTNLoMF" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.1089", - "sensor_index": "1089", - "sensor_type": "PhysPortState", - "sensor_descr": "clientAdmin:1:17:1-2", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-1089", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.1091", - "sensor_index": "1091", - "sensor_type": "PhysPortState", - "sensor_descr": "lineAdmin:1:17:3-4", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-1091", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.1093", - "sensor_index": "1093", - "sensor_type": "PhysPortState", - "sensor_descr": "lineAdmin:1:17:5-6", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-1093", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.133", - "sensor_index": "133", - "sensor_type": "PhysPortState", - "sensor_descr": "clientAdmin:1:2:5-6 xy - xy", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-133", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.135", - "sensor_index": "135", - "sensor_type": "PhysPortState", - "sensor_descr": "clientAdmin:1:2:7-8 xy - xy", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-135", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.137", - "sensor_index": "137", - "sensor_type": "PhysPortState", - "sensor_descr": "clientAdmin:1:2:9-10 xy - xy", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-137", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.139", - "sensor_index": "139", - "sensor_type": "PhysPortState", - "sensor_descr": "clientAdmin:1:2:11-12 xy - xy", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-139", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.141", - "sensor_index": "141", - "sensor_type": "PhysPortState", - "sensor_descr": "clientAdmin:1:2:13-14 xy - xy", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-141", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.46.2.3.1.1.9.149", - "sensor_index": "149", - "sensor_type": "PhysPortState", - "sensor_descr": "lineAdmin:1:2:21-22", - "group": "Physical Port States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "physport-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PhysPortState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.4.1.1.21.1011", - "sensor_index": "1011", - "sensor_type": "PSUOperStatus", - "sensor_descr": "PSU Status pow:1:1, Type: 2", - "group": "PSU States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "psu-1011", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PSUOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.4.1.1.21.1012", - "sensor_index": "1012", - "sensor_type": "PSUOperStatus", - "sensor_descr": "PSU Status pow:1:2, Type: 2", - "group": "PSU States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "psu-1012", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PSUOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.4.1.1.21.1021", - "sensor_index": "1021", - "sensor_type": "PSUOperStatus", - "sensor_descr": "PSU Status pow:2:1, Type: 2", - "group": "PSU States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "psu-1021", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PSUOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.4.1.1.21.1022", - "sensor_index": "1022", - "sensor_type": "PSUOperStatus", - "sensor_descr": "PSU Status pow:2:2, Type: 2", - "group": "PSU States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "psu-1022", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "PSUOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.34819", - "sensor_index": "34819", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:8:3:920", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.34827", - "sensor_index": "34827", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:8:11:924", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.34829", - "sensor_index": "34829", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:8:13:925", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.34833", - "sensor_index": "34833", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:8:17:927", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35841", - "sensor_index": "35841", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:1:919", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35843", - "sensor_index": "35843", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:3:920", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35845", - "sensor_index": "35845", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:5:921", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35847", - "sensor_index": "35847", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:7:922", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35849", - "sensor_index": "35849", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:9:923", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35851", - "sensor_index": "35851", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:11:924", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35853", - "sensor_index": "35853", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:13:925", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.35857", - "sensor_index": "35857", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:1:12:17:927", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68867", - "sensor_index": "68867", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:3:920", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68869", - "sensor_index": "68869", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:5:921", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68871", - "sensor_index": "68871", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:7:922", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68873", - "sensor_index": "68873", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:9:923", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68875", - "sensor_index": "68875", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:11:924", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68877", - "sensor_index": "68877", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:13:925", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.22.68881", - "sensor_index": "68881", - "sensor_type": "WDMChannelLoSStatus", - "sensor_descr": "WDM Channel LoS ch:2:13:17:927", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelLoSStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.34819", - "sensor_index": "34819", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:8:3:920", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.34827", - "sensor_index": "34827", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:8:11:924", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.34829", - "sensor_index": "34829", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:8:13:925", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.34833", - "sensor_index": "34833", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:8:17:927", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35841", - "sensor_index": "35841", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:1:919", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35843", - "sensor_index": "35843", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:3:920", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35845", - "sensor_index": "35845", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:5:921", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35847", - "sensor_index": "35847", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:7:922", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35849", - "sensor_index": "35849", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:9:923", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35851", - "sensor_index": "35851", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:11:924", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35853", - "sensor_index": "35853", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:13:925", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.35857", - "sensor_index": "35857", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:1:12:17:927", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68867", - "sensor_index": "68867", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:3:920", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68869", - "sensor_index": "68869", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:5:921", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68871", - "sensor_index": "68871", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:7:922", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68873", - "sensor_index": "68873", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:9:923", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68875", - "sensor_index": "68875", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:11:924", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68877", - "sensor_index": "68877", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:13:925", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.4.2.8.1.1.16.68881", - "sensor_index": "68881", - "sensor_type": "WDMChannelStatus", - "sensor_descr": "WDM Channel Status ch:2:13:17:927", - "group": "WDM Channel States", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "WDMChannelStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.2.1.1.11.1", - "sensor_index": "1", - "sensor_type": "infinera-xtm", - "sensor_descr": "Subrack Temperature 1", - "group": "Subrack Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 37.2, - "sensor_limit": 55, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "sr-1", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10101", - "sensor_index": "10101", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:cusfpii:1:1", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 35.7, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10101", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10102", - "sensor_index": "10102", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:mxp100gotn:1:2", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 40, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10102", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10108", - "sensor_index": "10108", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:mdu40even:1:8", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 39, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10108", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10111", - "sensor_index": "10111", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:oa1x17dbm:1:11", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 34.7, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10111", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10112", - "sensor_index": "10112", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:mdu40even:1:12", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 38.2, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10112", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10115", - "sensor_index": "10115", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:oa2x17dbm:1:15", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 34.2, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10115", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10116", - "sensor_index": "10116", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:ocm2p:1:16", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 35.7, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10116", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10117", - "sensor_index": "10117", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:fpu1:1:17", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 33.2, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10117", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10201", - "sensor_index": "10201", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 2:cusfpii:2:1", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 33.5, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10201", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10213", - "sensor_index": "10213", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 2:mdu40even:2:13", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 34.7, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10213", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10216", - "sensor_index": "10216", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 2:oa2xlg20dbmb:2:16", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 32.5, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10216", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.3.1.1.8.10217", - "sensor_index": "10217", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 2:ocm2p:2:17", - "group": "Board Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 33.5, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "board-10217", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.43.129", - "sensor_index": "129", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 2:oa:2:16:1-2", - "group": "Amplifier Laser Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 45, - "sensor_limit_warn": null, - "sensor_limit_low": 15, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-129", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.43.131", - "sensor_index": "131", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 2:oa:2:16:3-4", - "group": "Amplifier Laser Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 45, - "sensor_limit_warn": null, - "sensor_limit_low": 15, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-131", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.47.2.2.1.1.5.149", - "sensor_index": "149", - "sensor_type": "infinera-xtm", - "sensor_descr": "Laser Temperature lineTrx:1:2:21-22", - "group": "Laser Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 50.1, - "sensor_limit": 70.1, - "sensor_limit_warn": null, - "sensor_limit_low": 40.1, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "laser-149", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.11.2.2.1.1.11.2", - "sensor_index": "2", - "sensor_type": "infinera-xtm", - "sensor_descr": "Subrack Temperature 2", - "group": "Subrack Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 34, - "sensor_limit": 55, - "sensor_limit_warn": null, - "sensor_limit_low": 3, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "sr-2", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.43.45", - "sensor_index": "45", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:oa:1:11:1-2", - "group": "Amplifier Laser Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 45, - "sensor_limit_warn": null, - "sensor_limit_low": 15, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-45", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.43.61", - "sensor_index": "61", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:oa:1:15:1-2", - "group": "Amplifier Laser Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 25.2, - "sensor_limit": 45.2, - "sensor_limit_warn": null, - "sensor_limit_low": 15.2, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-61", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.8708.2.19.2.2.1.1.43.63", - "sensor_index": "63", - "sensor_type": "infinera-xtm", - "sensor_descr": "Temperature 1:oa:1:15:3-4", - "group": "Amplifier Laser Temperature", - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 25.4, - "sensor_limit": 45.4, - "sensor_limit_warn": null, - "sensor_limit_low": 15.4, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "oa-63", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ], - "state_indexes": [ - { - "state_name": "AmplifierRxSignalStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "AmplifierRxSignalStatus", - "state_descr": "degraded", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "AmplifierRxSignalStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "AmplifierTxSignalStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "AmplifierTxSignalStatus", - "state_descr": "degraded", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "AmplifierTxSignalStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "AmpLoS", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "AmpLoS", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "AmpOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "AmpOperStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "AmpOperStatus", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "AmpSaturationFault", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "AmpSaturationFault", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "AmpTempExceeded", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "AmpTempExceeded", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "BoardOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "BoardOperStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "BoardOperStatus", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "BoardTempHighExceeded", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "BoardTempHighExceeded", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "equipmentSubrackOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "equipmentSubrackOperStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "equipmentSubrackOperStatus", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "equipmentSubrackTempHighExceeded", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "equipmentSubrackTempHighExceeded", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "FanOperStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "FanOperStatus", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OaVoaOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OaVoaOperStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OaVoaOperStatus", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "OCMModule", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OCMModule", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OCMOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OCMOperStatus", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OCMOperStatus", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "OCMSwitch", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OCMSwitch", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OTNBDIState", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OTNBDIState", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OTNBIAEState", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OTNBIAEState", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OTNIAEState", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OTNIAEState", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OTNIndicationSignal", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OTNIndicationSignal", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OTNLoF", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OTNLoF", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "OTNLoMF", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "OTNLoMF", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "PhysPortState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "PhysPortState", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "PhysPortState", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "PSUOperStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "PSUOperStatus", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "WDMChannelLoSStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "WDMChannelLoSStatus", - "state_descr": "alarm", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "initial", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "searching", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "regulating", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "not found", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 2 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "error", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "WDMChannelStatus", - "state_descr": "waiting", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 1 - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/data/innovaphone.json b/tests/data/innovaphone.json index e9241bae55..720f70a9c0 100644 --- a/tests/data/innovaphone.json +++ b/tests/data/innovaphone.json @@ -633,17 +633,67 @@ "sensors": { "discovery": { "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6666.1.4.1.5.80.82.73.49", + "sensor_index": "l3CallsBoot.80.82.73.49", + "sensor_type": "innovaphone", + "sensor_descr": "Calls since boot PRI1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "count", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.6666.1.4.1.3.80.82.73.49", - "sensor_index": "80.82.73.49", + "sensor_index": "l3NumBchan.80.82.73.49", "sensor_type": "innovaphone", "sensor_descr": "Available Channels PRI1", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6666.1.4.1.4.80.82.73.49", + "sensor_index": "l3NumBchanActive.80.82.73.49", + "sensor_type": "innovaphone", + "sensor_descr": "Active calls PRI1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, @@ -719,7 +769,7 @@ "group": "PRI1", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 1, + "sensor_current": 3, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1032,406 +1082,6 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "count", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.1.4.1.3.80.82.73.49", - "sensor_index": "80.82.73.49", - "sensor_type": "innovaphone", - "sensor_descr": "Available Channels PRI1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 31, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.1.1.1.3.80.82.73.49.45.76.50", - "sensor_index": "80.82.73.49.45.76.50", - "sensor_type": "L2Mode", - "sensor_descr": "Mode PRI1-L2", - "group": "PRI1-L2", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "L2Mode" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.1.1.1.2.80.82.73.49.45.76.50", - "sensor_index": "80.82.73.49.45.76.50", - "sensor_type": "L2State", - "sensor_descr": "LAPD PRI1-L2", - "group": "PRI1-L2", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "L2State" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.1.4.1.2.80.82.73.49", - "sensor_index": "80.82.73.49", - "sensor_type": "l3Label", - "sensor_descr": "ISDN signaling protocol PRI1", - "group": "PRI1", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "l3Label" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.1", - "sensor_index": "1", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface PRI1\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.2", - "sensor_index": "2", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface TEST\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.3", - "sensor_index": "3", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface TONE\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.4", - "sensor_index": "4", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface HTTP\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.5", - "sensor_index": "5", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface ECHO\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.6", - "sensor_index": "6", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface SIG0\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "6", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.7", - "sensor_index": "7", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface SIG1\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "7", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.8", - "sensor_index": "8", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface FAX\u0000\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "8", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6666.2.1.1.1.4.9", - "sensor_index": "9", - "sensor_type": "voiceIfState", - "sensor_descr": "Interface CONF\u0000\u0000\u0000\u0000", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "9", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "voiceIfState" - } - ], - "state_indexes": [ - { - "state_name": "L2Mode", - "state_descr": "TE", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "L2Mode", - "state_descr": "NT", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "L2State", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "L2State", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "l3Label", - "state_descr": "none", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "l3Label", - "state_descr": "other", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 3 - }, - { - "state_name": "l3Label", - "state_descr": "etsi", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "l3Label", - "state_descr": "qsig", - "state_draw_graph": 0, - "state_value": 23, - "state_generic_value": 0 - }, - { - "state_name": "voiceIfState", - "state_descr": "down", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 2 - }, - { - "state_name": "voiceIfState", - "state_descr": "up", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/data/ios_2960x.json b/tests/data/ios_2960x.json index 3cb259aa4d..d5db4b4f5c 100644 --- a/tests/data/ios_2960x.json +++ b/tests/data/ios_2960x.json @@ -29554,7 +29554,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29579,7 +29579,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29604,7 +29604,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29629,7 +29629,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29654,7 +29654,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29679,7 +29679,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29704,7 +29704,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29729,7 +29729,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29754,7 +29754,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29779,7 +29779,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29804,7 +29804,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29829,7 +29829,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29854,7 +29854,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29879,7 +29879,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29904,7 +29904,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29929,7 +29929,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29954,7 +29954,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -29979,7 +29979,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -30004,7 +30004,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -30029,7 +30029,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -30054,7 +30054,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -30079,7 +30079,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -30559,1249 +30559,7 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "count", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.4.1.0", - "sensor_index": "0", - "sensor_type": "ios", - "sensor_descr": "PoE Devices Connected", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 19, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1065", - "sensor_index": "1065", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi1/0/52 Bias Current", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0061, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "10152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3065", - "sensor_index": "3065", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi3/0/52 Bias Current", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0.0057, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "11152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1066", - "sensor_index": "1066", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi1/0/52 Transmit Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "10152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1067", - "sensor_index": "1067", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi1/0/52 Receive Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -4.7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "10152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3066", - "sensor_index": "3066", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi3/0/52 Transmit Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "11152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3067", - "sensor_index": "3067", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi3/0/52 Receive Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -7.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "11152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.2.1.105.1.3.1.1.4.1", - "sensor_index": "pethMainPseConsumptionPower.1", - "sensor_type": "ios", - "sensor_descr": "PoE Budget Consumed - ID 1", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 115, - "sensor_limit": 370, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.2.1.105.1.3.1.1.2.1", - "sensor_index": "pethMainPsePower.1", - "sensor_type": "ios", - "sensor_descr": "PoE Budget Total - ID 1", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 370, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.1007", - "sensor_index": "1007", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch#1, Fan#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1007", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.2007", - "sensor_index": "2007", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch#2, Fan#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2007", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.3007", - "sensor_index": "3007", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch#3, Fan#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3007", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.1006", - "sensor_index": "1006", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Sw1, PS1 Normal, RPS NotExist", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1006", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.2006", - "sensor_index": "2006", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Sw2, PS1 Normal, RPS NotExist", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2006", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.3006", - "sensor_index": "3006", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Sw3, PS1 Normal, RPS NotExist", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3006", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1008", - "sensor_index": "1008", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "SW#1, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1008", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2008", - "sensor_index": "2008", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "SW#2, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2008", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3008", - "sensor_index": "3008", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "SW#3, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3008", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.1.3.0", - "sensor_index": "0", - "sensor_type": "cswRingRedundant", - "sensor_descr": "Stack Ring - Redundant", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswRingRedundant" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.5180", - "sensor_index": "5180", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status - StackSub-St1-1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5180", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.5181", - "sensor_index": "5181", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status - StackSub-St1-2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5181", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.5183", - "sensor_index": "5183", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status - StackSub-St2-1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5183", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.5184", - "sensor_index": "5184", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status - StackSub-St2-2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5184", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.5186", - "sensor_index": "5186", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status - StackSub-St3-1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5186", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.5187", - "sensor_index": "5187", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status - StackSub-St3-2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "5187", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.3.1001", - "sensor_index": "1001", - "sensor_type": "cswSwitchRole", - "sensor_descr": "Stack Role - Switch#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1001", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchRole" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.3.2001", - "sensor_index": "2001", - "sensor_type": "cswSwitchRole", - "sensor_descr": "Stack Role - Switch#2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2001", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchRole" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.3.3001", - "sensor_index": "3001", - "sensor_type": "cswSwitchRole", - "sensor_descr": "Stack Role - Switch#3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3001", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchRole" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.6.1001", - "sensor_index": "1001", - "sensor_type": "cswSwitchState", - "sensor_descr": "Stack State - Switch#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1001", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.6.2001", - "sensor_index": "2001", - "sensor_type": "cswSwitchState", - "sensor_descr": "Stack State - Switch#2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2001", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.6.3001", - "sensor_index": "3001", - "sensor_type": "cswSwitchState", - "sensor_descr": "Stack State - Switch#3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3001", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchState" - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1008", - "sensor_index": "1008", - "sensor_type": "cisco", - "sensor_descr": "SW#1, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 44, - "sensor_limit": 68, - "sensor_limit_warn": null, - "sensor_limit_low": 34, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1008", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2008", - "sensor_index": "2008", - "sensor_type": "cisco", - "sensor_descr": "SW#2, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 68, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2008", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3008", - "sensor_index": "3008", - "sensor_type": "cisco", - "sensor_descr": "SW#3, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 68, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3008", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1063", - "sensor_index": "1063", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi1/0/52 Module", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 34.6, - "sensor_limit": 90, - "sensor_limit_warn": 85, - "sensor_limit_low": -10, - "sensor_limit_low_warn": -5, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "10152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3063", - "sensor_index": "3063", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi3/0/52 Module", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 31, - "sensor_limit": 51, - "sensor_limit_warn": null, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "11152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1064", - "sensor_index": "1064", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi1/0/52 Supply Voltage", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 3.32, - "sensor_limit": 3.818, - "sensor_limit_warn": null, - "sensor_limit_low": 2.822, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "10152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3064", - "sensor_index": "3064", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Gi3/0/52 Supply Voltage", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 3.32, - "sensor_limit": 3.818, - "sensor_limit_warn": null, - "sensor_limit_low": 2.822, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "11152", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ], - "state_indexes": [ - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cswRingRedundant", - "state_descr": "true", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cswRingRedundant", - "state_descr": "false", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "master", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "member", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "notMember", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "standby", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchState", - "state_descr": "waiting", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "progressing", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "added", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "ready", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchState", - "state_descr": "sdmMismatch", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "verMismatch", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "featureMismatch", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "newMasterInit", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "provisioned", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "invalid", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "removed", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 1 - } - ] - } + "poller": "matches discovery" }, "vlans": { "discovery": { @@ -35351,5 +34109,134 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 5180, + "low_ifIndex": 5179, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 5181, + "low_ifIndex": 5179, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 5183, + "low_ifIndex": 5182, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 5184, + "low_ifIndex": 5182, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 5186, + "low_ifIndex": 5185, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 5187, + "low_ifIndex": 5185, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 10152, + "low_ifIndex": 5001, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 11152, + "low_ifIndex": 5001, + "ifStackStatus": "active" + } + ] + } + }, + "discovery-protocols": { + "discovery": { + "links": [ + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-ap-011", + "remote_port": "GigabitEthernet0", + "remote_platform": "cisco AIR-AP2702I-UXK9", + "remote_version": "Cisco IOS Software, C2700 Software (AP3G2-K9W8-M), Version 15.3(3)JC14, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Sun 29-Oct-17 17:15 by prod_rel_team", + "ifAlias": "*** Link to acme-fr-ap-011 int Gi0 ***", + "ifDescr": "GigabitEthernet1/0/3", + "ifName": "Gi1/0/3" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-ap-012", + "remote_port": "GigabitEthernet0", + "remote_platform": "cisco AIR-AP2702I-UXK9", + "remote_version": "Cisco IOS Software, C2700 Software (AP3G2-K9W8-M), Version 15.3(3)JC14, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Sun 29-Oct-17 17:15 by prod_rel_team", + "ifAlias": "*** Link to acme-fr-ap-012 int Gi0 ***", + "ifDescr": "GigabitEthernet3/0/3", + "ifName": "Gi3/0/3" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-ap-013", + "remote_port": "GigabitEthernet0", + "remote_platform": "cisco AIR-AP2702I-UXK9", + "remote_version": "Cisco IOS Software, C2700 Software (AP3G2-K9W8-M), Version 15.3(3)JC14, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Sun 29-Oct-17 17:15 by prod_rel_team", + "ifAlias": "*** Link to acme-fr-ap-013 int Gi0 ***", + "ifDescr": "GigabitEthernet1/0/4", + "ifName": "Gi1/0/4" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-ap-014", + "remote_port": "GigabitEthernet0", + "remote_platform": "cisco AIR-AP2702I-UXK9", + "remote_version": "Cisco IOS Software, C2700 Software (AP3G2-K9W8-M), Version 15.3(3)JC14, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Sun 29-Oct-17 17:15 by prod_rel_team", + "ifAlias": "*** Link to acme-fr-ap-014 int Gi0 ***", + "ifDescr": "GigabitEthernet3/0/4", + "ifName": "Gi3/0/4" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-ap-015", + "remote_port": "GigabitEthernet0", + "remote_platform": "cisco AIR-AP2702I-UXK9", + "remote_version": "Cisco IOS Software, C2700 Software (AP3G2-K9W8-M), Version 15.3(3)JC14, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Sun 29-Oct-17 17:15 by prod_rel_team", + "ifAlias": "*** Link to acme-fr-ap-015 int Gi0 ***", + "ifDescr": "GigabitEthernet1/0/5", + "ifName": "Gi1/0/5" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-s-001", + "remote_port": "GigabitEthernet1/0/3", + "remote_platform": "cisco WS-C3850-12S", + "remote_version": "Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.07.05E RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Fri 10-Feb-17", + "ifAlias": "*** Link to acme-fr-s-001 int Gi1/0/3 ***", + "ifDescr": "GigabitEthernet1/0/52", + "ifName": "Gi1/0/52" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "acme-fr-s-001", + "remote_port": "GigabitEthernet3/0/2", + "remote_platform": "cisco WS-C3850-12S", + "remote_version": "Cisco IOS Software, IOS-XE Software, Catalyst L3 Switch Software (CAT3K_CAA-UNIVERSALK9-M), Version 03.07.05E RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2017 by Cisco Systems, Inc.\nCompiled Fri 10-Feb-17", + "ifAlias": "*** Link to acme-fr-s-001 int Gi3/0/2 ***", + "ifDescr": "GigabitEthernet3/0/52", + "ifName": "Gi3/0/52" + } + ] + } } } diff --git a/tests/data/ios_3560g.json b/tests/data/ios_3560g.json index 1684b1776b..6c54035583 100644 --- a/tests/data/ios_3560g.json +++ b/tests/data/ios_3560g.json @@ -156,7 +156,7 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -179,7 +179,7 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -317,5 +317,31 @@ ] }, "poller": "matches discovery" + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 1001, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "WS-C3560G-24TS-S", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "FOC1426Y2AY", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + } + ] + }, + "poller": "matches discovery" } } diff --git a/tests/data/ios_4506.json b/tests/data/ios_4506.json index 771cca448f..14650e4c10 100644 --- a/tests/data/ios_4506.json +++ b/tests/data/ios_4506.json @@ -34,7 +34,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -59,7 +59,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -84,7 +84,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -109,7 +109,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -134,7 +134,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -159,7 +159,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -184,7 +184,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -359,7 +359,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -384,7 +384,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -409,7 +409,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 5, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -434,7 +434,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -459,7 +459,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 5, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -484,7 +484,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -498,6 +498,31 @@ "rrd_type": "GAUGE", "state_name": "ciscoEnvMonTemperatureState" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -509,7 +534,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -534,7 +559,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -974,6 +999,62 @@ "state_value": 6, "state_generic_value": 2 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -1222,7 +1303,7 @@ "sensor_custom": "No", "entPhysicalIndex": "1000", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1247,7 +1328,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1272,7 +1353,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2000", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1297,7 +1378,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3000", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1322,7 +1403,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4000", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1347,7 +1428,7 @@ "sensor_custom": "No", "entPhysicalIndex": "5000", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1372,7 +1453,7 @@ "sensor_custom": "No", "entPhysicalIndex": "6000", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1547,7 +1628,7 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonFanState" @@ -1572,7 +1653,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonFanState" @@ -1597,7 +1678,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonFanState" @@ -1622,7 +1703,7 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonSupplyState" @@ -1647,7 +1728,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonSupplyState" @@ -1672,11 +1753,36 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonTemperatureState" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -1697,7 +1803,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -1722,7 +1828,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -2153,6 +2259,62 @@ "state_value": 6, "state_generic_value": 2 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", diff --git a/tests/data/ios_c3560.json b/tests/data/ios_c3560.json index 126021ff8e..33fc1075c8 100644 --- a/tests/data/ios_c3560.json +++ b/tests/data/ios_c3560.json @@ -11804,7 +11804,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11829,7 +11829,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11973,263 +11973,7 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "count", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.4.1.0", - "sensor_index": "0", - "sensor_type": "ios", - "sensor_descr": "PoE Devices Connected", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.106.1.2.1.1.15.1.0", - "sensor_index": "cHsrpGrpStandbyState.1.0", - "sensor_type": "cHsrpGrpTable", - "sensor_descr": "HSRP Status 192.168.178.199", - "group": "HSRP", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cHsrpGrpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.106.1.2.1.1.15.2.1", - "sensor_index": "cHsrpGrpStandbyState.2.1", - "sensor_type": "cHsrpGrpTable", - "sensor_descr": "HSRP Status 10.10.10.1", - "group": "HSRP", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cHsrpGrpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.1004", - "sensor_index": "1004", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch#1, Fan#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1004", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.1003", - "sensor_index": "1003", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Sw1, PS1 Normal, RPS NotExist", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1003", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - } - ], - "state_indexes": [ - { - "state_name": "cHsrpGrpTable", - "state_descr": "initial", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "cHsrpGrpTable", - "state_descr": "learn", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "cHsrpGrpTable", - "state_descr": "listen", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cHsrpGrpTable", - "state_descr": "speak", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "cHsrpGrpTable", - "state_descr": "standby", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 0 - }, - { - "state_name": "cHsrpGrpTable", - "state_descr": "active", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - } - ] - } + "poller": "matches discovery" }, "storage": { "discovery": { @@ -14096,5 +13840,16 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 10104, + "low_ifIndex": 5030, + "ifStackStatus": "active" + } + ] + } } } diff --git a/tests/data/ios_ie1000.json b/tests/data/ios_ie1000.json index 7166392f9a..db922a8f3c 100644 --- a/tests/data/ios_ie1000.json +++ b/tests/data/ios_ie1000.json @@ -3063,5 +3063,141 @@ } ] } + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 1000001, + "low_ifIndex": 19, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000002, + "low_ifIndex": 19, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000003, + "low_ifIndex": 500, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000004, + "low_ifIndex": 500, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000005, + "low_ifIndex": 30, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000006, + "low_ifIndex": 30, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000007, + "low_ifIndex": 1, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000007, + "low_ifIndex": 19, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000007, + "low_ifIndex": 30, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000007, + "low_ifIndex": 100, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000007, + "low_ifIndex": 500, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000008, + "low_ifIndex": 1, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000008, + "low_ifIndex": 19, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000008, + "low_ifIndex": 30, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000008, + "low_ifIndex": 100, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000008, + "low_ifIndex": 500, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000009, + "low_ifIndex": 1, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000009, + "low_ifIndex": 19, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000009, + "low_ifIndex": 30, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000009, + "low_ifIndex": 100, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000009, + "low_ifIndex": 500, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000010, + "low_ifIndex": 1, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000010, + "low_ifIndex": 19, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000010, + "low_ifIndex": 30, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000010, + "low_ifIndex": 100, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1000010, + "low_ifIndex": 500, + "ifStackStatus": "active" + } + ] + } } } diff --git a/tests/data/ios_ie2000.json b/tests/data/ios_ie2000.json index 39b4fbd8a0..4a2e137366 100644 --- a/tests/data/ios_ie2000.json +++ b/tests/data/ios_ie2000.json @@ -84,7 +84,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -109,7 +109,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 6, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -134,7 +134,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -159,7 +159,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -496,480 +496,6 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "count", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.4.1.0", - "sensor_index": "0", - "sensor_type": "ios", - "sensor_descr": "PoE Devices Connected", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.2.1.1.2.1007", - "sensor_index": "cefcModuleOperStatus.1007", - "sensor_type": "cefcModuleOperStatus", - "sensor_descr": "Operating Status -", - "group": "Module Operating Status", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1007", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcModuleOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.1004", - "sensor_index": "1004", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Sw1, PSA Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1004", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.1005", - "sensor_index": "1005", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Sw1, PSB Faulty", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 6, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1005", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1006", - "sensor_index": "1006", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "SW#1, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1006", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.601.1.3.1.1.4.1", - "sensor_index": "1", - "sensor_type": "crepSegmentComplete", - "sensor_descr": "REP State - Segment 1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "crepSegmentComplete" - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1006", - "sensor_index": "1006", - "sensor_type": "cisco", - "sensor_descr": "SW#1, Sensor#1, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 46, - "sensor_limit": 89, - "sensor_limit_warn": null, - "sensor_limit_low": 36, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1006", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ], - "state_indexes": [ - { - "state_name": "cefcModuleOperStatus", - "state_descr": "unknown", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "ok", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "okButDiagFailed", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "boot", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "selfTest", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "failed", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "missing", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "mismatchWithParent", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "mismatchConfig", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "diagFailed", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "dormant", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "outOfServiceAdmin", - "state_draw_graph": 0, - "state_value": 13, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "outOfServiceEnvTemp", - "state_draw_graph": 0, - "state_value": 14, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "poweredDown", - "state_draw_graph": 0, - "state_value": 15, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "poweredUp", - "state_draw_graph": 0, - "state_value": 16, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "powerDenied", - "state_draw_graph": 0, - "state_value": 17, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "powerCycled", - "state_draw_graph": 0, - "state_value": 18, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "okButPowerOverWarning", - "state_draw_graph": 0, - "state_value": 19, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "okButPowerOverCritical", - "state_draw_graph": 0, - "state_value": 20, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "syncInProgress", - "state_draw_graph": 0, - "state_value": 21, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "upgrading", - "state_draw_graph": 0, - "state_value": 22, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "okButAuthFailed", - "state_draw_graph": 0, - "state_value": 23, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "mdr", - "state_draw_graph": 0, - "state_value": 24, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "fwMismatchFound", - "state_draw_graph": 0, - "state_value": 25, - "state_generic_value": 2 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "fwDownloadSuccess", - "state_draw_graph": 0, - "state_value": 26, - "state_generic_value": 1 - }, - { - "state_name": "cefcModuleOperStatus", - "state_descr": "fwDownloadFailure", - "state_draw_graph": 0, - "state_value": 27, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "crepSegmentComplete", - "state_descr": "unknown", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 3 - }, - { - "state_name": "crepSegmentComplete", - "state_descr": "complete", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "crepSegmentComplete", - "state_descr": "incomplete", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/data/ios_ir809.json b/tests/data/ios_ir809.json index e3dd91609b..39d1ffbe66 100644 --- a/tests/data/ios_ir809.json +++ b/tests/data/ios_ir809.json @@ -337,7 +337,7 @@ "group": "Modem 0 on Cellular0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 12, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -362,7 +362,7 @@ "group": "Modem 0 on Cellular0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -387,7 +387,7 @@ "group": "Modem 0 on Cellular0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 10, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -412,7 +412,7 @@ "group": "Modem 0 on Cellular0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -437,7 +437,7 @@ "group": "Modem 0 on Cellular0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 3, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -462,7 +462,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -487,7 +487,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -512,7 +512,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -537,7 +537,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -551,6 +551,31 @@ "rrd_type": "GAUGE", "state_name": "ciscoEnvMonTemperatureState" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -562,7 +587,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -587,7 +612,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1140,6 +1165,62 @@ "state_value": 6, "state_generic_value": 2 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -1438,7 +1519,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmCurrentBand" @@ -1463,7 +1544,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmCurrentRoamingStatus" @@ -1488,7 +1569,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmPacketService" @@ -1513,7 +1594,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmSimStatus" @@ -1538,7 +1619,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gModemStatus" @@ -1563,7 +1644,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1588,7 +1669,7 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonSupplyState" @@ -1613,7 +1694,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonSupplyState" @@ -1638,11 +1719,36 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonTemperatureState" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -1663,7 +1769,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -1688,7 +1794,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -2232,6 +2338,62 @@ "state_value": 6, "state_generic_value": 2 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", diff --git a/tests/data/iosxe_c8500-20x6c.json b/tests/data/iosxe_c8500-20x6c.json index 6be7d99557..62b5f806e9 100644 --- a/tests/data/iosxe_c8500-20x6c.json +++ b/tests/data/iosxe_c8500-20x6c.json @@ -377,6 +377,381 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1217", + "sensor_index": "1217", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.004364, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1217", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1229", + "sensor_index": "1229", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.031016, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1229", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1577", + "sensor_index": "1577", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 0 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.00673, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1577", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1589", + "sensor_index": "1589", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 1 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.00673, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1589", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1601", + "sensor_index": "1601", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.030593, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1601", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1613", + "sensor_index": "1613", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.025152, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1613", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1637", + "sensor_index": "1637", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.006591, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1637", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.26", + "sensor_index": "26", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P1/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "26", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.29", + "sensor_index": "29", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P1/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.46", + "sensor_index": "46", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P2/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.49", + "sensor_index": "49", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P2/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.6", + "sensor_index": "6", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.66", + "sensor_index": "66", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P3/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3812, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.69", + "sensor_index": "69", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P3/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 68375, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "69", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.9", + "sensor_index": "9", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P0/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "9", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -627,6 +1002,256 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1218", + "sensor_index": "1218", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -5.7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1218", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1219", + "sensor_index": "1219", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -6.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1219", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1230", + "sensor_index": "1230", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -1.1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1230", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1231", + "sensor_index": "1231", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1231", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1602", + "sensor_index": "1602", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1.4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1602", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1603", + "sensor_index": "1603", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1.3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1603", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1614", + "sensor_index": "1614", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -0.1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1614", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1615", + "sensor_index": "1615", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -0.4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1615", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1638", + "sensor_index": "1638", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -2.1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1638", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1639", + "sensor_index": "1639", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -1.8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1639", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -638,7 +1263,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -663,7 +1288,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -688,7 +1313,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -713,7 +1338,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -727,6 +1352,31 @@ "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -738,7 +1388,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -763,7 +1413,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1477,6 +2127,706 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.10", + "sensor_index": "10", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P0/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.11", + "sensor_index": "11", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P0/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 47, + "sensor_limit_warn": null, + "sensor_limit_low": 17, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "11", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.12", + "sensor_index": "12", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P0/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": null, + "sensor_limit_low": 16, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "12", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1215", + "sensor_index": "1215", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 27.835, + "sensor_limit": 47.835, + "sensor_limit_warn": null, + "sensor_limit_low": 17.835, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1215", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1227", + "sensor_index": "1227", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 26.527, + "sensor_limit": 46.527, + "sensor_limit_warn": null, + "sensor_limit_low": 16.527, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1227", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1575", + "sensor_index": "1575", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 0 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 39.25, + "sensor_limit": 59.25, + "sensor_limit_warn": null, + "sensor_limit_low": 29.25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1575", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1587", + "sensor_index": "1587", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 1 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 40.046, + "sensor_limit": 60.046, + "sensor_limit_warn": null, + "sensor_limit_low": 30.046, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1587", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1599", + "sensor_index": "1599", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 44.535, + "sensor_limit": 64.535, + "sensor_limit_warn": null, + "sensor_limit_low": 34.535, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1599", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1611", + "sensor_index": "1611", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 44.656, + "sensor_limit": 64.656, + "sensor_limit_warn": null, + "sensor_limit_low": 34.656, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1611", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1635", + "sensor_index": "1635", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 33.363, + "sensor_limit": 53.363, + "sensor_limit_warn": null, + "sensor_limit_low": 23.363, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1635", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.30", + "sensor_index": "30", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P1/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 24, + "sensor_limit": 44, + "sensor_limit_warn": null, + "sensor_limit_low": 14, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "30", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.31", + "sensor_index": "31", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P1/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": null, + "sensor_limit_low": 16, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.32", + "sensor_index": "32", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P1/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "32", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.50", + "sensor_index": "50", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P2/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.51", + "sensor_index": "51", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P2/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": null, + "sensor_limit_low": 16, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "51", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.52", + "sensor_index": "52", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P2/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.70", + "sensor_index": "70", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P3/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "70", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7063", + "sensor_index": "7063", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: AMB IN R0/62", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 24, + "sensor_limit": 44, + "sensor_limit_warn": null, + "sensor_limit_low": 14, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7063", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7064", + "sensor_index": "7064", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: AMB OUT R0/63", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 53, + "sensor_limit": 73, + "sensor_limit_warn": null, + "sensor_limit_low": 43, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7064", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7065", + "sensor_index": "7065", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: AMB MID R0/64", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7065", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7066", + "sensor_index": "7066", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 0 R0/65", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 63, + "sensor_limit": 83, + "sensor_limit_warn": null, + "sensor_limit_low": 53, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7066", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7067", + "sensor_index": "7067", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 1 R0/66", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 66, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": 56, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7067", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7068", + "sensor_index": "7068", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 2 R0/67", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 73, + "sensor_limit": 93, + "sensor_limit_warn": null, + "sensor_limit_low": 63, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7068", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7069", + "sensor_index": "7069", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 3 R0/68", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67, + "sensor_limit": 87, + "sensor_limit_warn": null, + "sensor_limit_low": 57, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7069", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7070", + "sensor_index": "7070", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: CPU Die R0/69", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 42, + "sensor_limit": 62, + "sensor_limit_warn": null, + "sensor_limit_low": 32, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7070", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7071", + "sensor_index": "7071", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: FC FANS R0/70", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67, + "sensor_limit": 87, + "sensor_limit_warn": null, + "sensor_limit_low": 57, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7071", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.71", + "sensor_index": "71", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P3/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "71", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.72", + "sensor_index": "72", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P3/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "72", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "voltage", @@ -3401,6 +4751,1931 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1216", + "sensor_index": "1216", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.3265, + "sensor_limit": 3.825475, + "sensor_limit_warn": null, + "sensor_limit_low": 2.827525, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1216", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1228", + "sensor_index": "1228", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.3074, + "sensor_limit": 3.80351, + "sensor_limit_warn": null, + "sensor_limit_low": 2.81129, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1228", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1576", + "sensor_index": "1576", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 0 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.278, + "sensor_limit": 3.7697, + "sensor_limit_warn": null, + "sensor_limit_low": 2.7863, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1576", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1588", + "sensor_index": "1588", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 1 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.2705, + "sensor_limit": 3.761075, + "sensor_limit_warn": null, + "sensor_limit_low": 2.779925, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1588", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1600", + "sensor_index": "1600", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.239, + "sensor_limit": 3.72485, + "sensor_limit_warn": null, + "sensor_limit_low": 2.75315, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1600", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1612", + "sensor_index": "1612", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.199, + "sensor_limit": 3.67885, + "sensor_limit_warn": null, + "sensor_limit_low": 2.71915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1612", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1636", + "sensor_index": "1636", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.2696, + "sensor_limit": 3.76004, + "sensor_limit_warn": null, + "sensor_limit_low": 2.77916, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1636", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.24", + "sensor_index": "24", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P1/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.27", + "sensor_index": "27", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P1/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5123, + "sensor_limit": 5891.45, + "sensor_limit_warn": null, + "sensor_limit_low": 4354.55, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "27", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4", + "sensor_index": "4", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.44", + "sensor_index": "44", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P2/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.47", + "sensor_index": "47", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P2/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5160, + "sensor_limit": 5934, + "sensor_limit_warn": null, + "sensor_limit_low": 4386, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "47", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.64", + "sensor_index": "64", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P3/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 232500, + "sensor_limit": 267375, + "sensor_limit_warn": null, + "sensor_limit_low": 197625, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "64", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.67", + "sensor_index": "67", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P3/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 11994, + "sensor_limit": 13793.1, + "sensor_limit_warn": null, + "sensor_limit_low": 10194.9, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "67", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7", + "sensor_index": "7", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P0/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5142, + "sensor_limit": 5913.3, + "sensor_limit_warn": null, + "sensor_limit_low": 4370.7, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7001", + "sensor_index": "7001", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX1 R0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.969, + "sensor_limit": 13.76435, + "sensor_limit_warn": null, + "sensor_limit_low": 10.17365, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7002", + "sensor_index": "7002", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX2 R0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.975, + "sensor_limit": 8.02125, + "sensor_limit_warn": null, + "sensor_limit_low": 5.92875, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7003", + "sensor_index": "7003", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX3 R0/2", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.036, + "sensor_limit": 5.7914, + "sensor_limit_warn": null, + "sensor_limit_low": 4.2806, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7004", + "sensor_index": "7004", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX4 R0/3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.205, + "sensor_limit": 3.68575, + "sensor_limit_warn": null, + "sensor_limit_low": 2.72425, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7004", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7005", + "sensor_index": "7005", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX5 R0/4", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.283, + "sensor_limit": 3.77545, + "sensor_limit_warn": null, + "sensor_limit_low": 2.79055, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7005", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7006", + "sensor_index": "7006", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX6 R0/5", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.796, + "sensor_limit": 2.0654, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5266, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7006", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7007", + "sensor_index": "7007", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX7 R0/6", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.493, + "sensor_limit": 2.86695, + "sensor_limit_warn": null, + "sensor_limit_low": 2.11905, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7007", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7008", + "sensor_index": "7008", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX8 R0/7", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": null, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7008", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7009", + "sensor_index": "7009", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX9 R0/8", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.782, + "sensor_limit": 2.0493, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5147, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7009", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7010", + "sensor_index": "7010", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX10 R0/9", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.705, + "sensor_limit": 1.96075, + "sensor_limit_warn": null, + "sensor_limit_low": 1.44925, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7010", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7011", + "sensor_index": "7011", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX11 R0/10", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": null, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7011", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7012", + "sensor_index": "7012", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX12 R0/11", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.31, + "sensor_limit": 1.5065, + "sensor_limit_warn": null, + "sensor_limit_low": 1.1135, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7012", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7013", + "sensor_index": "7013", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX13 R0/12", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": null, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7013", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7014", + "sensor_index": "7014", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX14 R0/13", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": null, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7014", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7015", + "sensor_index": "7015", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX15 R0/14", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.095, + "sensor_limit": 1.25925, + "sensor_limit_warn": null, + "sensor_limit_low": 0.93075, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7015", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7016", + "sensor_index": "7016", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX16 R0/15", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.048, + "sensor_limit": 1.2052, + "sensor_limit_warn": null, + "sensor_limit_low": 0.8908, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7016", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7017", + "sensor_index": "7017", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX17 R0/16", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.229, + "sensor_limit": 1.41335, + "sensor_limit_warn": null, + "sensor_limit_low": 1.04465, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7017", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7018", + "sensor_index": "7018", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX18 R0/17", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.898, + "sensor_limit": 1.0327, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7633, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7018", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7019", + "sensor_index": "7019", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX19 R0/18", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.894, + "sensor_limit": 1.0281, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7599, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7019", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7020", + "sensor_index": "7020", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX20 R0/19", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.845, + "sensor_limit": 0.97175, + "sensor_limit_warn": null, + "sensor_limit_low": 0.71825, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7020", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7021", + "sensor_index": "7021", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX21 R0/20", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.8625, + "sensor_limit_warn": null, + "sensor_limit_low": 0.6375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7021", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7022", + "sensor_index": "7022", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX22 R0/21", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.597, + "sensor_limit": 0.68655, + "sensor_limit_warn": null, + "sensor_limit_low": 0.50745, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7022", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7023", + "sensor_index": "7023", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX23 R0/22", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.595, + "sensor_limit": 0.68425, + "sensor_limit_warn": null, + "sensor_limit_low": 0.50575, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7023", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7024", + "sensor_index": "7024", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX24 R0/23", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.598, + "sensor_limit": 0.6877, + "sensor_limit_warn": null, + "sensor_limit_low": 0.5083, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7024", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7025", + "sensor_index": "7025", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX25 R0/24", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.846, + "sensor_limit": 0.9729, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7191, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7025", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7026", + "sensor_index": "7026", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX26 R0/25", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.872, + "sensor_limit": 1.0028, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7412, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7026", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7027", + "sensor_index": "7027", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX27 R0/26", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.873, + "sensor_limit": 1.00395, + "sensor_limit_warn": null, + "sensor_limit_low": 0.74205, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7027", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7028", + "sensor_index": "7028", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX28 R0/27", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": null, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7028", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7029", + "sensor_index": "7029", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX29 R0/28", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.048, + "sensor_limit": 1.2052, + "sensor_limit_warn": null, + "sensor_limit_low": 0.8908, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7029", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7030", + "sensor_index": "7030", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX30 R0/29", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.275, + "sensor_limit": 3.76625, + "sensor_limit_warn": null, + "sensor_limit_low": 2.78375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7030", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7031", + "sensor_index": "7031", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX32 R0/30", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.898, + "sensor_limit": 1.0327, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7633, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7031", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7032", + "sensor_index": "7032", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX33 R0/31", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.973, + "sensor_limit": 13.76895, + "sensor_limit_warn": null, + "sensor_limit_low": 10.17705, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7032", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7033", + "sensor_index": "7033", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX34 R0/32", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.969, + "sensor_limit": 8.01435, + "sensor_limit_warn": null, + "sensor_limit_low": 5.92365, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7033", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7034", + "sensor_index": "7034", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX35 R0/33", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.056, + "sensor_limit": 5.8144, + "sensor_limit_warn": null, + "sensor_limit_low": 4.2976, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7034", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7035", + "sensor_index": "7035", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX36 R0/34", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.325, + "sensor_limit": 3.82375, + "sensor_limit_warn": null, + "sensor_limit_low": 2.82625, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7035", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7036", + "sensor_index": "7036", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX37 R0/35", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.317, + "sensor_limit": 3.81455, + "sensor_limit_warn": null, + "sensor_limit_low": 2.81945, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7036", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7037", + "sensor_index": "7037", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX38 R0/36", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.493, + "sensor_limit": 2.86695, + "sensor_limit_warn": null, + "sensor_limit_low": 2.11905, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7037", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7038", + "sensor_index": "7038", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX39 R0/37", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.098, + "sensor_limit": 1.2627, + "sensor_limit_warn": null, + "sensor_limit_low": 0.9333, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7038", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7039", + "sensor_index": "7039", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX40 R0/38", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.874, + "sensor_limit": 1.0051, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7429, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7039", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7040", + "sensor_index": "7040", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX41 R0/39", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.873, + "sensor_limit": 1.00395, + "sensor_limit_warn": null, + "sensor_limit_low": 0.74205, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7040", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7041", + "sensor_index": "7041", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX42 R0/40", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.497, + "sensor_limit": 1.72155, + "sensor_limit_warn": null, + "sensor_limit_low": 1.27245, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7041", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7042", + "sensor_index": "7042", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX43 R0/41", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.847, + "sensor_limit": 0.97405, + "sensor_limit_warn": null, + "sensor_limit_low": 0.71995, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7042", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7043", + "sensor_index": "7043", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX44 R0/42", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.897, + "sensor_limit": 1.03155, + "sensor_limit_warn": null, + "sensor_limit_low": 0.76245, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7043", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7044", + "sensor_index": "7044", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX45 R0/43", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.895, + "sensor_limit": 1.02925, + "sensor_limit_warn": null, + "sensor_limit_low": 0.76075, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7044", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7045", + "sensor_index": "7045", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX46 R0/44", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.801, + "sensor_limit": 2.07115, + "sensor_limit_warn": null, + "sensor_limit_low": 1.53085, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7045", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7046", + "sensor_index": "7046", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX47 R0/45", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.198, + "sensor_limit": 1.3777, + "sensor_limit_warn": null, + "sensor_limit_low": 1.0183, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7046", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7047", + "sensor_index": "7047", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX48 R0/46", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.998, + "sensor_limit": 1.1477, + "sensor_limit_warn": null, + "sensor_limit_low": 0.8483, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7047", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7048", + "sensor_index": "7048", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX49 R0/47", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.938, + "sensor_limit": 13.7287, + "sensor_limit_warn": null, + "sensor_limit_low": 10.1473, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7048", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7049", + "sensor_index": "7049", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX50 R0/48", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.193, + "sensor_limit": 3.67195, + "sensor_limit_warn": null, + "sensor_limit_low": 2.71405, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7049", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7050", + "sensor_index": "7050", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX52 R0/49", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.842, + "sensor_limit": 0.9683, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7157, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7050", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7051", + "sensor_index": "7051", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX53 R0/50", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.843, + "sensor_limit": 0.96945, + "sensor_limit_warn": null, + "sensor_limit_low": 0.71655, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7051", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7052", + "sensor_index": "7052", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX54 R0/51", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.849, + "sensor_limit": 0.97635, + "sensor_limit_warn": null, + "sensor_limit_low": 0.72165, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7052", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7053", + "sensor_index": "7053", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX55 R0/52", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.852, + "sensor_limit": 0.9798, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7242, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7053", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7054", + "sensor_index": "7054", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX56 R0/53", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.898, + "sensor_limit": 1.0327, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7633, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7054", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7055", + "sensor_index": "7055", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX57 R0/54", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.005, + "sensor_limit": 1.15575, + "sensor_limit_warn": null, + "sensor_limit_low": 0.85425, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7055", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7056", + "sensor_index": "7056", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX58 R0/55", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.215, + "sensor_limit": 1.39725, + "sensor_limit_warn": null, + "sensor_limit_low": 1.03275, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7056", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7057", + "sensor_index": "7057", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX59 R0/56", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.201, + "sensor_limit": 1.38115, + "sensor_limit_warn": null, + "sensor_limit_low": 1.02085, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7057", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7058", + "sensor_index": "7058", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX60 R0/57", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.81, + "sensor_limit": 2.0815, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5385, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7058", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7059", + "sensor_index": "7059", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX61 R0/58", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.802, + "sensor_limit": 2.0723, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5317, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7059", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7060", + "sensor_index": "7060", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX62 R0/59", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.485, + "sensor_limit": 2.85775, + "sensor_limit_warn": null, + "sensor_limit_low": 2.11225, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7060", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7061", + "sensor_index": "7061", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX63 R0/60", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.308, + "sensor_limit": 3.8042, + "sensor_limit_warn": null, + "sensor_limit_low": 2.8118, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7061", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7062", + "sensor_index": "7062", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX64 R0/61", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 7.005, + "sensor_limit": 8.05575, + "sensor_limit_warn": null, + "sensor_limit_low": 5.95425, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7062", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null } ], "state_indexes": [ @@ -3488,6 +6763,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -4091,6 +7422,381 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1217", + "sensor_index": "1217", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.004364, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1217", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1229", + "sensor_index": "1229", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.031016, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1229", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1577", + "sensor_index": "1577", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 0 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.00673, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1577", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1589", + "sensor_index": "1589", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 1 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.00673, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1589", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1601", + "sensor_index": "1601", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.030593, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1601", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1613", + "sensor_index": "1613", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.025152, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1613", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1637", + "sensor_index": "1637", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.006591, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1637", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.26", + "sensor_index": "26", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P1/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "26", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.29", + "sensor_index": "29", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P1/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "29", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.46", + "sensor_index": "46", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P2/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "46", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.49", + "sensor_index": "49", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P2/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "49", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.6", + "sensor_index": "6", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "6", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.66", + "sensor_index": "66", + "sensor_type": "entity-sensor", + "sensor_descr": "Iin P3/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3812, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "66", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.69", + "sensor_index": "69", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P3/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 68375, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "69", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.9", + "sensor_index": "9", + "sensor_type": "entity-sensor", + "sensor_descr": "Iout P0/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "9", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -4341,6 +8047,256 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1218", + "sensor_index": "1218", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -5.7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1218", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1219", + "sensor_index": "1219", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -6.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1219", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1230", + "sensor_index": "1230", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -1.1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1230", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1231", + "sensor_index": "1231", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -2.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1231", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1602", + "sensor_index": "1602", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1.4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1602", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1603", + "sensor_index": "1603", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1.3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1603", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1614", + "sensor_index": "1614", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -0.1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1614", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1615", + "sensor_index": "1615", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -0.4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1615", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1638", + "sensor_index": "1638", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -2.1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1638", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1639", + "sensor_index": "1639", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -1.8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1639", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -4361,7 +8317,7 @@ "sensor_custom": "No", "entPhysicalIndex": "23", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -4386,7 +8342,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -4411,7 +8367,7 @@ "sensor_custom": "No", "entPhysicalIndex": "43", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -4436,11 +8392,36 @@ "sensor_custom": "No", "entPhysicalIndex": "63", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -4461,7 +8442,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -4486,7 +8467,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -5191,6 +9172,706 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.10", + "sensor_index": "10", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P0/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "10", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.11", + "sensor_index": "11", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P0/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 27, + "sensor_limit": 47, + "sensor_limit_warn": null, + "sensor_limit_low": 17, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "11", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.12", + "sensor_index": "12", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P0/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": null, + "sensor_limit_low": 16, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "12", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1215", + "sensor_index": "1215", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 27.835, + "sensor_limit": 47.835, + "sensor_limit_warn": null, + "sensor_limit_low": 17.835, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1215", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1227", + "sensor_index": "1227", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 26.527, + "sensor_limit": 46.527, + "sensor_limit_warn": null, + "sensor_limit_low": 16.527, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1227", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1575", + "sensor_index": "1575", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 0 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 39.25, + "sensor_limit": 59.25, + "sensor_limit_warn": null, + "sensor_limit_low": 29.25, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1575", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1587", + "sensor_index": "1587", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 1 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 40.046, + "sensor_limit": 60.046, + "sensor_limit_warn": null, + "sensor_limit_low": 30.046, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1587", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1599", + "sensor_index": "1599", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 44.535, + "sensor_limit": 64.535, + "sensor_limit_warn": null, + "sensor_limit_low": 34.535, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1599", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1611", + "sensor_index": "1611", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 44.656, + "sensor_limit": 64.656, + "sensor_limit_warn": null, + "sensor_limit_low": 34.656, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1611", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1635", + "sensor_index": "1635", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 33.363, + "sensor_limit": 53.363, + "sensor_limit_warn": null, + "sensor_limit_low": 23.363, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1635", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.30", + "sensor_index": "30", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P1/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 24, + "sensor_limit": 44, + "sensor_limit_warn": null, + "sensor_limit_low": 14, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "30", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.31", + "sensor_index": "31", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P1/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": null, + "sensor_limit_low": 16, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "31", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.32", + "sensor_index": "32", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P1/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "32", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.50", + "sensor_index": "50", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P2/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "50", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.51", + "sensor_index": "51", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P2/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": null, + "sensor_limit_low": 16, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "51", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.52", + "sensor_index": "52", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P2/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "52", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.70", + "sensor_index": "70", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp1 P3/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 15, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "70", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7063", + "sensor_index": "7063", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: AMB IN R0/62", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 24, + "sensor_limit": 44, + "sensor_limit_warn": null, + "sensor_limit_low": 14, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7063", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7064", + "sensor_index": "7064", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: AMB OUT R0/63", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 53, + "sensor_limit": 73, + "sensor_limit_warn": null, + "sensor_limit_low": 43, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7064", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7065", + "sensor_index": "7065", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: AMB MID R0/64", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 34, + "sensor_limit": 54, + "sensor_limit_warn": null, + "sensor_limit_low": 24, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7065", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7066", + "sensor_index": "7066", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 0 R0/65", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 63, + "sensor_limit": 83, + "sensor_limit_warn": null, + "sensor_limit_low": 53, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7066", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7067", + "sensor_index": "7067", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 1 R0/66", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 66, + "sensor_limit": 86, + "sensor_limit_warn": null, + "sensor_limit_low": 56, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7067", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7068", + "sensor_index": "7068", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 2 R0/67", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 73, + "sensor_limit": 93, + "sensor_limit_warn": null, + "sensor_limit_low": 63, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7068", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7069", + "sensor_index": "7069", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: PCYN 3 R0/68", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67, + "sensor_limit": 87, + "sensor_limit_warn": null, + "sensor_limit_low": 57, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7069", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7070", + "sensor_index": "7070", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: CPU Die R0/69", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 42, + "sensor_limit": 62, + "sensor_limit_warn": null, + "sensor_limit_low": 32, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7070", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7071", + "sensor_index": "7071", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: FC FANS R0/70", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 67, + "sensor_limit": 87, + "sensor_limit_warn": null, + "sensor_limit_low": 57, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7071", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.71", + "sensor_index": "71", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp2 P3/7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 33, + "sensor_limit": 53, + "sensor_limit_warn": null, + "sensor_limit_low": 23, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "71", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.72", + "sensor_index": "72", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp3 P3/8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 47, + "sensor_limit": 67, + "sensor_limit_warn": null, + "sensor_limit_low": 37, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "72", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "voltage", @@ -7115,6 +11796,1931 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1216", + "sensor_index": "1216", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 10 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.3265, + "sensor_limit": 3.825475, + "sensor_limit_warn": null, + "sensor_limit_low": 2.827525, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1216", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1228", + "sensor_index": "1228", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 11 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.3074, + "sensor_limit": 3.80351, + "sensor_limit_warn": null, + "sensor_limit_low": 2.81129, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1228", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1576", + "sensor_index": "1576", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 0 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.278, + "sensor_limit": 3.7697, + "sensor_limit_warn": null, + "sensor_limit_low": 2.7863, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1576", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1588", + "sensor_index": "1588", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 1 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.2705, + "sensor_limit": 3.761075, + "sensor_limit_warn": null, + "sensor_limit_low": 2.779925, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1588", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1600", + "sensor_index": "1600", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 2 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.239, + "sensor_limit": 3.72485, + "sensor_limit_warn": null, + "sensor_limit_low": 2.75315, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1600", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1612", + "sensor_index": "1612", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 3 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.199, + "sensor_limit": 3.67885, + "sensor_limit_warn": null, + "sensor_limit_low": 2.71915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1612", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.1636", + "sensor_index": "1636", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/1 Transceiver 5 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.2696, + "sensor_limit": 3.76004, + "sensor_limit_warn": null, + "sensor_limit_low": 2.77916, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "1636", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.24", + "sensor_index": "24", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P1/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.27", + "sensor_index": "27", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P1/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5123, + "sensor_limit": 5891.45, + "sensor_limit_warn": null, + "sensor_limit_low": 4354.55, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "27", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4", + "sensor_index": "4", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.44", + "sensor_index": "44", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P2/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "44", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.47", + "sensor_index": "47", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P2/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5160, + "sensor_limit": 5934, + "sensor_limit_warn": null, + "sensor_limit_low": 4386, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "47", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.64", + "sensor_index": "64", + "sensor_type": "entity-sensor", + "sensor_descr": "Vin P3/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 232500, + "sensor_limit": 267375, + "sensor_limit_warn": null, + "sensor_limit_low": 197625, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "64", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.67", + "sensor_index": "67", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P3/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 11994, + "sensor_limit": 13793.1, + "sensor_limit_warn": null, + "sensor_limit_low": 10194.9, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "67", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7", + "sensor_index": "7", + "sensor_type": "entity-sensor", + "sensor_descr": "Vout P0/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5142, + "sensor_limit": 5913.3, + "sensor_limit_warn": null, + "sensor_limit_low": 4370.7, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7001", + "sensor_index": "7001", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX1 R0/0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.969, + "sensor_limit": 13.76435, + "sensor_limit_warn": null, + "sensor_limit_low": 10.17365, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7002", + "sensor_index": "7002", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX2 R0/1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.975, + "sensor_limit": 8.02125, + "sensor_limit_warn": null, + "sensor_limit_low": 5.92875, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7003", + "sensor_index": "7003", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX3 R0/2", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.036, + "sensor_limit": 5.7914, + "sensor_limit_warn": null, + "sensor_limit_low": 4.2806, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7004", + "sensor_index": "7004", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX4 R0/3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.205, + "sensor_limit": 3.68575, + "sensor_limit_warn": null, + "sensor_limit_low": 2.72425, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7004", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7005", + "sensor_index": "7005", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX5 R0/4", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.283, + "sensor_limit": 3.77545, + "sensor_limit_warn": null, + "sensor_limit_low": 2.79055, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7005", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7006", + "sensor_index": "7006", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX6 R0/5", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.796, + "sensor_limit": 2.0654, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5266, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7006", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7007", + "sensor_index": "7007", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX7 R0/6", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.493, + "sensor_limit": 2.86695, + "sensor_limit_warn": null, + "sensor_limit_low": 2.11905, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7007", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7008", + "sensor_index": "7008", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX8 R0/7", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.799, + "sensor_limit": 2.06885, + "sensor_limit_warn": null, + "sensor_limit_low": 1.52915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7008", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7009", + "sensor_index": "7009", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX9 R0/8", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.782, + "sensor_limit": 2.0493, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5147, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7009", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7010", + "sensor_index": "7010", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX10 R0/9", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.705, + "sensor_limit": 1.96075, + "sensor_limit_warn": null, + "sensor_limit_low": 1.44925, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7010", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7011", + "sensor_index": "7011", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX11 R0/10", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 1.725, + "sensor_limit_warn": null, + "sensor_limit_low": 1.275, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7011", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7012", + "sensor_index": "7012", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX12 R0/11", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.31, + "sensor_limit": 1.5065, + "sensor_limit_warn": null, + "sensor_limit_low": 1.1135, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7012", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7013", + "sensor_index": "7013", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX13 R0/12", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": null, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7013", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7014", + "sensor_index": "7014", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX14 R0/13", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.199, + "sensor_limit": 1.37885, + "sensor_limit_warn": null, + "sensor_limit_low": 1.01915, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7014", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7015", + "sensor_index": "7015", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX15 R0/14", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.095, + "sensor_limit": 1.25925, + "sensor_limit_warn": null, + "sensor_limit_low": 0.93075, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7015", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7016", + "sensor_index": "7016", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB1: VX16 R0/15", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.048, + "sensor_limit": 1.2052, + "sensor_limit_warn": null, + "sensor_limit_low": 0.8908, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7016", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7017", + "sensor_index": "7017", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX17 R0/16", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.229, + "sensor_limit": 1.41335, + "sensor_limit_warn": null, + "sensor_limit_low": 1.04465, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7017", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7018", + "sensor_index": "7018", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX18 R0/17", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.898, + "sensor_limit": 1.0327, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7633, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7018", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7019", + "sensor_index": "7019", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX19 R0/18", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.894, + "sensor_limit": 1.0281, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7599, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7019", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7020", + "sensor_index": "7020", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX20 R0/19", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.845, + "sensor_limit": 0.97175, + "sensor_limit_warn": null, + "sensor_limit_low": 0.71825, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7020", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7021", + "sensor_index": "7021", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX21 R0/20", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.75, + "sensor_limit": 0.8625, + "sensor_limit_warn": null, + "sensor_limit_low": 0.6375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7021", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7022", + "sensor_index": "7022", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX22 R0/21", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.597, + "sensor_limit": 0.68655, + "sensor_limit_warn": null, + "sensor_limit_low": 0.50745, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7022", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7023", + "sensor_index": "7023", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX23 R0/22", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.595, + "sensor_limit": 0.68425, + "sensor_limit_warn": null, + "sensor_limit_low": 0.50575, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7023", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7024", + "sensor_index": "7024", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX24 R0/23", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.598, + "sensor_limit": 0.6877, + "sensor_limit_warn": null, + "sensor_limit_low": 0.5083, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7024", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7025", + "sensor_index": "7025", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX25 R0/24", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.846, + "sensor_limit": 0.9729, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7191, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7025", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7026", + "sensor_index": "7026", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX26 R0/25", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.872, + "sensor_limit": 1.0028, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7412, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7026", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7027", + "sensor_index": "7027", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX27 R0/26", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.873, + "sensor_limit": 1.00395, + "sensor_limit_warn": null, + "sensor_limit_low": 0.74205, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7027", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7028", + "sensor_index": "7028", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX28 R0/27", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": 1.15, + "sensor_limit_warn": null, + "sensor_limit_low": 0.85, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7028", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7029", + "sensor_index": "7029", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX29 R0/28", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.048, + "sensor_limit": 1.2052, + "sensor_limit_warn": null, + "sensor_limit_low": 0.8908, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7029", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7030", + "sensor_index": "7030", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX30 R0/29", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.275, + "sensor_limit": 3.76625, + "sensor_limit_warn": null, + "sensor_limit_low": 2.78375, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7030", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7031", + "sensor_index": "7031", + "sensor_type": "entity-sensor", + "sensor_descr": "VAMB2: VX32 R0/30", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.898, + "sensor_limit": 1.0327, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7633, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7031", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7032", + "sensor_index": "7032", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX33 R0/31", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.973, + "sensor_limit": 13.76895, + "sensor_limit_warn": null, + "sensor_limit_low": 10.17705, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7032", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7033", + "sensor_index": "7033", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX34 R0/32", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 6.969, + "sensor_limit": 8.01435, + "sensor_limit_warn": null, + "sensor_limit_low": 5.92365, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7033", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7034", + "sensor_index": "7034", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX35 R0/33", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5.056, + "sensor_limit": 5.8144, + "sensor_limit_warn": null, + "sensor_limit_low": 4.2976, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7034", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7035", + "sensor_index": "7035", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX36 R0/34", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.325, + "sensor_limit": 3.82375, + "sensor_limit_warn": null, + "sensor_limit_low": 2.82625, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7035", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7036", + "sensor_index": "7036", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX37 R0/35", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.317, + "sensor_limit": 3.81455, + "sensor_limit_warn": null, + "sensor_limit_low": 2.81945, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7036", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7037", + "sensor_index": "7037", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX38 R0/36", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.493, + "sensor_limit": 2.86695, + "sensor_limit_warn": null, + "sensor_limit_low": 2.11905, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7037", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7038", + "sensor_index": "7038", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX39 R0/37", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.098, + "sensor_limit": 1.2627, + "sensor_limit_warn": null, + "sensor_limit_low": 0.9333, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7038", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7039", + "sensor_index": "7039", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX40 R0/38", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.874, + "sensor_limit": 1.0051, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7429, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7039", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7040", + "sensor_index": "7040", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX41 R0/39", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.873, + "sensor_limit": 1.00395, + "sensor_limit_warn": null, + "sensor_limit_low": 0.74205, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7040", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7041", + "sensor_index": "7041", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX42 R0/40", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.497, + "sensor_limit": 1.72155, + "sensor_limit_warn": null, + "sensor_limit_low": 1.27245, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7041", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7042", + "sensor_index": "7042", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX43 R0/41", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.847, + "sensor_limit": 0.97405, + "sensor_limit_warn": null, + "sensor_limit_low": 0.71995, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7042", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7043", + "sensor_index": "7043", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX44 R0/42", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.897, + "sensor_limit": 1.03155, + "sensor_limit_warn": null, + "sensor_limit_low": 0.76245, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7043", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7044", + "sensor_index": "7044", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX45 R0/43", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.895, + "sensor_limit": 1.02925, + "sensor_limit_warn": null, + "sensor_limit_low": 0.76075, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7044", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7045", + "sensor_index": "7045", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX46 R0/44", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.801, + "sensor_limit": 2.07115, + "sensor_limit_warn": null, + "sensor_limit_low": 1.53085, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7045", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7046", + "sensor_index": "7046", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX47 R0/45", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.198, + "sensor_limit": 1.3777, + "sensor_limit_warn": null, + "sensor_limit_low": 1.0183, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7046", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7047", + "sensor_index": "7047", + "sensor_type": "entity-sensor", + "sensor_descr": "VEUC1: VX48 R0/46", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.998, + "sensor_limit": 1.1477, + "sensor_limit_warn": null, + "sensor_limit_low": 0.8483, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7047", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7048", + "sensor_index": "7048", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX49 R0/47", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 11.938, + "sensor_limit": 13.7287, + "sensor_limit_warn": null, + "sensor_limit_low": 10.1473, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7048", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7049", + "sensor_index": "7049", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX50 R0/48", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.193, + "sensor_limit": 3.67195, + "sensor_limit_warn": null, + "sensor_limit_low": 2.71405, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7049", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7050", + "sensor_index": "7050", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX52 R0/49", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.842, + "sensor_limit": 0.9683, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7157, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7050", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7051", + "sensor_index": "7051", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX53 R0/50", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.843, + "sensor_limit": 0.96945, + "sensor_limit_warn": null, + "sensor_limit_low": 0.71655, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7051", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7052", + "sensor_index": "7052", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX54 R0/51", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.849, + "sensor_limit": 0.97635, + "sensor_limit_warn": null, + "sensor_limit_low": 0.72165, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7052", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7053", + "sensor_index": "7053", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX55 R0/52", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.852, + "sensor_limit": 0.9798, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7242, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7053", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7054", + "sensor_index": "7054", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX56 R0/53", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.898, + "sensor_limit": 1.0327, + "sensor_limit_warn": null, + "sensor_limit_low": 0.7633, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7054", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7055", + "sensor_index": "7055", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX57 R0/54", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.005, + "sensor_limit": 1.15575, + "sensor_limit_warn": null, + "sensor_limit_low": 0.85425, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7055", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7056", + "sensor_index": "7056", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX58 R0/55", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.215, + "sensor_limit": 1.39725, + "sensor_limit_warn": null, + "sensor_limit_low": 1.03275, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7056", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7057", + "sensor_index": "7057", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX59 R0/56", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.201, + "sensor_limit": 1.38115, + "sensor_limit_warn": null, + "sensor_limit_low": 1.02085, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7057", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7058", + "sensor_index": "7058", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX60 R0/57", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.81, + "sensor_limit": 2.0815, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5385, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7058", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7059", + "sensor_index": "7059", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX61 R0/58", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 1.802, + "sensor_limit": 2.0723, + "sensor_limit_warn": null, + "sensor_limit_low": 1.5317, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7059", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7060", + "sensor_index": "7060", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX62 R0/59", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 2.485, + "sensor_limit": 2.85775, + "sensor_limit_warn": null, + "sensor_limit_low": 2.11225, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7060", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7061", + "sensor_index": "7061", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX63 R0/60", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.308, + "sensor_limit": 3.8042, + "sensor_limit_warn": null, + "sensor_limit_low": 2.8118, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7061", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.7062", + "sensor_index": "7062", + "sensor_type": "entity-sensor", + "sensor_descr": "VFPC1: VX64 R0/61", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 7.005, + "sensor_limit": 8.05575, + "sensor_limit_warn": null, + "sensor_limit_low": 5.95425, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "7062", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null } ], "state_indexes": [ @@ -7202,6 +13808,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -7428,5 +14090,4251 @@ } ] } + }, + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.9.1.3085", + "sysDescr": "Cisco IOS Software [IOSXE], c8000aep Software (X86_64_LINUX_IOSD-UNIVERSALK9-M), Experimental Version 17.17.20240828:191717 [BLD_POLARIS_DEV_LATEST_20240828_181437:/nobackup/mcpre/s2c-build-ws 102]\nCopyright (c) 1986-2024 by Cisco Systems, Inc.\r\nCompiled", + "sysContact": null, + "version": null, + "hardware": "Chassis", + "features": null, + "location": null, + "os": "iosxe", + "type": "network", + "serial": null, + "icon": "cisco.svg" + } + ] + }, + "poller": "matches discovery" + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 1, + "entPhysicalDescr": "Cisco C8500-20X6C Chassis", + "entPhysicalClass": "chassis", + "entPhysicalName": "Chassis", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 2, + "entPhysicalDescr": "Power Supply Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Power Supply Bay 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 3, + "entPhysicalDescr": "Cisco 1100W AC Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply Module 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 2, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 4, + "entPhysicalDescr": "Vin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vin P0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 5, + "entPhysicalDescr": "Pin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pin P0/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 6, + "entPhysicalDescr": "Iin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iin P0/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7, + "entPhysicalDescr": "Vout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vout P0/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 8, + "entPhysicalDescr": "Pout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pout P0/4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9, + "entPhysicalDescr": "Iout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iout P0/5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 10, + "entPhysicalDescr": "Temp1", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp1 P0/6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 11, + "entPhysicalDescr": "Temp2", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp2 P0/7", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 12, + "entPhysicalDescr": "Temp3", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp3 P0/8", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 13, + "entPhysicalDescr": "Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 3, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 22, + "entPhysicalDescr": "Power Supply Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Power Supply Bay 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 23, + "entPhysicalDescr": "Cisco 1100W AC Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply Module 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 22, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 24, + "entPhysicalDescr": "Vin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vin P1/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 25, + "entPhysicalDescr": "Pin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pin P1/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 26, + "entPhysicalDescr": "Iin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iin P1/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 27, + "entPhysicalDescr": "Vout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vout P1/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 28, + "entPhysicalDescr": "Pout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pout P1/4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 29, + "entPhysicalDescr": "Iout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iout P1/5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 30, + "entPhysicalDescr": "Temp1", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp1 P1/6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 31, + "entPhysicalDescr": "Temp2", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp2 P1/7", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 32, + "entPhysicalDescr": "Temp3", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp3 P1/8", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 33, + "entPhysicalDescr": "Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 23, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 42, + "entPhysicalDescr": "Power Supply Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Power Supply Bay 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 43, + "entPhysicalDescr": "Cisco 1100W AC Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply Module 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 42, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 44, + "entPhysicalDescr": "Vin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vin P2/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 45, + "entPhysicalDescr": "Pin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pin P2/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 46, + "entPhysicalDescr": "Iin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iin P2/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 47, + "entPhysicalDescr": "Vout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vout P2/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 48, + "entPhysicalDescr": "Pout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pout P2/4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 49, + "entPhysicalDescr": "Iout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iout P2/5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 50, + "entPhysicalDescr": "Temp1", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp1 P2/6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 51, + "entPhysicalDescr": "Temp2", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp2 P2/7", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 52, + "entPhysicalDescr": "Temp3", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp3 P2/8", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 53, + "entPhysicalDescr": "Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 43, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 62, + "entPhysicalDescr": "Power Supply Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Power Supply Bay 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 63, + "entPhysicalDescr": "Cisco 1100W AC Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply Module 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 62, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 64, + "entPhysicalDescr": "Vin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vin P3/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 65, + "entPhysicalDescr": "Pin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pin P3/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 66, + "entPhysicalDescr": "Iin", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iin P3/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 67, + "entPhysicalDescr": "Vout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Vout P3/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 68, + "entPhysicalDescr": "Pout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Pout P3/4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 69, + "entPhysicalDescr": "Iout", + "entPhysicalClass": "sensor", + "entPhysicalName": "Iout P3/5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 70, + "entPhysicalDescr": "Temp1", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp1 P3/6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 71, + "entPhysicalDescr": "Temp2", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp2 P3/7", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 72, + "entPhysicalDescr": "Temp3", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp3 P3/8", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 73, + "entPhysicalDescr": "Power Supply", + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 63, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 82, + "entPhysicalDescr": "Fan Tray Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Fan Tray Bay 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 83, + "entPhysicalDescr": "Cisco C8500-FAN-3R Fan Tray", + "entPhysicalClass": "fan", + "entPhysicalName": "Fan Tray 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 82, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 94, + "entPhysicalDescr": "Fan", + "entPhysicalClass": "fan", + "entPhysicalName": "Fan 4/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 83, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 102, + "entPhysicalDescr": "Fan Tray Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Fan Tray Bay 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 103, + "entPhysicalDescr": "Cisco C8500-FAN-3R Fan Tray", + "entPhysicalClass": "fan", + "entPhysicalName": "Fan Tray 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 102, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 114, + "entPhysicalDescr": "Fan", + "entPhysicalClass": "fan", + "entPhysicalName": "Fan 5/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 103, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 122, + "entPhysicalDescr": "Fan Tray Bay", + "entPhysicalClass": "container", + "entPhysicalName": "Fan Tray Bay 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 123, + "entPhysicalDescr": "Cisco C8500-FAN-3R Fan Tray", + "entPhysicalClass": "fan", + "entPhysicalName": "Fan Tray 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 122, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 134, + "entPhysicalDescr": "Fan", + "entPhysicalClass": "fan", + "entPhysicalName": "Fan 6/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 123, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1000, + "entPhysicalDescr": "Cisco C8500-20X6C Modular Interface Processor", + "entPhysicalClass": "module", + "entPhysicalName": "module 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1040, + "entPhysicalDescr": "20-port 10 Gigabit SFPP Ethernet Port Adapter", + "entPhysicalClass": "module", + "entPhysicalName": "SPA subslot 0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1091, + "entPhysicalDescr": "subslot 0/0 transceiver container 0", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1092, + "entPhysicalDescr": "10G AOC1M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1091, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1093, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1092, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 1 + }, + { + "entPhysicalIndex": 1103, + "entPhysicalDescr": "subslot 0/0 transceiver container 1", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1104, + "entPhysicalDescr": "10G AOC1M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1103, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1105, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1104, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 2 + }, + { + "entPhysicalIndex": 1115, + "entPhysicalDescr": "subslot 0/0 transceiver container 2", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1116, + "entPhysicalDescr": "10G AOC1M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1115, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1117, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1116, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 3 + }, + { + "entPhysicalIndex": 1127, + "entPhysicalDescr": "subslot 0/0 transceiver container 3", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1128, + "entPhysicalDescr": "10G AOC1M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1127, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1129, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1128, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 4 + }, + { + "entPhysicalIndex": 1139, + "entPhysicalDescr": "subslot 0/0 transceiver container 4", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1151, + "entPhysicalDescr": "subslot 0/0 transceiver container 5", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1163, + "entPhysicalDescr": "subslot 0/0 transceiver container 6", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1175, + "entPhysicalDescr": "subslot 0/0 transceiver container 7", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 7", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1187, + "entPhysicalDescr": "subslot 0/0 transceiver container 8", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 8", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1199, + "entPhysicalDescr": "subslot 0/0 transceiver container 9", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 9", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1211, + "entPhysicalDescr": "subslot 0/0 transceiver container 10", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 10", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1212, + "entPhysicalDescr": "GE SX", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 10", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1211, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1213, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/10", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1212, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 11 + }, + { + "entPhysicalIndex": 1215, + "entPhysicalDescr": "subslot 0/0 transceiver 10 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 10 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1212, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1216, + "entPhysicalDescr": "subslot 0/0 transceiver 10 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 10 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1212, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1217, + "entPhysicalDescr": "subslot 0/0 transceiver 10 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 10 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1212, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1218, + "entPhysicalDescr": "subslot 0/0 transceiver 10 Tx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 10 Tx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1212, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1219, + "entPhysicalDescr": "subslot 0/0 transceiver 10 Rx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 10 Rx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1212, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1223, + "entPhysicalDescr": "subslot 0/0 transceiver container 11", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 11", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1224, + "entPhysicalDescr": "10GE LR", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 11", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1223, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1225, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/11", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1224, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 12 + }, + { + "entPhysicalIndex": 1227, + "entPhysicalDescr": "subslot 0/0 transceiver 11 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 11 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1224, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1228, + "entPhysicalDescr": "subslot 0/0 transceiver 11 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 11 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1224, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1229, + "entPhysicalDescr": "subslot 0/0 transceiver 11 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 11 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1224, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1230, + "entPhysicalDescr": "subslot 0/0 transceiver 11 Tx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 11 Tx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1224, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1231, + "entPhysicalDescr": "subslot 0/0 transceiver 11 Rx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/0 transceiver 11 Rx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1224, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1235, + "entPhysicalDescr": "subslot 0/0 transceiver container 12", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 12", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1247, + "entPhysicalDescr": "subslot 0/0 transceiver container 13", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 13", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1259, + "entPhysicalDescr": "subslot 0/0 transceiver container 14", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 14", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1271, + "entPhysicalDescr": "subslot 0/0 transceiver container 15", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 15", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1283, + "entPhysicalDescr": "subslot 0/0 transceiver container 16", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 16", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1295, + "entPhysicalDescr": "subslot 0/0 transceiver container 17", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 17", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1307, + "entPhysicalDescr": "subslot 0/0 transceiver container 18", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 18", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1319, + "entPhysicalDescr": "subslot 0/0 transceiver container 19", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/0 transceiver container 19", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1040, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1320, + "entPhysicalDescr": "10G AOC1M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/0 transceiver 19", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1319, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1321, + "entPhysicalDescr": "20xSFP+", + "entPhysicalClass": "port", + "entPhysicalName": "TenGigabitEthernet0/0/19", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1320, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 20 + }, + { + "entPhysicalIndex": 1520, + "entPhysicalDescr": "6-port 100 Gigabit QSFP Ethernet Port Adapter", + "entPhysicalClass": "module", + "entPhysicalName": "SPA subslot 0/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1000, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1571, + "entPhysicalDescr": "subslot 0/1 transceiver container 0", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1520, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1572, + "entPhysicalDescr": "QSFP 100GE AOC2M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1571, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1573, + "entPhysicalDescr": "6xQSFP", + "entPhysicalClass": "port", + "entPhysicalName": "HundredGigE0/1/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1572, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 21 + }, + { + "entPhysicalIndex": 1575, + "entPhysicalDescr": "subslot 0/1 transceiver 0 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 0 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1572, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1576, + "entPhysicalDescr": "subslot 0/1 transceiver 0 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 0 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1572, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1577, + "entPhysicalDescr": "subslot 0/1 transceiver 0 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 0 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1572, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1583, + "entPhysicalDescr": "subslot 0/1 transceiver container 1", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1520, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1584, + "entPhysicalDescr": "QSFP 100GE AOC2M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1583, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1585, + "entPhysicalDescr": "6xQSFP", + "entPhysicalClass": "port", + "entPhysicalName": "HundredGigE0/1/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1584, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 22 + }, + { + "entPhysicalIndex": 1587, + "entPhysicalDescr": "subslot 0/1 transceiver 1 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 1 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1584, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1588, + "entPhysicalDescr": "subslot 0/1 transceiver 1 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 1 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1584, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1589, + "entPhysicalDescr": "subslot 0/1 transceiver 1 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 1 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1584, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1595, + "entPhysicalDescr": "subslot 0/1 transceiver container 2", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1520, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1596, + "entPhysicalDescr": "QSFP 100GE LR", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1595, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1597, + "entPhysicalDescr": "6xQSFP", + "entPhysicalClass": "port", + "entPhysicalName": "HundredGigE0/1/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1596, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 23 + }, + { + "entPhysicalIndex": 1599, + "entPhysicalDescr": "subslot 0/1 transceiver 2 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 2 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1596, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1600, + "entPhysicalDescr": "subslot 0/1 transceiver 2 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 2 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1596, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1601, + "entPhysicalDescr": "subslot 0/1 transceiver 2 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 2 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1596, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1602, + "entPhysicalDescr": "subslot 0/1 transceiver 2 Tx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 2 Tx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1596, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1603, + "entPhysicalDescr": "subslot 0/1 transceiver 2 Rx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 2 Rx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1596, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1607, + "entPhysicalDescr": "subslot 0/1 transceiver container 3", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1520, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1608, + "entPhysicalDescr": "QSFP 100GE LR-S", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1607, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1609, + "entPhysicalDescr": "6xQSFP", + "entPhysicalClass": "port", + "entPhysicalName": "HundredGigE0/1/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1608, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 24 + }, + { + "entPhysicalIndex": 1611, + "entPhysicalDescr": "subslot 0/1 transceiver 3 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 3 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1608, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1612, + "entPhysicalDescr": "subslot 0/1 transceiver 3 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 3 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1608, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1613, + "entPhysicalDescr": "subslot 0/1 transceiver 3 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 3 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1608, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1614, + "entPhysicalDescr": "subslot 0/1 transceiver 3 Tx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 3 Tx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1608, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1615, + "entPhysicalDescr": "subslot 0/1 transceiver 3 Rx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 3 Rx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1608, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1619, + "entPhysicalDescr": "subslot 0/1 transceiver container 4", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1520, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1620, + "entPhysicalDescr": "QSFP 40GE AOC2M", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1619, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1621, + "entPhysicalDescr": "6xQSFP", + "entPhysicalClass": "port", + "entPhysicalName": "HundredGigE0/1/4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1620, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 25 + }, + { + "entPhysicalIndex": 1631, + "entPhysicalDescr": "subslot 0/1 transceiver container 5", + "entPhysicalClass": "container", + "entPhysicalName": "subslot 0/1 transceiver container 5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1520, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1632, + "entPhysicalDescr": "QSFP 40GE CSR4", + "entPhysicalClass": "module", + "entPhysicalName": "subslot 0/1 transceiver 5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1631, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1633, + "entPhysicalDescr": "6xQSFP", + "entPhysicalClass": "port", + "entPhysicalName": "HundredGigE0/1/5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1632, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": 26 + }, + { + "entPhysicalIndex": 1635, + "entPhysicalDescr": "subslot 0/1 transceiver 5 Temperature Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 5 Temperature Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1632, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1636, + "entPhysicalDescr": "subslot 0/1 transceiver 5 Supply Voltage Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 5 Supply Voltage Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1632, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1637, + "entPhysicalDescr": "subslot 0/1 transceiver 5 Bias Current Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 5 Bias Current Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1632, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1638, + "entPhysicalDescr": "subslot 0/1 transceiver 5 Tx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 5 Tx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1632, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 1639, + "entPhysicalDescr": "subslot 0/1 transceiver 5 Rx Power Sensor", + "entPhysicalClass": "sensor", + "entPhysicalName": "subslot 0/1 transceiver 5 Rx Power Sensor", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1632, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7000, + "entPhysicalDescr": "Cisco C8500-20X6C Route Processor", + "entPhysicalClass": "module", + "entPhysicalName": "module R0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7001, + "entPhysicalDescr": "VAMB1: VX1", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX1 R0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7002, + "entPhysicalDescr": "VAMB1: VX2", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX2 R0/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7003, + "entPhysicalDescr": "VAMB1: VX3", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX3 R0/2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7004, + "entPhysicalDescr": "VAMB1: VX4", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX4 R0/3", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7005, + "entPhysicalDescr": "VAMB1: VX5", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX5 R0/4", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7006, + "entPhysicalDescr": "VAMB1: VX6", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX6 R0/5", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7007, + "entPhysicalDescr": "VAMB1: VX7", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX7 R0/6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7008, + "entPhysicalDescr": "VAMB1: VX8", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX8 R0/7", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7009, + "entPhysicalDescr": "VAMB1: VX9", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX9 R0/8", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7010, + "entPhysicalDescr": "VAMB1: VX10", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX10 R0/9", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 9, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7011, + "entPhysicalDescr": "VAMB1: VX11", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX11 R0/10", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 10, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7012, + "entPhysicalDescr": "VAMB1: VX12", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX12 R0/11", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 11, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7013, + "entPhysicalDescr": "VAMB1: VX13", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX13 R0/12", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 12, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7014, + "entPhysicalDescr": "VAMB1: VX14", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX14 R0/13", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 13, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7015, + "entPhysicalDescr": "VAMB1: VX15", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX15 R0/14", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 14, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7016, + "entPhysicalDescr": "VAMB1: VX16", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB1: VX16 R0/15", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 15, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7017, + "entPhysicalDescr": "VAMB2: VX17", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX17 R0/16", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 16, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7018, + "entPhysicalDescr": "VAMB2: VX18", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX18 R0/17", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 17, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7019, + "entPhysicalDescr": "VAMB2: VX19", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX19 R0/18", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 18, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7020, + "entPhysicalDescr": "VAMB2: VX20", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX20 R0/19", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 19, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7021, + "entPhysicalDescr": "VAMB2: VX21", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX21 R0/20", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 20, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7022, + "entPhysicalDescr": "VAMB2: VX22", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX22 R0/21", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 21, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7023, + "entPhysicalDescr": "VAMB2: VX23", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX23 R0/22", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 22, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7024, + "entPhysicalDescr": "VAMB2: VX24", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX24 R0/23", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 23, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7025, + "entPhysicalDescr": "VAMB2: VX25", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX25 R0/24", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 24, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7026, + "entPhysicalDescr": "VAMB2: VX26", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX26 R0/25", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 25, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7027, + "entPhysicalDescr": "VAMB2: VX27", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX27 R0/26", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 26, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7028, + "entPhysicalDescr": "VAMB2: VX28", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX28 R0/27", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 27, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7029, + "entPhysicalDescr": "VAMB2: VX29", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX29 R0/28", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 28, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7030, + "entPhysicalDescr": "VAMB2: VX30", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX30 R0/29", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 29, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7031, + "entPhysicalDescr": "VAMB2: VX32", + "entPhysicalClass": "sensor", + "entPhysicalName": "VAMB2: VX32 R0/30", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 30, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7032, + "entPhysicalDescr": "VEUC1: VX33", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX33 R0/31", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 31, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7033, + "entPhysicalDescr": "VEUC1: VX34", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX34 R0/32", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 32, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7034, + "entPhysicalDescr": "VEUC1: VX35", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX35 R0/33", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 33, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7035, + "entPhysicalDescr": "VEUC1: VX36", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX36 R0/34", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 34, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7036, + "entPhysicalDescr": "VEUC1: VX37", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX37 R0/35", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 35, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7037, + "entPhysicalDescr": "VEUC1: VX38", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX38 R0/36", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 36, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7038, + "entPhysicalDescr": "VEUC1: VX39", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX39 R0/37", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 37, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7039, + "entPhysicalDescr": "VEUC1: VX40", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX40 R0/38", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 38, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7040, + "entPhysicalDescr": "VEUC1: VX41", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX41 R0/39", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 39, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7041, + "entPhysicalDescr": "VEUC1: VX42", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX42 R0/40", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 40, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7042, + "entPhysicalDescr": "VEUC1: VX43", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX43 R0/41", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 41, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7043, + "entPhysicalDescr": "VEUC1: VX44", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX44 R0/42", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 42, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7044, + "entPhysicalDescr": "VEUC1: VX45", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX45 R0/43", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 43, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7045, + "entPhysicalDescr": "VEUC1: VX46", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX46 R0/44", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 44, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7046, + "entPhysicalDescr": "VEUC1: VX47", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX47 R0/45", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 45, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7047, + "entPhysicalDescr": "VEUC1: VX48", + "entPhysicalClass": "sensor", + "entPhysicalName": "VEUC1: VX48 R0/46", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 46, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7048, + "entPhysicalDescr": "VFPC1: VX49", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX49 R0/47", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 47, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7049, + "entPhysicalDescr": "VFPC1: VX50", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX50 R0/48", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 48, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7050, + "entPhysicalDescr": "VFPC1: VX52", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX52 R0/49", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 49, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7051, + "entPhysicalDescr": "VFPC1: VX53", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX53 R0/50", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 50, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7052, + "entPhysicalDescr": "VFPC1: VX54", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX54 R0/51", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 51, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7053, + "entPhysicalDescr": "VFPC1: VX55", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX55 R0/52", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 52, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7054, + "entPhysicalDescr": "VFPC1: VX56", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX56 R0/53", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 53, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7055, + "entPhysicalDescr": "VFPC1: VX57", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX57 R0/54", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 54, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7056, + "entPhysicalDescr": "VFPC1: VX58", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX58 R0/55", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 55, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7057, + "entPhysicalDescr": "VFPC1: VX59", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX59 R0/56", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 56, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7058, + "entPhysicalDescr": "VFPC1: VX60", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX60 R0/57", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 57, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7059, + "entPhysicalDescr": "VFPC1: VX61", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX61 R0/58", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 58, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7060, + "entPhysicalDescr": "VFPC1: VX62", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX62 R0/59", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 59, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7061, + "entPhysicalDescr": "VFPC1: VX63", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX63 R0/60", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 60, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7062, + "entPhysicalDescr": "VFPC1: VX64", + "entPhysicalClass": "sensor", + "entPhysicalName": "VFPC1: VX64 R0/61", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 61, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7063, + "entPhysicalDescr": "Temp: AMB IN", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: AMB IN R0/62", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 62, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7064, + "entPhysicalDescr": "Temp: AMB OUT", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: AMB OUT R0/63", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 63, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7065, + "entPhysicalDescr": "Temp: AMB MID", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: AMB MID R0/64", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 64, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7066, + "entPhysicalDescr": "Temp: PCYN 0", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: PCYN 0 R0/65", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 65, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7067, + "entPhysicalDescr": "Temp: PCYN 1", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: PCYN 1 R0/66", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 66, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7068, + "entPhysicalDescr": "Temp: PCYN 2", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: PCYN 2 R0/67", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 67, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7069, + "entPhysicalDescr": "Temp: PCYN 3", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: PCYN 3 R0/68", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 68, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7070, + "entPhysicalDescr": "Temp: CPU Die", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: CPU Die R0/69", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 69, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7071, + "entPhysicalDescr": "Temp: FC FANS", + "entPhysicalClass": "sensor", + "entPhysicalName": "Temp: FC FANS R0/70", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 70, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7101, + "entPhysicalDescr": "CPU 0 of module R0", + "entPhysicalClass": "cpu", + "entPhysicalName": "cpu R0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7102, + "entPhysicalDescr": "USB Port", + "entPhysicalClass": "container", + "entPhysicalName": "usb R0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7104, + "entPhysicalDescr": "USB Port", + "entPhysicalClass": "container", + "entPhysicalName": "usb R0/1", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 7106, + "entPhysicalDescr": "Network Management Ethernet", + "entPhysicalClass": "port", + "entPhysicalName": "NME R0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 7000, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": null, + "ifIndex": 27 + }, + { + "entPhysicalIndex": 9000, + "entPhysicalDescr": "Cisco C8500-20X6C Embedded Services Processor", + "entPhysicalClass": "module", + "entPhysicalName": "module F0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 1, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 9026, + "entPhysicalDescr": "QFP 0 of module F0", + "entPhysicalClass": "cpu", + "entPhysicalName": "qfp F0/0", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 9000, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": null, + "ifIndex": null + } + ] + }, + "poller": "matches discovery" } } diff --git a/tests/data/iosxe_c9200l.json b/tests/data/iosxe_c9200l.json index fb6575c5c3..0854aeab1a 100644 --- a/tests/data/iosxe_c9200l.json +++ b/tests/data/iosxe_c9200l.json @@ -338,7 +338,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -363,7 +363,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -388,7 +388,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -413,7 +413,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -438,7 +438,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -463,7 +463,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -488,7 +488,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -513,7 +513,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -538,7 +538,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -563,7 +563,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -588,7 +588,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -613,7 +613,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -638,7 +638,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -663,7 +663,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -688,7 +688,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -713,7 +713,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -738,7 +738,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -763,7 +763,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -788,7 +788,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -813,7 +813,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -838,7 +838,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -863,7 +863,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -888,7 +888,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 9, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -913,7 +913,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -938,7 +938,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -963,7 +963,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -988,7 +988,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1013,7 +1013,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1038,7 +1038,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1063,7 +1063,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1088,7 +1088,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1113,7 +1113,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1138,7 +1138,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1163,7 +1163,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1188,7 +1188,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1213,7 +1213,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1238,7 +1238,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1263,7 +1263,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1288,7 +1288,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1313,7 +1313,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1338,7 +1338,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1363,7 +1363,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1388,7 +1388,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1413,7 +1413,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1438,7 +1438,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1463,7 +1463,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1488,7 +1488,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 4, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2782,2788 +2782,7 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "count", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.4.1.0", - "sensor_index": "0", - "sensor_type": "iosxe", - "sensor_descr": "PoE Devices Connected", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1117", - "sensor_index": "1117", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Te1/1/4 Bias Current", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1117", - "entPhysicalIndex_measured": "0", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1118", - "sensor_index": "1118", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Te1/1/4 Transmit Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1118", - "entPhysicalIndex_measured": "0", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1119", - "sensor_index": "1119", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Te1/1/4 Receive Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1119", - "entPhysicalIndex_measured": "0", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.3.1.5.1", - "sensor_index": "cpeExtMainPseRemainingPower.1", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Remaining - Switch 1 - Power Supply A", - "group": "PoE", - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 713.9, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": 0, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.3.1.5.2", - "sensor_index": "cpeExtMainPseRemainingPower.2", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Remaining - Switch 2 - Power Supply A", - "group": "PoE", - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 687.8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": 0, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.3.1.5.3", - "sensor_index": "cpeExtMainPseRemainingPower.3", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Remaining - Switch 3 - Power Supply A", - "group": "PoE", - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 650.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": 0, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.3.1.4.1", - "sensor_index": "cpeExtMainPseUsedPower.1", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Consumed - Switch 1 - Power Supply A", - "group": "PoE", - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 26.1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.3.1.4.2", - "sensor_index": "cpeExtMainPseUsedPower.2", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Consumed - Switch 2 - Power Supply A", - "group": "PoE", - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 52.2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.402.1.3.1.4.3", - "sensor_index": "cpeExtMainPseUsedPower.3", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Consumed - Switch 3 - Power Supply A", - "group": "PoE", - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 89.7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.2.1.105.1.3.1.1.2.1", - "sensor_index": "pethMainPsePower.1", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Total - ID 1", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 740, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.2.1.105.1.3.1.1.2.2", - "sensor_index": "pethMainPsePower.2", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Total - ID 2", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 740, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.2.1.105.1.3.1.1.2.3", - "sensor_index": "pethMainPsePower.3", - "sensor_type": "iosxe", - "sensor_descr": "PoE Budget Total - ID 3", - "group": "PoE", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 740, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.1013", - "sensor_index": "1013", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Switch 1 - Power Supply A", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2013", - "sensor_index": "2013", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Switch 2 - Power Supply A", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.3013", - "sensor_index": "3013", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Switch 3 - Power Supply A", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.1014", - "sensor_index": "1014", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch 1 - FAN - T1 1, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1014", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.1015", - "sensor_index": "1015", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch 1 - FAN - T1 2, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1015", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.2014", - "sensor_index": "2014", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch 2 - FAN - T1 1, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2014", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.2015", - "sensor_index": "2015", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch 2 - FAN - T1 2, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2015", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.3014", - "sensor_index": "3014", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch 3 - FAN - T1 1, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3014", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.3015", - "sensor_index": "3015", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Switch 3 - FAN - T1 2, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3015", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.1013", - "sensor_index": "1013", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Switch 1 - Power Supply A, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.2013", - "sensor_index": "2013", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Switch 2 - Power Supply A, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.3013", - "sensor_index": "3013", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Switch 3 - Power Supply A, Normal", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1010", - "sensor_index": "1010", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 1 - Inlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1010", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1011", - "sensor_index": "1011", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 1 - Outlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1011", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1012", - "sensor_index": "1012", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 1 - HotSpot Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1012", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2010", - "sensor_index": "2010", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 2 - Inlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2010", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2011", - "sensor_index": "2011", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 2 - Outlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2011", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2012", - "sensor_index": "2012", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 2 - HotSpot Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2012", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3010", - "sensor_index": "3010", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 3 - Inlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3010", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3011", - "sensor_index": "3011", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 3 - Outlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3011", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3012", - "sensor_index": "3012", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Switch 3 - HotSpot Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3012", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", - "sensor_index": "0", - "sensor_type": "cRFCfgRedundancyOperMode", - "sensor_descr": "VSS Mode", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cRFCfgRedundancyOperMode" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", - "sensor_index": "0", - "sensor_type": "cRFStatusPeerUnitState", - "sensor_descr": "VSS Peer State", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 9, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cRFStatusPeerUnitState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", - "sensor_index": "0", - "sensor_type": "cRFStatusUnitState", - "sensor_descr": "VSS Device State", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 14, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cRFStatusUnitState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.1.3.0", - "sensor_index": "0", - "sensor_type": "cswRingRedundant", - "sensor_descr": "Stack Ring - Redundant", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswRingRedundant" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.117", - "sensor_index": "117", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "117", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.118", - "sensor_index": "118", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "118", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.172", - "sensor_index": "172", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "172", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.173", - "sensor_index": "173", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "173", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.445", - "sensor_index": "445", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "445", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.446", - "sensor_index": "446", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "446", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.448", - "sensor_index": "448", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "448", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.449", - "sensor_index": "449", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "449", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.451", - "sensor_index": "451", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "451", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.452", - "sensor_index": "452", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "452", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.454", - "sensor_index": "454", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "454", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.455", - "sensor_index": "455", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "455", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.457", - "sensor_index": "457", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "457", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.458", - "sensor_index": "458", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "458", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.62", - "sensor_index": "62", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "62", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.2.1.1.63", - "sensor_index": "63", - "sensor_type": "cswStackPortOperStatus", - "sensor_descr": "Stack Port Status -", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "63", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswStackPortOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.3.1000", - "sensor_index": "1000", - "sensor_type": "cswSwitchRole", - "sensor_descr": "Stack Role - Switch#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchRole" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.3.2000", - "sensor_index": "2000", - "sensor_type": "cswSwitchRole", - "sensor_descr": "Stack Role - Switch#2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchRole" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.3.3000", - "sensor_index": "3000", - "sensor_type": "cswSwitchRole", - "sensor_descr": "Stack Role - Switch#3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchRole" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.6.1000", - "sensor_index": "1000", - "sensor_type": "cswSwitchState", - "sensor_descr": "Stack State - Switch#1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.6.2000", - "sensor_index": "2000", - "sensor_type": "cswSwitchState", - "sensor_descr": "Stack State - Switch#2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.500.1.2.1.1.6.3000", - "sensor_index": "3000", - "sensor_type": "cswSwitchState", - "sensor_descr": "Stack State - Switch#3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cswSwitchState" - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1010", - "sensor_index": "1010", - "sensor_type": "cisco", - "sensor_descr": "Switch 1 - Inlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 56, - "sensor_limit_warn": null, - "sensor_limit_low": 15, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1010", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1011", - "sensor_index": "1011", - "sensor_type": "cisco", - "sensor_descr": "Switch 1 - Outlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 33, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 23, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1011", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1012", - "sensor_index": "1012", - "sensor_type": "cisco", - "sensor_descr": "Switch 1 - HotSpot Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1012", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2010", - "sensor_index": "2010", - "sensor_type": "cisco", - "sensor_descr": "Switch 2 - Inlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 56, - "sensor_limit_warn": null, - "sensor_limit_low": 15, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2010", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2011", - "sensor_index": "2011", - "sensor_type": "cisco", - "sensor_descr": "Switch 2 - Outlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 32, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 22, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2011", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2012", - "sensor_index": "2012", - "sensor_type": "cisco", - "sensor_descr": "Switch 2 - HotSpot Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 44, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 34, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2012", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3010", - "sensor_index": "3010", - "sensor_type": "cisco", - "sensor_descr": "Switch 3 - Inlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 22, - "sensor_limit": 56, - "sensor_limit_warn": null, - "sensor_limit_low": 12, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3010", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3011", - "sensor_index": "3011", - "sensor_type": "cisco", - "sensor_descr": "Switch 3 - Outlet Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 30, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 20, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3011", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3012", - "sensor_index": "3012", - "sensor_type": "cisco", - "sensor_descr": "Switch 3 - HotSpot Temp Sensor, GREEN", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 41, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 31, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3012", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1010", - "sensor_index": "1010", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 1 - Switch 1 - Inlet Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 56, - "sensor_limit_warn": 46, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 31, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1010", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1011", - "sensor_index": "1011", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 1 - Switch 1 - Outlet Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 33, - "sensor_limit": 125, - "sensor_limit_warn": 105, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 105, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1011", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1012", - "sensor_index": "1012", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 1 - Switch 1 - HotSpot Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 125, - "sensor_limit_warn": 105, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 105, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1012", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1115", - "sensor_index": "1115", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Te1/1/4 Module", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 20, - "sensor_limit_warn": null, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1115", - "entPhysicalIndex_measured": "0", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2010", - "sensor_index": "2010", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Switch 2 - Inlet Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 25, - "sensor_limit": 56, - "sensor_limit_warn": 46, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 31, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2010", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2011", - "sensor_index": "2011", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Switch 2 - Outlet Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 32, - "sensor_limit": 125, - "sensor_limit_warn": 105, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 105, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2011", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2012", - "sensor_index": "2012", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Switch 2 - HotSpot Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 44, - "sensor_limit": 125, - "sensor_limit_warn": 105, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 105, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2012", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2115", - "sensor_index": "2115", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Te2/1/4 Module", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -866597556, - "sensor_limit": -5, - "sensor_limit_warn": null, - "sensor_limit_low": -866597536, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2115", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2116", - "sensor_index": "2116", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Te2/1/4 Supply Voltage", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -866597556, - "sensor_limit": -5, - "sensor_limit_warn": null, - "sensor_limit_low": -866597536, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2116", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2117", - "sensor_index": "2117", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Te2/1/4 Bias Current", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -866597556, - "sensor_limit": -5, - "sensor_limit_warn": null, - "sensor_limit_low": -866597536, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2117", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2118", - "sensor_index": "2118", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Te2/1/4 Transmit Power", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -866597556, - "sensor_limit": -5, - "sensor_limit_warn": null, - "sensor_limit_low": -866597536, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2118", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2119", - "sensor_index": "2119", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 2 - Te2/1/4 Receive Power", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": -866597556, - "sensor_limit": -5, - "sensor_limit_warn": null, - "sensor_limit_low": -866597536, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2119", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3010", - "sensor_index": "3010", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 3 - Switch 3 - Inlet Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 22, - "sensor_limit": 56, - "sensor_limit_warn": 46, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 31, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3010", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3011", - "sensor_index": "3011", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 3 - Switch 3 - Outlet Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 30, - "sensor_limit": 125, - "sensor_limit_warn": 105, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 105, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3011", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3012", - "sensor_index": "3012", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Switch 3 - Switch 3 - HotSpot Temp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 41, - "sensor_limit": 125, - "sensor_limit_warn": 105, - "sensor_limit_low": -10, - "sensor_limit_low_warn": 105, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3012", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1116", - "sensor_index": "1116", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Te1/1/4 Supply Voltage", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 0, - "sensor_limit_warn": null, - "sensor_limit_low": 0, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1116", - "entPhysicalIndex_measured": "0", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ], - "state_indexes": [ - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (other)", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "on", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (admin)", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (denied)", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (environmental)", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (temperature)", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (fan)", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "failed", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "on (fan failed)", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 1 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (cooling)", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (connector rating)", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "on (no inline power)", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "nonRedundant", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "staticLoadShareNonRedundant", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "dynamicLoadShareNonRedundant", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "staticLoadShareRedundant", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "dynamicLoadShareRedundant", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "coldStandbyRedundant", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "warmStandbyRedundant", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "hotStandbyRedundant", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "notKnown", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "initialization", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "negotiation", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyCold", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyColdConfig", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyColdFileSys", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyColdBulk", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyHot", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeFast", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeDrain", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activePreconfig", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activePostconfig", - "state_draw_graph": 0, - "state_value": 13, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "active", - "state_draw_graph": 0, - "state_value": 14, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeExtraload", - "state_draw_graph": 0, - "state_value": 15, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeHandback", - "state_draw_graph": 0, - "state_value": 16, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "notKnown", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "initialization", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "negotiation", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyCold", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyColdConfig", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyColdFileSys", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyColdBulk", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyHot", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeFast", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeDrain", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activePreconfig", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activePostconfig", - "state_draw_graph": 0, - "state_value": 13, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "active", - "state_draw_graph": 0, - "state_value": 14, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeExtraload", - "state_draw_graph": 0, - "state_value": 15, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeHandback", - "state_draw_graph": 0, - "state_value": 16, - "state_generic_value": 1 - }, - { - "state_name": "cswRingRedundant", - "state_descr": "true", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cswRingRedundant", - "state_descr": "false", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "cswStackPortOperStatus", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "master", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "member", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "notMember", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchRole", - "state_descr": "standby", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchState", - "state_descr": "waiting", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "progressing", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "added", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "ready", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "cswSwitchState", - "state_descr": "sdmMismatch", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "verMismatch", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "featureMismatch", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "newMasterInit", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "provisioned", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 1 - }, - { - "state_name": "cswSwitchState", - "state_descr": "invalid", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 2 - }, - { - "state_name": "cswSwitchState", - "state_descr": "removed", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 1 - } - ] - } + "poller": "matches discovery" }, "os": { "discovery": { diff --git a/tests/data/iosxe_c9300.json b/tests/data/iosxe_c9300.json index a81736d27d..a43d11e9a2 100644 --- a/tests/data/iosxe_c9300.json +++ b/tests/data/iosxe_c9300.json @@ -15545,5 +15545,31 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 71, + "low_ifIndex": 70, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 72, + "low_ifIndex": 70, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 137, + "low_ifIndex": 136, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 138, + "low_ifIndex": 136, + "ifStackStatus": "active" + } + ] + } } } diff --git a/tests/data/iosxe_c9400.json b/tests/data/iosxe_c9400.json index 33f9486403..a7fa5b365f 100644 --- a/tests/data/iosxe_c9400.json +++ b/tests/data/iosxe_c9400.json @@ -24199,7 +24199,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24224,7 +24224,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24249,7 +24249,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24274,7 +24274,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24299,7 +24299,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24324,7 +24324,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24349,7 +24349,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24374,7 +24374,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24399,7 +24399,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24424,7 +24424,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24449,7 +24449,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24474,7 +24474,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24499,7 +24499,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24524,7 +24524,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24549,7 +24549,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24574,7 +24574,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24599,7 +24599,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24624,7 +24624,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24649,7 +24649,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24674,7 +24674,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24699,7 +24699,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24724,7 +24724,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24749,7 +24749,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24774,7 +24774,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24799,7 +24799,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24824,7 +24824,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24849,7 +24849,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24874,7 +24874,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24899,7 +24899,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24924,7 +24924,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24949,7 +24949,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24974,7 +24974,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -24999,7 +24999,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25024,7 +25024,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25049,7 +25049,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25074,7 +25074,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25099,7 +25099,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25124,7 +25124,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25149,7 +25149,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25174,7 +25174,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25199,7 +25199,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25224,7 +25224,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25249,7 +25249,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25274,7 +25274,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25299,7 +25299,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25324,7 +25324,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25349,7 +25349,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 9, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -25374,7 +25374,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -28057,3977 +28057,7 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1020", - "sensor_index": "1020", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 HotSwap: Power", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 320, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1020", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2042", - "sensor_index": "2042", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 HotSwap: Power", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 269, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2042", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3042", - "sensor_index": "3042", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 HotSwap: Power", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 257, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3042", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4015", - "sensor_index": "4015", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 HotSwap: Power", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 472, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4015", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.1000", - "sensor_index": "1000", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Slot 1 Linecard", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.12", - "sensor_index": "12", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Power Supply Module 1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "12", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.17", - "sensor_index": "17", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Power Supply Module 2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "17", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.2000", - "sensor_index": "2000", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Slot 2 Supervisor", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.22", - "sensor_index": "22", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Power Supply Module 3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "22", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.27", - "sensor_index": "27", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Power Supply Module 4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "27", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.3000", - "sensor_index": "3000", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Slot 3 Supervisor", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.4000", - "sensor_index": "4000", - "sensor_type": "cefcFRUPowerOperStatus", - "sensor_descr": "Slot 4 Linecard", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4000", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cefcFRUPowerOperStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.14", - "sensor_index": "14", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 1/1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "14", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.15", - "sensor_index": "15", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 1/2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "15", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.19", - "sensor_index": "19", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 2/1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "19", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.20", - "sensor_index": "20", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 2/2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "20", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.24", - "sensor_index": "24", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 3/1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "24", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.25", - "sensor_index": "25", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 3/2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "25", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.29", - "sensor_index": "29", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 4/1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "29", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.30", - "sensor_index": "30", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 4/2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "30", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.32", - "sensor_index": "32", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan Tray", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "32", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.33", - "sensor_index": "33", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "33", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.34", - "sensor_index": "34", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "34", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.35", - "sensor_index": "35", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "35", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.36", - "sensor_index": "36", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "36", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.37", - "sensor_index": "37", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "37", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.38", - "sensor_index": "38", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/6", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "38", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.39", - "sensor_index": "39", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/7", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "39", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.40", - "sensor_index": "40", - "sensor_type": "ciscoEnvMonFanState", - "sensor_descr": "Fan 9/8", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "40", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonFanState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.12", - "sensor_index": "12", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply Module 1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "12", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.13", - "sensor_index": "13", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply 1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "13", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.17", - "sensor_index": "17", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply Module 2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "17", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.18", - "sensor_index": "18", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply 2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "18", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.22", - "sensor_index": "22", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply Module 3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "22", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.23", - "sensor_index": "23", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply 3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "23", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.27", - "sensor_index": "27", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply Module 4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "27", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.28", - "sensor_index": "28", - "sensor_type": "ciscoEnvMonSupplyState", - "sensor_descr": "Power Supply 4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "28", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonSupplyState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1017", - "sensor_index": "1017", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 1 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1017", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.1018", - "sensor_index": "1018", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 1 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1018", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2021", - "sensor_index": "2021", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 2 Temp: Coretemp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2021", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2022", - "sensor_index": "2022", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 2 Temp: UADP", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2022", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2039", - "sensor_index": "2039", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 2 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2039", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2040", - "sensor_index": "2040", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 2 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2040", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3021", - "sensor_index": "3021", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 3 Temp: Coretemp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3021", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3022", - "sensor_index": "3022", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 3 Temp: UADP", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3022", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3039", - "sensor_index": "3039", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 3 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3039", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.3040", - "sensor_index": "3040", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 3 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3040", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.4012", - "sensor_index": "4012", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 4 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4012", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.4013", - "sensor_index": "4013", - "sensor_type": "ciscoEnvMonTemperatureState", - "sensor_descr": "Slot 4 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4013", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "ciscoEnvMonTemperatureState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", - "sensor_index": "0", - "sensor_type": "cRFCfgRedundancyOperMode", - "sensor_descr": "VSS Mode", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cRFCfgRedundancyOperMode" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", - "sensor_index": "0", - "sensor_type": "cRFStatusPeerUnitState", - "sensor_descr": "VSS Peer State", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 9, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cRFStatusPeerUnitState" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", - "sensor_index": "0", - "sensor_type": "cRFStatusUnitState", - "sensor_descr": "VSS Device State", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 14, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "0", - "entPhysicalIndex_measured": null, - "sensor_prev": 0, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "cRFStatusUnitState" - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1017", - "sensor_index": "1017", - "sensor_type": "cisco", - "sensor_descr": "Slot 1 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 113, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1017", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.1018", - "sensor_index": "1018", - "sensor_type": "cisco", - "sensor_descr": "Slot 1 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 37, - "sensor_limit": 106, - "sensor_limit_warn": null, - "sensor_limit_low": 27, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1018", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2021", - "sensor_index": "2021", - "sensor_type": "cisco", - "sensor_descr": "Slot 2 Temp: Coretemp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 52, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 42, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2021", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2022", - "sensor_index": "2022", - "sensor_type": "cisco", - "sensor_descr": "Slot 2 Temp: UADP", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 43, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2022", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2039", - "sensor_index": "2039", - "sensor_type": "cisco", - "sensor_descr": "Slot 2 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 44, - "sensor_limit": 105, - "sensor_limit_warn": null, - "sensor_limit_low": 34, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2039", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2040", - "sensor_index": "2040", - "sensor_type": "cisco", - "sensor_descr": "Slot 2 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 32, - "sensor_limit": 98, - "sensor_limit_warn": null, - "sensor_limit_low": 22, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2040", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3021", - "sensor_index": "3021", - "sensor_type": "cisco", - "sensor_descr": "Slot 3 Temp: Coretemp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 46, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 36, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3021", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3022", - "sensor_index": "3022", - "sensor_type": "cisco", - "sensor_descr": "Slot 3 Temp: UADP", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 125, - "sensor_limit_warn": null, - "sensor_limit_low": 43, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3022", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3039", - "sensor_index": "3039", - "sensor_type": "cisco", - "sensor_descr": "Slot 3 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 105, - "sensor_limit_warn": null, - "sensor_limit_low": 33, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3039", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.3040", - "sensor_index": "3040", - "sensor_type": "cisco", - "sensor_descr": "Slot 3 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 32, - "sensor_limit": 98, - "sensor_limit_warn": null, - "sensor_limit_low": 22, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3040", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.4012", - "sensor_index": "4012", - "sensor_type": "cisco", - "sensor_descr": "Slot 4 Temp: Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 29, - "sensor_limit": 112, - "sensor_limit_warn": null, - "sensor_limit_low": 19, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4012", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.4013", - "sensor_index": "4013", - "sensor_type": "cisco", - "sensor_descr": "Slot 4 Temp: Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 29, - "sensor_limit": 107, - "sensor_limit_warn": null, - "sensor_limit_low": 19, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4013", - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1017", - "sensor_index": "1017", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 111, - "sensor_limit_warn": 58, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1017", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1018", - "sensor_index": "1018", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 37, - "sensor_limit": 104, - "sensor_limit_warn": 52, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1018", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2021", - "sensor_index": "2021", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 Coretemp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 123, - "sensor_limit_warn": 107, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2021", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2022", - "sensor_index": "2022", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 UADP", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 123, - "sensor_limit_warn": 107, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2022", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2039", - "sensor_index": "2039", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 44, - "sensor_limit": 103, - "sensor_limit_warn": 63, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2039", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2040", - "sensor_index": "2040", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 32, - "sensor_limit": 96, - "sensor_limit_warn": 56, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2040", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3021", - "sensor_index": "3021", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 Coretemp", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 47, - "sensor_limit": 123, - "sensor_limit_warn": 107, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3021", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3022", - "sensor_index": "3022", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 UADP", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 123, - "sensor_limit_warn": 107, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3022", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3039", - "sensor_index": "3039", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 43, - "sensor_limit": 103, - "sensor_limit_warn": 63, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3039", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3040", - "sensor_index": "3040", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 32, - "sensor_limit": 96, - "sensor_limit_warn": 56, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3040", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4012", - "sensor_index": "4012", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 Outlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 29, - "sensor_limit": 110, - "sensor_limit_warn": 53, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4012", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4013", - "sensor_index": "4013", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 Inlet", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 29, - "sensor_limit": 105, - "sensor_limit_warn": 48, - "sensor_limit_low": -5, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4013", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1001", - "sensor_index": "1001", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.294, - "sensor_limit": 3.7881, - "sensor_limit_warn": null, - "sensor_limit_low": 2.7999, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1001", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1002", - "sensor_index": "1002", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX2", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.901, - "sensor_limit": 1.03615, - "sensor_limit_warn": null, - "sensor_limit_low": 0.76585, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1002", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1003", - "sensor_index": "1003", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX3", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.999, - "sensor_limit": 1.14885, - "sensor_limit_warn": null, - "sensor_limit_low": 0.84915, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1003", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1004", - "sensor_index": "1004", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX4", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.028, - "sensor_limit": 1.1822, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8738, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1004", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1005", - "sensor_index": "1005", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX5", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.507, - "sensor_limit": 1.73305, - "sensor_limit_warn": null, - "sensor_limit_low": 1.28095, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1005", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1006", - "sensor_index": "1006", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX6", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.2, - "sensor_limit": 1.38, - "sensor_limit_warn": null, - "sensor_limit_low": 1.02, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1006", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1007", - "sensor_index": "1007", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX7", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.501, - "sensor_limit": 1.72615, - "sensor_limit_warn": null, - "sensor_limit_low": 1.27585, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1007", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1008", - "sensor_index": "1008", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX8", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.795, - "sensor_limit": 2.06425, - "sensor_limit_warn": null, - "sensor_limit_low": 1.52575, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1008", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1009", - "sensor_index": "1009", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX9", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 2.09, - "sensor_limit": 2.4035, - "sensor_limit_warn": null, - "sensor_limit_low": 1.7765, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1009", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1010", - "sensor_index": "1010", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX10", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 2.508, - "sensor_limit": 2.8842, - "sensor_limit_warn": null, - "sensor_limit_low": 2.1318, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1010", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1011", - "sensor_index": "1011", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX11", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.312, - "sensor_limit": 3.8088, - "sensor_limit_warn": null, - "sensor_limit_low": 2.8152, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1011", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1012", - "sensor_index": "1012", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX12", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.849, - "sensor_limit": 0.97635, - "sensor_limit_warn": null, - "sensor_limit_low": 0.72165, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1012", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1013", - "sensor_index": "1013", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX13", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.034, - "sensor_limit": 1.1891, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8789, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1013", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1014", - "sensor_index": "1014", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX14", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.035, - "sensor_limit": 1.19025, - "sensor_limit_warn": null, - "sensor_limit_low": 0.87975, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1014", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1015", - "sensor_index": "1015", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX15", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.035, - "sensor_limit": 1.19025, - "sensor_limit_warn": null, - "sensor_limit_low": 0.87975, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1015", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1016", - "sensor_index": "1016", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 V1: VX16", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.036, - "sensor_limit": 1.1914, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8806, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1016", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.1019", - "sensor_index": "1019", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 1 Linecard - Slot 1 HotSwap: Volts", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 60.95, - "sensor_limit_warn": null, - "sensor_limit_low": 45.05, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1019", - "entPhysicalIndex_measured": "1000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2023", - "sensor_index": "2023", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.872, - "sensor_limit": 1.0028, - "sensor_limit_warn": null, - "sensor_limit_low": 0.7412, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2023", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2024", - "sensor_index": "2024", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX2", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.497, - "sensor_limit": 1.72155, - "sensor_limit_warn": null, - "sensor_limit_low": 1.27245, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2024", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2025", - "sensor_index": "2025", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX3", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.057, - "sensor_limit": 1.21555, - "sensor_limit_warn": null, - "sensor_limit_low": 0.89845, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2025", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2026", - "sensor_index": "2026", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX4", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.852, - "sensor_limit": 0.9798, - "sensor_limit_warn": null, - "sensor_limit_low": 0.7242, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2026", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2027", - "sensor_index": "2027", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX5", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.508, - "sensor_limit": 1.7342, - "sensor_limit_warn": null, - "sensor_limit_low": 1.2818, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2027", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2028", - "sensor_index": "2028", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX6", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.301, - "sensor_limit": 1.49615, - "sensor_limit_warn": null, - "sensor_limit_low": 1.10585, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2028", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2029", - "sensor_index": "2029", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX7", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.004, - "sensor_limit": 1.1546, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8534, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2029", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2030", - "sensor_index": "2030", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX8", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.101, - "sensor_limit": 1.26615, - "sensor_limit_warn": null, - "sensor_limit_low": 0.93585, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2030", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2031", - "sensor_index": "2031", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX9", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.204, - "sensor_limit": 1.3846, - "sensor_limit_warn": null, - "sensor_limit_low": 1.0234, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2031", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2032", - "sensor_index": "2032", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX10", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.706, - "sensor_limit": 1.9619, - "sensor_limit_warn": null, - "sensor_limit_low": 1.4501, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2032", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2033", - "sensor_index": "2033", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX11", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.223, - "sensor_limit": 1.40645, - "sensor_limit_warn": null, - "sensor_limit_low": 1.03955, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2033", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2034", - "sensor_index": "2034", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX12", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.804, - "sensor_limit": 2.0746, - "sensor_limit_warn": null, - "sensor_limit_low": 1.5334, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2034", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2035", - "sensor_index": "2035", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX13", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 2.498, - "sensor_limit": 2.8727, - "sensor_limit_warn": null, - "sensor_limit_low": 2.1233, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2035", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2036", - "sensor_index": "2036", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX14", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.307, - "sensor_limit": 3.80305, - "sensor_limit_warn": null, - "sensor_limit_low": 2.81095, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2036", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2037", - "sensor_index": "2037", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX15", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 5.043, - "sensor_limit": 5.79945, - "sensor_limit_warn": null, - "sensor_limit_low": 4.28655, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2037", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2038", - "sensor_index": "2038", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 V1: VX16", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.9, - "sensor_limit": 1.035, - "sensor_limit_warn": null, - "sensor_limit_low": 0.765, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2038", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2041", - "sensor_index": "2041", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 2 Supervisor - Slot 2 HotSwap: Volts", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 60.95, - "sensor_limit_warn": null, - "sensor_limit_low": 45.05, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "2041", - "entPhysicalIndex_measured": "2000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3023", - "sensor_index": "3023", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.87, - "sensor_limit": 1.0005, - "sensor_limit_warn": null, - "sensor_limit_low": 0.7395, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3023", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3024", - "sensor_index": "3024", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX2", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.501, - "sensor_limit": 1.72615, - "sensor_limit_warn": null, - "sensor_limit_low": 1.27585, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3024", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3025", - "sensor_index": "3025", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX3", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.055, - "sensor_limit": 1.21325, - "sensor_limit_warn": null, - "sensor_limit_low": 0.89675, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3025", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3026", - "sensor_index": "3026", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX4", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.85, - "sensor_limit": 0.9775, - "sensor_limit_warn": null, - "sensor_limit_low": 0.7225, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3026", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3027", - "sensor_index": "3027", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX5", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.508, - "sensor_limit": 1.7342, - "sensor_limit_warn": null, - "sensor_limit_low": 1.2818, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3027", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3028", - "sensor_index": "3028", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX6", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.303, - "sensor_limit": 1.49845, - "sensor_limit_warn": null, - "sensor_limit_low": 1.10755, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3028", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3029", - "sensor_index": "3029", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX7", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.004, - "sensor_limit": 1.1546, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8534, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3029", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3030", - "sensor_index": "3030", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX8", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.099, - "sensor_limit": 1.26385, - "sensor_limit_warn": null, - "sensor_limit_low": 0.93415, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3030", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3031", - "sensor_index": "3031", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX9", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.203, - "sensor_limit": 1.38345, - "sensor_limit_warn": null, - "sensor_limit_low": 1.02255, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3031", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3032", - "sensor_index": "3032", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX10", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.706, - "sensor_limit": 1.9619, - "sensor_limit_warn": null, - "sensor_limit_low": 1.4501, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3032", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3033", - "sensor_index": "3033", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX11", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.221, - "sensor_limit": 1.40415, - "sensor_limit_warn": null, - "sensor_limit_low": 1.03785, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3033", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3034", - "sensor_index": "3034", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX12", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.802, - "sensor_limit": 2.0723, - "sensor_limit_warn": null, - "sensor_limit_low": 1.5317, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3034", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3035", - "sensor_index": "3035", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX13", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 2.501, - "sensor_limit": 2.87615, - "sensor_limit_warn": null, - "sensor_limit_low": 2.12585, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3035", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3036", - "sensor_index": "3036", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX14", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.29, - "sensor_limit": 3.7835, - "sensor_limit_warn": null, - "sensor_limit_low": 2.7965, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3036", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3037", - "sensor_index": "3037", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX15", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 5.032, - "sensor_limit": 5.7868, - "sensor_limit_warn": null, - "sensor_limit_low": 4.2772, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3037", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3038", - "sensor_index": "3038", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 V1: VX16", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.899, - "sensor_limit": 1.03385, - "sensor_limit_warn": null, - "sensor_limit_low": 0.76415, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3038", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.3041", - "sensor_index": "3041", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 3 Supervisor - Slot 3 HotSwap: Volts", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 60.95, - "sensor_limit_warn": null, - "sensor_limit_low": 45.05, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "3041", - "entPhysicalIndex_measured": "3000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4001", - "sensor_index": "4001", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.997, - "sensor_limit": 1.14655, - "sensor_limit_warn": null, - "sensor_limit_low": 0.84745, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4001", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4002", - "sensor_index": "4002", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX2", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.5, - "sensor_limit": 1.725, - "sensor_limit_warn": null, - "sensor_limit_low": 1.275, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4002", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4003", - "sensor_index": "4003", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX3", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.798, - "sensor_limit": 2.0677, - "sensor_limit_warn": null, - "sensor_limit_low": 1.5283, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4003", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4004", - "sensor_index": "4004", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX4", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.293, - "sensor_limit": 3.78695, - "sensor_limit_warn": null, - "sensor_limit_low": 2.79905, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4004", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4005", - "sensor_index": "4005", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX5", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.325, - "sensor_limit": 3.82375, - "sensor_limit_warn": null, - "sensor_limit_low": 2.82625, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4005", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4006", - "sensor_index": "4006", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX6", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.5, - "sensor_limit": 1.725, - "sensor_limit_warn": null, - "sensor_limit_low": 1.275, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4006", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4007", - "sensor_index": "4007", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX7", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.032, - "sensor_limit": 1.1868, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8772, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4007", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4008", - "sensor_index": "4008", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX8", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 3.316, - "sensor_limit": 3.8134, - "sensor_limit_warn": null, - "sensor_limit_low": 2.8186, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4008", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4009", - "sensor_index": "4009", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX9", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 12.079, - "sensor_limit": 13.89085, - "sensor_limit_warn": null, - "sensor_limit_low": 10.26715, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4009", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4010", - "sensor_index": "4010", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX10", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.004, - "sensor_limit": 1.1546, - "sensor_limit_warn": null, - "sensor_limit_low": 0.8534, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4010", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4011", - "sensor_index": "4011", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 V1: VX11", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 1.035, - "sensor_limit": 1.19025, - "sensor_limit_warn": null, - "sensor_limit_low": 0.87975, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4011", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.4014", - "sensor_index": "4014", - "sensor_type": "cisco-entity-sensor", - "sensor_descr": "Slot 4 Linecard - Slot 4 HotSwap: Volts", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 53, - "sensor_limit": 60.95, - "sensor_limit_warn": null, - "sensor_limit_low": 45.05, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "4014", - "entPhysicalIndex_measured": "4000", - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ], - "state_indexes": [ - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (other)", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "on", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (admin)", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (denied)", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (environmental)", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (temperature)", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (fan)", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "failed", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "on (fan failed)", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 1 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (cooling)", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "off (connector rating)", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 2 - }, - { - "state_name": "cefcFRUPowerOperStatus", - "state_descr": "on (no inline power)", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonFanState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonSupplyState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "warning", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "critical", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "shutdown", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notPresent", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 3 - }, - { - "state_name": "ciscoEnvMonTemperatureState", - "state_descr": "notFunctioning", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 2 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "nonRedundant", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "staticLoadShareNonRedundant", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "dynamicLoadShareNonRedundant", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "staticLoadShareRedundant", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "dynamicLoadShareRedundant", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "coldStandbyRedundant", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "warmStandbyRedundant", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 0 - }, - { - "state_name": "cRFCfgRedundancyOperMode", - "state_descr": "hotStandbyRedundant", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "notKnown", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "initialization", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "negotiation", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyCold", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyColdConfig", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyColdFileSys", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyColdBulk", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "standbyHot", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeFast", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeDrain", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activePreconfig", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activePostconfig", - "state_draw_graph": 0, - "state_value": 13, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "active", - "state_draw_graph": 0, - "state_value": 14, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeExtraload", - "state_draw_graph": 0, - "state_value": 15, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusPeerUnitState", - "state_descr": "activeHandback", - "state_draw_graph": 0, - "state_value": 16, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "notKnown", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "initialization", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "negotiation", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyCold", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyColdConfig", - "state_draw_graph": 0, - "state_value": 6, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyColdFileSys", - "state_draw_graph": 0, - "state_value": 7, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyColdBulk", - "state_draw_graph": 0, - "state_value": 8, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "standbyHot", - "state_draw_graph": 0, - "state_value": 9, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeFast", - "state_draw_graph": 0, - "state_value": 10, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeDrain", - "state_draw_graph": 0, - "state_value": 11, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activePreconfig", - "state_draw_graph": 0, - "state_value": 12, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activePostconfig", - "state_draw_graph": 0, - "state_value": 13, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "active", - "state_draw_graph": 0, - "state_value": 14, - "state_generic_value": 0 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeExtraload", - "state_draw_graph": 0, - "state_value": 15, - "state_generic_value": 1 - }, - { - "state_name": "cRFStatusUnitState", - "state_descr": "activeHandback", - "state_draw_graph": 0, - "state_value": 16, - "state_generic_value": 1 - } - ] - } + "poller": "matches discovery" }, "bgp-peers": { "discovery": { diff --git a/tests/data/iosxe_c9800.json b/tests/data/iosxe_c9800.json index 022c65bfb3..9e7a1f3e13 100644 --- a/tests/data/iosxe_c9800.json +++ b/tests/data/iosxe_c9800.json @@ -17,7 +17,8 @@ "icon": "cisco.svg" } ] - } + }, + "poller": "matches discovery" }, "ports": { "discovery": { @@ -1123,6 +1124,1110 @@ "ifOutMulticastPkts_rate": null } ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/0", + "ifName": "Tw0/0/0", + "portName": null, + "ifIndex": 1, + "ifSpeed": 2500000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/0", + "ifPhysAddress": "8c1e806f236c", + "ifLastChange": 2155, + "ifVlan": "1", + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/1", + "ifName": "Tw0/0/1", + "portName": null, + "ifIndex": 2, + "ifSpeed": 2500000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/1", + "ifPhysAddress": "8c1e806f236d", + "ifLastChange": 2164, + "ifVlan": "1", + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/2", + "ifName": "Tw0/0/2", + "portName": null, + "ifIndex": 3, + "ifSpeed": 2500000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/2", + "ifPhysAddress": "8c1e806f236e", + "ifLastChange": 2164, + "ifVlan": "1", + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TwoGigabitEthernet0/0/3", + "ifName": "Tw0/0/3", + "portName": null, + "ifIndex": 4, + "ifSpeed": 2500000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "TwoGigabitEthernet0/0/3", + "ifPhysAddress": "8c1e806f236f", + "ifLastChange": 2165, + "ifVlan": "1", + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet0/1/0", + "ifName": "Te0/1/0", + "portName": null, + "ifIndex": 5, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "***TO MAR-COR-SW-1 Ten 2/0/9***", + "ifPhysAddress": "8c1e806f2370", + "ifLastChange": 5142, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 4671317769, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 8618094314, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 2354465580600, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 7121430672619, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "TenGigabitEthernet0/1/1", + "ifName": "Te0/1/1", + "portName": null, + "ifIndex": 6, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "***TO MAR-COR-SW-1 Ten 1/0/9***", + "ifPhysAddress": "8c1e806f2371", + "ifLastChange": 5365, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 9021399224, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5319195344, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 8236068738117, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4564050640614, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "GigabitEthernet0", + "ifName": "Gi0", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "GigabitEthernet0", + "ifPhysAddress": "8c1e806f2361", + "ifLastChange": 2215, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Null0", + "ifName": "Nu0", + "portName": null, + "ifIndex": 9, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "other", + "ifAlias": "Null0", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan1", + "ifName": "Vl1", + "portName": null, + "ifIndex": 10, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "Vlan1", + "ifPhysAddress": "8c1e806f236b", + "ifLastChange": 2219, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Vlan52", + "ifName": "Vl52", + "portName": null, + "ifIndex": 11, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "Vlan52", + "ifPhysAddress": "8c1e806f236b", + "ifLastChange": 5342, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 3423380520, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 7082622858, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1577047576050, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 7391100678772, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Port-channel9", + "ifName": "Po9", + "portName": null, + "ifIndex": 12, + "ifSpeed": 20000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "***TO MAR-COR-SW-1***", + "ifPhysAddress": "8c1e806f2370", + "ifLastChange": 5341, + "ifVlan": "52", + "ifTrunk": "dot1Q", + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 13692716993, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13937289658, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 10590534318717, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 11685481313233, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] } }, "ports-stack": { @@ -1715,7 +2820,8 @@ "ifIndex": null } ] - } + }, + "poller": "matches discovery" }, "processors": { "discovery": { @@ -1853,7 +2959,8 @@ "processor_perc_warn": 75 } ] - } + }, + "poller": "matches discovery" }, "mempools": { "discovery": { @@ -1899,7 +3006,8 @@ "mempool_perc_warn": 90 } ] - } + }, + "poller": "matches discovery" }, "vrf": { "discovery": { @@ -1929,7 +3037,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1941,7 +3049,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "cefcFRUPowerOperStatus" }, { "sensor_deleted": 0, @@ -1954,7 +3062,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1966,7 +3074,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonFanState" }, { "sensor_deleted": 0, @@ -1979,7 +3087,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1991,7 +3099,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonFanState" }, { "sensor_deleted": 0, @@ -2004,7 +3112,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2016,7 +3124,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonFanState" }, { "sensor_deleted": 0, @@ -2029,7 +3137,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2041,7 +3149,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonSupplyState" }, { "sensor_deleted": 0, @@ -2054,7 +3162,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2066,7 +3174,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonSupplyState" }, { "sensor_deleted": 0, @@ -2079,7 +3187,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2091,7 +3199,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonTemperatureState" }, { "sensor_deleted": 0, @@ -2104,7 +3212,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2116,7 +3224,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonTemperatureState" }, { "sensor_deleted": 0, @@ -2129,7 +3237,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2141,7 +3249,32 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "ciscoEnvMonTemperatureState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" }, { "sensor_deleted": 0, @@ -2154,7 +3287,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2166,7 +3299,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "cRFStatusPeerUnitState" }, { "sensor_deleted": 0, @@ -2179,7 +3312,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2191,7 +3324,7 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": null + "state_name": "cRFStatusUnitState" }, { "sensor_deleted": 0, @@ -2207,7 +3340,7 @@ "sensor_current": 39, "sensor_limit": 60, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 29, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2232,7 +3365,7 @@ "sensor_current": 37, "sensor_limit": 64, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 27, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2257,7 +3390,7 @@ "sensor_current": 54, "sensor_limit": 104, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 44, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2355,9 +3488,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 39, - "sensor_limit": null, + "sensor_limit": 59, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 29, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2380,9 +3513,9 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 37, - "sensor_limit": null, + "sensor_limit": 57, "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 27, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2405,6 +3538,727 @@ "sensor_divisor": 1, "sensor_multiplier": 1, "sensor_current": 55, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 45, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (other)", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (admin)", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (denied)", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (environmental)", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (temperature)", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (fan)", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (fan failed)", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (cooling)", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (connector rating)", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (no inline power)", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "shutdown", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "notFunctioning", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "shutdown", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "notFunctioning", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "shutdown", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "notFunctioning", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.117.1.1.2.1.2.4", + "sensor_index": "4", + "sensor_type": "cefcFRUPowerOperStatus", + "sensor_descr": "Chassis 1 Power Supply Module 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cefcFRUPowerOperStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.24", + "sensor_index": "24", + "sensor_type": "ciscoEnvMonFanState", + "sensor_descr": "Chassis 1 Fan Tray", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "24", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.35", + "sensor_index": "35", + "sensor_type": "ciscoEnvMonFanState", + "sensor_descr": "Chassis 1 Fan 1/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "35", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.4.1.3.36", + "sensor_index": "36", + "sensor_type": "ciscoEnvMonFanState", + "sensor_descr": "Chassis 1 Fan 1/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "36", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonFanState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.14", + "sensor_index": "14", + "sensor_type": "ciscoEnvMonSupplyState", + "sensor_descr": "Chassis 1 Power Supply 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "14", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonSupplyState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.5.1.3.4", + "sensor_index": "4", + "sensor_type": "ciscoEnvMonSupplyState", + "sensor_descr": "Chassis 1 Power Supply Module 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonSupplyState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2001", + "sensor_index": "2001", + "sensor_type": "ciscoEnvMonTemperatureState", + "sensor_descr": "Temp: BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonTemperatureState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2002", + "sensor_index": "2002", + "sensor_type": "ciscoEnvMonTemperatureState", + "sensor_descr": "Temp: BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonTemperatureState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.6.2003", + "sensor_index": "2003", + "sensor_type": "ciscoEnvMonTemperatureState", + "sensor_descr": "Temp: CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -2416,7 +4270,799 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", + "state_name": "ciscoEnvMonTemperatureState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.4.0", + "sensor_index": "0", + "sensor_type": "cRFStatusPeerUnitState", + "sensor_descr": "VSS Peer State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFStatusPeerUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.1.2.0", + "sensor_index": "0", + "sensor_type": "cRFStatusUnitState", + "sensor_descr": "VSS Device State", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 14, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFStatusUnitState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2001", + "sensor_index": "2001", + "sensor_type": "cisco", + "sensor_descr": "Temp: BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 29, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2002", + "sensor_index": "2002", + "sensor_type": "cisco", + "sensor_descr": "Temp: BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 64, + "sensor_limit_warn": null, + "sensor_limit_low": 27, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.13.1.3.1.3.2003", + "sensor_index": "2003", + "sensor_type": "cisco", + "sensor_descr": "Temp: CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 54, + "sensor_limit": 104, + "sensor_limit_warn": null, + "sensor_limit_low": 44, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2001", + "sensor_index": "2001", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module R0 - BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 57, + "sensor_limit_warn": 54, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": "2000", + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2002", + "sensor_index": "2002", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module R0 - BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 61, + "sensor_limit_warn": 58, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": "2000", + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.91.1.1.1.1.4.2003", + "sensor_index": "2003", + "sensor_type": "cisco-entity-sensor", + "sensor_descr": "Module R0 - CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 54, + "sensor_limit": 99, + "sensor_limit_warn": 94, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -1, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": "2000", + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.2001", + "sensor_index": "2001", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: BRDTEMP1 R0/0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": 59, + "sensor_limit_warn": null, + "sensor_limit_low": 29, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.2002", + "sensor_index": "2002", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: BRDTEMP2 R0/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 37, + "sensor_limit": 57, + "sensor_limit_warn": null, + "sensor_limit_low": 27, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2002", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.2003", + "sensor_index": "2003", + "sensor_type": "entity-sensor", + "sensor_descr": "Temp: CPU Die R0/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 55, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 45, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "2003", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (other)", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (admin)", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (denied)", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (environmental)", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (temperature)", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (fan)", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "failed", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (fan failed)", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (cooling)", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "off (connector rating)", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 2 + }, + { + "state_name": "cefcFRUPowerOperStatus", + "state_descr": "on (no inline power)", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "shutdown", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonFanState", + "state_descr": "notFunctioning", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "shutdown", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonSupplyState", + "state_descr": "notFunctioning", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "shutdown", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "ciscoEnvMonTemperatureState", + "state_descr": "notFunctioning", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 2 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusPeerUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "notKnown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "initialization", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "negotiation", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyCold", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdConfig", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdFileSys", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyColdBulk", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "standbyHot", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeFast", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeDrain", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePreconfig", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activePostconfig", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "active", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeExtraload", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "cRFStatusUnitState", + "state_descr": "activeHandback", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 } ] } @@ -2438,6 +5084,23 @@ "storage_deleted": 0 } ] + }, + "poller": { + "storage": [ + { + "storage_mib": "cisco-flash", + "storage_index": "1.1", + "storage_type": "flash", + "storage_descr": "bootflash(bootflash):", + "storage_size": 26458804224, + "storage_units": 1, + "storage_used": 9448710144, + "storage_free": 17010094080, + "storage_perc": 36, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] } }, "discovery-protocols": { diff --git a/tests/data/iosxe_ir1101.json b/tests/data/iosxe_ir1101.json index bbbce00fbc..506a418ae7 100644 --- a/tests/data/iosxe_ir1101.json +++ b/tests/data/iosxe_ir1101.json @@ -351,6 +351,31 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4130", + "sensor_index": "4130", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.013536, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4130", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -401,6 +426,56 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4131", + "sensor_index": "4131", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -6.8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4131", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4132", + "sensor_index": "4132", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -7.7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4132", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -412,7 +487,7 @@ "group": "Modem on Cellular0/1/0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 12, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -437,7 +512,7 @@ "group": "Modem on Cellular0/1/0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -462,7 +537,7 @@ "group": "Modem on Cellular0/1/0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 10, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -487,7 +562,7 @@ "group": "Modem on Cellular0/1/0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -512,7 +587,7 @@ "group": "Modem on Cellular0/1/0", "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 3, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -537,7 +612,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -562,7 +637,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -576,6 +651,31 @@ "rrd_type": "GAUGE", "state_name": "ciscoEnvMonSupplyState" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -587,7 +687,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -612,7 +712,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -701,6 +801,56 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4001", + "sensor_index": "4001", + "sensor_type": "entity-sensor", + "sensor_descr": "Slot 0 - Temp: TS1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4128", + "sensor_index": "4128", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 34.574, + "sensor_limit": 54.574, + "sensor_limit_warn": null, + "sensor_limit_low": 24.574, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4128", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "voltage", @@ -725,6 +875,31 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4129", + "sensor_index": "4129", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.2744, + "sensor_limit": 3.76556, + "sensor_limit_warn": null, + "sensor_limit_low": 2.78324, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4129", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null } ], "state_indexes": [ @@ -1148,6 +1323,62 @@ "state_value": 6, "state_generic_value": 2 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -1451,6 +1682,31 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4130", + "sensor_index": "4130", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Bias Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.013536, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4130", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -1501,6 +1757,56 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4131", + "sensor_index": "4131", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Tx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -6.8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4131", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4132", + "sensor_index": "4132", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Rx Power", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -7.7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4132", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -1521,7 +1827,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4002", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmCurrentBand" @@ -1546,7 +1852,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4002", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmCurrentRoamingStatus" @@ -1571,7 +1877,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4002", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmPacketService" @@ -1596,7 +1902,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4002", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gGsmSimStatus" @@ -1621,7 +1927,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4002", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "c3gModemStatus" @@ -1646,7 +1952,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -1671,11 +1977,36 @@ "sensor_custom": "No", "entPhysicalIndex": "3", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "ciscoEnvMonSupplyState" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -1696,7 +2027,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -1721,7 +2052,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -1801,6 +2132,56 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4001", + "sensor_index": "4001", + "sensor_type": "entity-sensor", + "sensor_descr": "Slot 0 - Temp: TS1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 41, + "sensor_limit": 61, + "sensor_limit_warn": null, + "sensor_limit_low": 31, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4001", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4128", + "sensor_index": "4128", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Temperature", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 34.574, + "sensor_limit": 54.574, + "sensor_limit_warn": null, + "sensor_limit_low": 24.574, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4128", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "voltage", @@ -1825,6 +2206,31 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.2.1.99.1.1.1.4.4129", + "sensor_index": "4129", + "sensor_type": "entity-sensor", + "sensor_descr": "Subslot 0/0 Transceiver 0 Supply Voltage", + "group": null, + "sensor_divisor": 10000, + "sensor_multiplier": 1, + "sensor_current": 3.2744, + "sensor_limit": 3.76556, + "sensor_limit_warn": null, + "sensor_limit_low": 2.78324, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "4129", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null } ], "state_indexes": [ @@ -2248,6 +2654,62 @@ "state_value": 6, "state_generic_value": 2 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", diff --git a/tests/data/iosxr.json b/tests/data/iosxr.json index 3800fc3242..05497a59c9 100644 --- a/tests/data/iosxr.json +++ b/tests/data/iosxr.json @@ -1563,7 +1563,7 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1586,7 +1586,7 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1609,7 +1609,7 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1632,7 +1632,7 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1655,7 +1655,7 @@ "bgpPeerRemoteAs": 65686, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1678,7 +1678,7 @@ "bgpPeerRemoteAs": 65755, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1701,7 +1701,7 @@ "bgpPeerRemoteAs": 65384, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1724,7 +1724,7 @@ "bgpPeerRemoteAs": 65385, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1747,7 +1747,7 @@ "bgpPeerRemoteAs": 65385, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1770,7 +1770,7 @@ "bgpPeerRemoteAs": 65257, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1793,7 +1793,7 @@ "bgpPeerRemoteAs": 65257, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1816,7 +1816,7 @@ "bgpPeerRemoteAs": 65005, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1839,7 +1839,7 @@ "bgpPeerRemoteAs": 65537, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1862,7 +1862,7 @@ "bgpPeerRemoteAs": 65577, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1885,7 +1885,7 @@ "bgpPeerRemoteAs": 65003, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1908,7 +1908,7 @@ "bgpPeerRemoteAs": 65002, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1931,7 +1931,7 @@ "bgpPeerRemoteAs": 65451, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1954,7 +1954,7 @@ "bgpPeerRemoteAs": 65004, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -1977,7 +1977,7 @@ "bgpPeerRemoteAs": 65604, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2000,7 +2000,7 @@ "bgpPeerRemoteAs": 65276, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2023,7 +2023,7 @@ "bgpPeerRemoteAs": 65736, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2046,7 +2046,7 @@ "bgpPeerRemoteAs": 65550, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2069,7 +2069,7 @@ "bgpPeerRemoteAs": 65010, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2092,7 +2092,7 @@ "bgpPeerRemoteAs": 65704, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2115,7 +2115,7 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2138,7 +2138,7 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2161,7 +2161,7 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2184,7 +2184,7 @@ "bgpPeerRemoteAs": 65164, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2207,7 +2207,7 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2230,7 +2230,7 @@ "bgpPeerRemoteAs": 65164, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2253,7 +2253,7 @@ "bgpPeerRemoteAs": 65537, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2276,7 +2276,7 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -2299,7 +2299,7 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -9909,8 +9909,8 @@ "ifName": "Null0", "portName": null, "ifIndex": 2, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10309,8 +10309,8 @@ "ifName": "dwdm0/0/0/0", "portName": null, "ifIndex": 11, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10409,8 +10409,8 @@ "ifName": "dwdm0/0/0/1", "portName": null, "ifIndex": 12, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10509,8 +10509,8 @@ "ifName": "dwdm0/0/0/2", "portName": null, "ifIndex": 13, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10609,8 +10609,8 @@ "ifName": "dwdm0/0/0/3", "portName": null, "ifIndex": 14, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10709,8 +10709,8 @@ "ifName": "dwdm0/0/0/4", "portName": null, "ifIndex": 15, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10809,8 +10809,8 @@ "ifName": "dwdm0/0/0/5", "portName": null, "ifIndex": 16, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10909,8 +10909,8 @@ "ifName": "dwdm0/0/0/6", "portName": null, "ifIndex": 17, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11009,8 +11009,8 @@ "ifName": "dwdm0/0/0/7", "portName": null, "ifIndex": 18, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11109,8 +11109,8 @@ "ifName": "dwdm0/0/0/8", "portName": null, "ifIndex": 19, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11209,8 +11209,8 @@ "ifName": "dwdm0/0/0/9", "portName": null, "ifIndex": 20, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11309,8 +11309,8 @@ "ifName": "dwdm0/0/0/10", "portName": null, "ifIndex": 21, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11409,8 +11409,8 @@ "ifName": "dwdm0/0/0/11", "portName": null, "ifIndex": 22, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11509,8 +11509,8 @@ "ifName": "dwdm0/0/0/12", "portName": null, "ifIndex": 23, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11609,8 +11609,8 @@ "ifName": "dwdm0/0/0/13", "portName": null, "ifIndex": 24, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11709,8 +11709,8 @@ "ifName": "dwdm0/0/0/14", "portName": null, "ifIndex": 25, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11809,8 +11809,8 @@ "ifName": "dwdm0/0/0/15", "portName": null, "ifIndex": 26, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -11909,8 +11909,8 @@ "ifName": "dwdm0/0/0/16", "portName": null, "ifIndex": 27, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -12009,8 +12009,8 @@ "ifName": "dwdm0/0/0/17", "portName": null, "ifIndex": 28, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -12109,8 +12109,8 @@ "ifName": "dwdm0/0/0/18", "portName": null, "ifIndex": 29, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -12209,8 +12209,8 @@ "ifName": "dwdm0/0/0/19", "portName": null, "ifIndex": 30, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -14309,8 +14309,8 @@ "ifName": "Loopback0", "portName": null, "ifIndex": 71, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -22420,13 +22420,13 @@ "cipMacHCSwitchedBytes_input_delta": 6046746, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 70311, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 70311, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -22497,13 +22497,13 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 2790062, "cipMacHCSwitchedBytes_output_prev": null, "cipMacHCSwitchedBytes_output_delta": 2790062, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 45001, "cipMacHCSwitchedPkts_output_prev": null, "cipMacHCSwitchedPkts_output_delta": 45001, @@ -22537,16 +22537,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -22580,13 +22580,13 @@ "cipMacHCSwitchedBytes_input_delta": 574157640, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 1400003, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 1400003, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -22717,16 +22717,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -22777,13 +22777,13 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 20558001, "cipMacHCSwitchedBytes_output_prev": null, "cipMacHCSwitchedBytes_output_delta": 20558001, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 41454, "cipMacHCSwitchedPkts_output_prev": null, "cipMacHCSwitchedPkts_output_delta": 41454, @@ -22820,13 +22820,13 @@ "cipMacHCSwitchedBytes_input_delta": 34864611383114, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 24480561934, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 24480561934, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -22997,16 +22997,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -23177,16 +23177,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -23257,13 +23257,13 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 15029531947, "cipMacHCSwitchedBytes_output_prev": null, "cipMacHCSwitchedBytes_output_delta": 15029531947, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 36612521, "cipMacHCSwitchedPkts_output_prev": null, "cipMacHCSwitchedPkts_output_delta": 36612521, @@ -23357,13 +23357,13 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 1799779443, "cipMacHCSwitchedBytes_output_prev": null, "cipMacHCSwitchedBytes_output_delta": 1799779443, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 2779293, "cipMacHCSwitchedPkts_output_prev": null, "cipMacHCSwitchedPkts_output_delta": 2779293, @@ -23540,13 +23540,13 @@ "cipMacHCSwitchedBytes_input_delta": 1007, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 7, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 7, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -23560,13 +23560,13 @@ "cipMacHCSwitchedBytes_input_delta": 19628822807, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 19393311, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 19393311, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 40 }, { @@ -23680,13 +23680,13 @@ "cipMacHCSwitchedBytes_input_delta": 2071080, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 23012, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 23012, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -23777,13 +23777,13 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 76812200, "cipMacHCSwitchedBytes_output_prev": null, "cipMacHCSwitchedBytes_output_delta": 76812200, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 744782, "cipMacHCSwitchedPkts_output_prev": null, "cipMacHCSwitchedPkts_output_delta": 744782, @@ -23820,13 +23820,13 @@ "cipMacHCSwitchedBytes_input_delta": 18797606124, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 17085963, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 17085963, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24000,13 +24000,13 @@ "cipMacHCSwitchedBytes_input_delta": 2791307010, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 2123443, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 2123443, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24160,13 +24160,13 @@ "cipMacHCSwitchedBytes_input_delta": 960930, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 10677, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 10677, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24180,13 +24180,13 @@ "cipMacHCSwitchedBytes_input_delta": 963810, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 10709, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 10709, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24240,13 +24240,13 @@ "cipMacHCSwitchedBytes_input_delta": 73319551, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 198622, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 198622, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24340,13 +24340,13 @@ "cipMacHCSwitchedBytes_input_delta": 49527495200, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 55365647, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 55365647, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24420,13 +24420,13 @@ "cipMacHCSwitchedBytes_input_delta": 2131470, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 23683, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 23683, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24440,13 +24440,13 @@ "cipMacHCSwitchedBytes_input_delta": 2112930, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 23477, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 23477, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24640,13 +24640,13 @@ "cipMacHCSwitchedBytes_input_delta": 2495160, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 27724, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 27724, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24680,13 +24680,13 @@ "cipMacHCSwitchedBytes_input_delta": 2171880, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 24132, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 24132, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24740,13 +24740,13 @@ "cipMacHCSwitchedBytes_input_delta": 256950, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 2855, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 2855, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24820,13 +24820,13 @@ "cipMacHCSwitchedBytes_input_delta": 781839772218, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 521537950, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 521537950, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -24980,13 +24980,13 @@ "cipMacHCSwitchedBytes_input_delta": 203779170, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 2264213, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 2264213, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25040,13 +25040,13 @@ "cipMacHCSwitchedBytes_input_delta": 14524882381, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 16249434, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 16249434, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25160,13 +25160,13 @@ "cipMacHCSwitchedBytes_input_delta": 64, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 1, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 1, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25320,13 +25320,13 @@ "cipMacHCSwitchedBytes_input_delta": 600490689, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 1551298, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 1551298, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25460,13 +25460,13 @@ "cipMacHCSwitchedBytes_input_delta": 855973410, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 2138892, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 2138892, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25540,13 +25540,13 @@ "cipMacHCSwitchedBytes_input_delta": 243900, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 2710, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 2710, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25760,13 +25760,13 @@ "cipMacHCSwitchedBytes_input_delta": 832328, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 10880, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 10880, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25860,13 +25860,13 @@ "cipMacHCSwitchedBytes_input_delta": 11144056752, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 13834838, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 13834838, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25900,13 +25900,13 @@ "cipMacHCSwitchedBytes_input_delta": 139629993295, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 98006376, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 98006376, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25940,13 +25940,13 @@ "cipMacHCSwitchedBytes_input_delta": 48819, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 111, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 111, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -25960,13 +25960,13 @@ "cipMacHCSwitchedBytes_input_delta": 784994695, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 1319058, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 1319058, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26000,13 +26000,13 @@ "cipMacHCSwitchedBytes_input_delta": 38386957146, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 52839678, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 52839678, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26160,13 +26160,13 @@ "cipMacHCSwitchedBytes_input_delta": 776299576, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 2647523, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 2647523, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26280,13 +26280,13 @@ "cipMacHCSwitchedBytes_input_delta": 504540, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 5606, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 5606, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26300,13 +26300,13 @@ "cipMacHCSwitchedBytes_input_delta": 553843408448, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 519696970, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 519696970, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26377,16 +26377,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26517,16 +26517,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26680,13 +26680,13 @@ "cipMacHCSwitchedBytes_input_delta": 9028350, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 100315, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 100315, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26720,13 +26720,13 @@ "cipMacHCSwitchedBytes_input_delta": 2056230, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 22847, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 22847, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26737,16 +26737,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26760,13 +26760,13 @@ "cipMacHCSwitchedBytes_input_delta": 10374059316, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 11062812, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 11062812, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26780,13 +26780,13 @@ "cipMacHCSwitchedBytes_input_delta": 3315717, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 36841, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 36841, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26880,13 +26880,13 @@ "cipMacHCSwitchedBytes_input_delta": 49846, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 609, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 609, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26920,13 +26920,13 @@ "cipMacHCSwitchedBytes_input_delta": 3855, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 15, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 15, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -26940,13 +26940,13 @@ "cipMacHCSwitchedBytes_input_delta": 18667569855, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 19649114, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 19649114, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27000,13 +27000,13 @@ "cipMacHCSwitchedBytes_input_delta": 7474, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 101, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 101, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27117,13 +27117,13 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 1916213098, "cipMacHCSwitchedBytes_output_prev": null, "cipMacHCSwitchedBytes_output_delta": 1916213098, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 5051655, "cipMacHCSwitchedPkts_output_prev": null, "cipMacHCSwitchedPkts_output_delta": 5051655, @@ -27140,13 +27140,13 @@ "cipMacHCSwitchedBytes_input_delta": 351289480504, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 233533989, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 233533989, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27160,13 +27160,13 @@ "cipMacHCSwitchedBytes_input_delta": 943470, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 10483, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 10483, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27177,16 +27177,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27200,13 +27200,13 @@ "cipMacHCSwitchedBytes_input_delta": 90, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 1, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 1, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27300,13 +27300,13 @@ "cipMacHCSwitchedBytes_input_delta": 3431, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 7, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 7, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27480,13 +27480,13 @@ "cipMacHCSwitchedBytes_input_delta": 496453720, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 1192630, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 1192630, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27500,13 +27500,13 @@ "cipMacHCSwitchedBytes_input_delta": 4868, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 50, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 50, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27520,13 +27520,13 @@ "cipMacHCSwitchedBytes_input_delta": 65790, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 731, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 731, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27537,16 +27537,16 @@ "bps_in": 0, "cipMacHCSwitchedBytes_input": 0, "cipMacHCSwitchedBytes_input_prev": null, - "cipMacHCSwitchedBytes_input_delta": null, + "cipMacHCSwitchedBytes_input_delta": 0, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 0, "cipMacHCSwitchedPkts_input_prev": null, - "cipMacHCSwitchedPkts_input_delta": null, + "cipMacHCSwitchedPkts_input_delta": 0, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27580,13 +27580,13 @@ "cipMacHCSwitchedBytes_input_delta": 828720, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 9208, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 9208, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27660,13 +27660,13 @@ "cipMacHCSwitchedBytes_input_delta": 9038220, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 100424, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 100424, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27780,13 +27780,13 @@ "cipMacHCSwitchedBytes_input_delta": 524, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 6, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 6, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27820,13 +27820,13 @@ "cipMacHCSwitchedBytes_input_delta": 749467, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 3107, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 3107, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 }, { @@ -27880,13 +27880,13 @@ "cipMacHCSwitchedBytes_input_delta": 341632693106, "cipMacHCSwitchedBytes_output": 0, "cipMacHCSwitchedBytes_output_prev": null, - "cipMacHCSwitchedBytes_output_delta": null, + "cipMacHCSwitchedBytes_output_delta": 0, "cipMacHCSwitchedPkts_input": 405728548, "cipMacHCSwitchedPkts_input_prev": null, "cipMacHCSwitchedPkts_input_delta": 405728548, "cipMacHCSwitchedPkts_output": 0, "cipMacHCSwitchedPkts_output_prev": null, - "cipMacHCSwitchedPkts_output_delta": null, + "cipMacHCSwitchedPkts_output_delta": 0, "ifIndex": 72 } ] diff --git a/tests/data/iosxr_asr9001.json b/tests/data/iosxr_asr9001.json index b9defc5e6a..b9935b6bb9 100644 --- a/tests/data/iosxr_asr9001.json +++ b/tests/data/iosxr_asr9001.json @@ -13847,7 +13847,7 @@ "group": null, "sensor_divisor": 10000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -13922,7 +13922,7 @@ "group": null, "sensor_divisor": 10000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14697,7 +14697,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14722,7 +14722,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14747,7 +14747,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14772,7 +14772,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14797,7 +14797,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14822,7 +14822,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14847,7 +14847,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14872,7 +14872,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14897,7 +14897,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14922,7 +14922,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14936,6 +14936,31 @@ "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -14947,7 +14972,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -14972,7 +14997,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -17672,6 +17697,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -18145,7 +18226,7 @@ "sensor_custom": "No", "entPhysicalIndex": "25", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -18220,7 +18301,7 @@ "sensor_custom": "No", "entPhysicalIndex": "25", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -18995,7 +19076,7 @@ "sensor_custom": "No", "entPhysicalIndex": "14585855", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19020,7 +19101,7 @@ "sensor_custom": "No", "entPhysicalIndex": "15526104", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19045,7 +19126,7 @@ "sensor_custom": "No", "entPhysicalIndex": "21657197", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19070,7 +19151,7 @@ "sensor_custom": "No", "entPhysicalIndex": "30054631", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19095,7 +19176,7 @@ "sensor_custom": "No", "entPhysicalIndex": "31415605", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19120,7 +19201,7 @@ "sensor_custom": "No", "entPhysicalIndex": "37336673", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19145,7 +19226,7 @@ "sensor_custom": "No", "entPhysicalIndex": "49125802", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19170,7 +19251,7 @@ "sensor_custom": "No", "entPhysicalIndex": "59316821", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19195,7 +19276,7 @@ "sensor_custom": "No", "entPhysicalIndex": "66227682", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -19220,11 +19301,36 @@ "sensor_custom": "No", "entPhysicalIndex": "66531208", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -19245,7 +19351,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -19270,7 +19376,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -21961,6 +22067,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", diff --git a/tests/data/iosxr_asr9010.json b/tests/data/iosxr_asr9010.json index c035d1d386..53e28bdf41 100644 --- a/tests/data/iosxr_asr9010.json +++ b/tests/data/iosxr_asr9010.json @@ -20383,7 +20383,7 @@ "sensor_current": 0.036, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -20833,7 +20833,7 @@ "sensor_current": 0.0258, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -20955,7 +20955,7 @@ "group": null, "sensor_divisor": 1000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -21430,7 +21430,7 @@ "group": null, "sensor_divisor": 1000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -21455,7 +21455,7 @@ "group": null, "sensor_divisor": 1000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -21830,7 +21830,7 @@ "group": null, "sensor_divisor": 1000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -21855,7 +21855,7 @@ "group": null, "sensor_divisor": 1000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -21880,7 +21880,7 @@ "group": null, "sensor_divisor": 1000000, "sensor_multiplier": 1000, - "sensor_current": -60, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23130,7 +23130,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23155,7 +23155,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23180,7 +23180,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23205,7 +23205,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23230,7 +23230,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23255,7 +23255,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23280,7 +23280,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23305,7 +23305,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23330,7 +23330,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23355,7 +23355,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23380,7 +23380,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23405,7 +23405,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23430,7 +23430,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23455,7 +23455,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23480,7 +23480,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23505,7 +23505,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23530,7 +23530,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23555,7 +23555,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23580,7 +23580,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23605,7 +23605,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23630,7 +23630,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23655,7 +23655,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23680,7 +23680,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23705,7 +23705,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23730,7 +23730,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23755,7 +23755,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23780,7 +23780,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23805,7 +23805,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23830,7 +23830,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23855,7 +23855,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23880,7 +23880,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 8, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23905,7 +23905,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 9, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -23930,7 +23930,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -31228,7 +31228,7 @@ "sensor_current": 0.036, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -31678,7 +31678,7 @@ "sensor_current": 0.0258, "sensor_limit": 0.1, "sensor_limit_warn": 0.08, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -31809,7 +31809,7 @@ "sensor_custom": "No", "entPhysicalIndex": "50", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -32284,7 +32284,7 @@ "sensor_custom": "No", "entPhysicalIndex": "49", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -32309,7 +32309,7 @@ "sensor_custom": "No", "entPhysicalIndex": "80", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -32684,7 +32684,7 @@ "sensor_custom": "No", "entPhysicalIndex": "49", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -32709,7 +32709,7 @@ "sensor_custom": "No", "entPhysicalIndex": "80", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -32734,7 +32734,7 @@ "sensor_custom": "No", "entPhysicalIndex": "50", "entPhysicalIndex_measured": "ports", - "sensor_prev": null, + "sensor_prev": 0, "user_func": "mw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -33984,7 +33984,7 @@ "sensor_custom": "No", "entPhysicalIndex": "12626805", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34009,7 +34009,7 @@ "sensor_custom": "No", "entPhysicalIndex": "13644213", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34034,7 +34034,7 @@ "sensor_custom": "No", "entPhysicalIndex": "15752416", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34059,7 +34059,7 @@ "sensor_custom": "No", "entPhysicalIndex": "20308747", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34084,7 +34084,7 @@ "sensor_custom": "No", "entPhysicalIndex": "20702176", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34109,7 +34109,7 @@ "sensor_custom": "No", "entPhysicalIndex": "25245506", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34134,7 +34134,7 @@ "sensor_custom": "No", "entPhysicalIndex": "28667368", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34159,7 +34159,7 @@ "sensor_custom": "No", "entPhysicalIndex": "29992163", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34184,7 +34184,7 @@ "sensor_custom": "No", "entPhysicalIndex": "32573926", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34209,7 +34209,7 @@ "sensor_custom": "No", "entPhysicalIndex": "33243763", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34234,7 +34234,7 @@ "sensor_custom": "No", "entPhysicalIndex": "37425837", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34259,7 +34259,7 @@ "sensor_custom": "No", "entPhysicalIndex": "37780378", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34284,7 +34284,7 @@ "sensor_custom": "No", "entPhysicalIndex": "38193523", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34309,7 +34309,7 @@ "sensor_custom": "No", "entPhysicalIndex": "41901182", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34334,7 +34334,7 @@ "sensor_custom": "No", "entPhysicalIndex": "43477411", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34359,7 +34359,7 @@ "sensor_custom": "No", "entPhysicalIndex": "46460939", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34384,7 +34384,7 @@ "sensor_custom": "No", "entPhysicalIndex": "46850942", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34409,7 +34409,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4860170", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34434,7 +34434,7 @@ "sensor_custom": "No", "entPhysicalIndex": "5375401", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34459,7 +34459,7 @@ "sensor_custom": "No", "entPhysicalIndex": "53949430", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34484,7 +34484,7 @@ "sensor_custom": "No", "entPhysicalIndex": "56148731", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34509,7 +34509,7 @@ "sensor_custom": "No", "entPhysicalIndex": "56485406", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34534,7 +34534,7 @@ "sensor_custom": "No", "entPhysicalIndex": "58899190", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34559,7 +34559,7 @@ "sensor_custom": "No", "entPhysicalIndex": "59315058", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34584,7 +34584,7 @@ "sensor_custom": "No", "entPhysicalIndex": "60375226", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34609,7 +34609,7 @@ "sensor_custom": "No", "entPhysicalIndex": "60459837", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34634,7 +34634,7 @@ "sensor_custom": "No", "entPhysicalIndex": "6606577", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34659,7 +34659,7 @@ "sensor_custom": "No", "entPhysicalIndex": "8198755", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34684,7 +34684,7 @@ "sensor_custom": "No", "entPhysicalIndex": "8796468", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34709,7 +34709,7 @@ "sensor_custom": "No", "entPhysicalIndex": "8913339", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -34734,7 +34734,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFCfgRedundancyOperMode" @@ -34759,7 +34759,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -34784,7 +34784,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" diff --git a/tests/data/iosxr_asr9901.json b/tests/data/iosxr_asr9901.json index 6b5c2e4953..1acd79cbf6 100644 --- a/tests/data/iosxr_asr9901.json +++ b/tests/data/iosxr_asr9901.json @@ -10293,9 +10293,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -10345,7 +10345,7 @@ "sensor_current": 0.034, "sensor_limit": 0.1, "sensor_limit_warn": 0, - "sensor_limit_low": 0.0001, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -10418,10 +10418,10 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1000, "sensor_current": -60, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, + "sensor_limit": -60, + "sensor_limit_warn": -60, + "sensor_limit_low": -60, + "sensor_limit_low_warn": -60, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "2994446", @@ -10443,10 +10443,10 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1000, "sensor_current": -60, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, + "sensor_limit": -60, + "sensor_limit_warn": -60, + "sensor_limit_low": -60, + "sensor_limit_low_warn": -60, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "2994458", @@ -10893,9 +10893,9 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -10918,9 +10918,9 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -11042,7 +11042,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11067,7 +11067,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11092,7 +11092,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11117,7 +11117,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11142,7 +11142,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11167,7 +11167,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11192,7 +11192,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11217,7 +11217,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11242,7 +11242,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11267,7 +11267,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11292,7 +11292,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11317,7 +11317,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11331,6 +11331,31 @@ "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -11342,7 +11367,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11367,7 +11392,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11768,7 +11793,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 20, + "sensor_limit": 0, "sensor_limit_warn": 0, "sensor_limit_low": -5, "sensor_limit_low_warn": -1, @@ -15167,6 +15192,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -15582,9 +15663,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -15634,7 +15715,7 @@ "sensor_current": 0.034, "sensor_limit": 0.1, "sensor_limit_warn": 0, - "sensor_limit_low": 0.0001, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -15707,10 +15788,10 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1000, "sensor_current": -60, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, + "sensor_limit": -60, + "sensor_limit_warn": -60, + "sensor_limit_low": -60, + "sensor_limit_low_warn": -60, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "2994446", @@ -15732,10 +15813,10 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1000, "sensor_current": -60, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, + "sensor_limit": -60, + "sensor_limit_warn": -60, + "sensor_limit_low": -60, + "sensor_limit_low_warn": -60, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": "2994458", @@ -16182,9 +16263,9 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -16207,9 +16288,9 @@ "sensor_divisor": 100000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -16340,7 +16421,7 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16365,7 +16446,7 @@ "sensor_custom": "No", "entPhysicalIndex": "118785", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16390,7 +16471,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2375681", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16415,7 +16496,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2379777", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16440,7 +16521,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2990081", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16465,7 +16546,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2994177", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16490,7 +16571,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3014657", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16515,7 +16596,7 @@ "sensor_custom": "No", "entPhysicalIndex": "3072001", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16540,7 +16621,7 @@ "sensor_custom": "No", "entPhysicalIndex": "40961", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16565,7 +16646,7 @@ "sensor_custom": "No", "entPhysicalIndex": "45057", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16590,7 +16671,7 @@ "sensor_custom": "No", "entPhysicalIndex": "49153", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -16615,11 +16696,36 @@ "sensor_custom": "No", "entPhysicalIndex": "8193", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -16640,7 +16746,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -16665,7 +16771,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -17057,7 +17163,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 20, + "sensor_limit": 0, "sensor_limit_warn": 0, "sensor_limit_low": -5, "sensor_limit_low_warn": -1, @@ -20456,6 +20562,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", diff --git a/tests/data/iosxr_ncs5504.json b/tests/data/iosxr_ncs5504.json index ff443fc997..82cf96b079 100644 --- a/tests/data/iosxr_ncs5504.json +++ b/tests/data/iosxr_ncs5504.json @@ -19,5 +19,50 @@ ] }, "poller": "matches discovery" + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 8384513, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "NCS-5504", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 8384518, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "NCS-5504", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + } + ] + }, + "poller": "matches discovery" } } diff --git a/tests/data/iosxr_ncs5508.json b/tests/data/iosxr_ncs5508.json index 0b403c5673..0fae9cdd3c 100644 --- a/tests/data/iosxr_ncs5508.json +++ b/tests/data/iosxr_ncs5508.json @@ -19,5 +19,50 @@ ] }, "poller": "matches discovery" + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 8384513, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "NCS-5508", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 8384518, + "entPhysicalDescr": null, + "entPhysicalClass": null, + "entPhysicalName": null, + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": "NCS-5508", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + } + ] + }, + "poller": "matches discovery" } } diff --git a/tests/data/iosxr_ncs55a2.json b/tests/data/iosxr_ncs55a2.json index 993fd5893a..f8403123ba 100644 --- a/tests/data/iosxr_ncs55a2.json +++ b/tests/data/iosxr_ncs55a2.json @@ -17766,9 +17766,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.034956, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -17791,9 +17791,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.035064, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -17816,9 +17816,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -17841,9 +17841,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -17866,9 +17866,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.033274, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -17891,9 +17891,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -17916,9 +17916,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.06128, - "sensor_limit": 0.12, + "sensor_limit": 0, "sensor_limit_warn": 0.11, - "sensor_limit_low": 0.01, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0.02, "sensor_alert": 1, "sensor_custom": "No", @@ -17941,9 +17941,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.035696, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -18291,9 +18291,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -1.81972, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18316,9 +18316,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.37171, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -18341,9 +18341,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -4.44301, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18366,9 +18366,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.6584, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -18391,9 +18391,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18416,9 +18416,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -18441,9 +18441,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18466,9 +18466,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -18491,9 +18491,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.60665, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18516,9 +18516,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.09644, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -18541,9 +18541,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -18566,9 +18566,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -18591,9 +18591,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": 1.12504, - "sensor_limit": 5.00003, + "sensor_limit": 0, "sensor_limit_warn": 4.00002, - "sensor_limit_low": -2.99988, + "sensor_limit_low": 0, "sensor_limit_low_warn": -1.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18616,9 +18616,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -1.7192, - "sensor_limit": 1.50019, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -20, + "sensor_limit_low": 0, "sensor_limit_low_warn": -18.01343, "sensor_alert": 1, "sensor_custom": "No", @@ -18641,9 +18641,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -1.50396, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -18666,9 +18666,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -10.89909, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -19040,7 +19040,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19065,7 +19065,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19090,7 +19090,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19115,7 +19115,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19140,7 +19140,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19165,7 +19165,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19190,7 +19190,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19215,7 +19215,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19240,7 +19240,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19265,7 +19265,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19290,7 +19290,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19315,7 +19315,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19340,7 +19340,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19365,7 +19365,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19390,7 +19390,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19415,7 +19415,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19440,7 +19440,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19465,7 +19465,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19490,7 +19490,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19515,7 +19515,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19529,6 +19529,31 @@ "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -19540,7 +19565,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19565,7 +19590,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -19591,9 +19616,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 38, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -19616,9 +19641,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 40, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -19641,9 +19666,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 33, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -19666,9 +19691,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 32, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -19691,9 +19716,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 39, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -19716,7 +19741,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 20, + "sensor_limit": 0, "sensor_limit_warn": 0, "sensor_limit_low": -5, "sensor_limit_low_warn": -1, @@ -19741,9 +19766,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 42, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -19766,9 +19791,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 39, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -20541,9 +20566,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2787002, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -20566,9 +20591,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2835, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -20591,9 +20616,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2954, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -20616,9 +20641,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2692, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -20641,9 +20666,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.231, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -20691,9 +20716,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2885, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -20716,9 +20741,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2882, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -21515,6 +21540,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -21780,9 +21861,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.034956, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -21805,9 +21886,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.035064, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -21830,9 +21911,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -21855,9 +21936,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -21880,9 +21961,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.033274, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -21905,9 +21986,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -21930,9 +22011,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.06128, - "sensor_limit": 0.12, + "sensor_limit": 0, "sensor_limit_warn": 0.11, - "sensor_limit_low": 0.01, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0.02, "sensor_alert": 1, "sensor_custom": "No", @@ -21955,9 +22036,9 @@ "sensor_divisor": 1000000, "sensor_multiplier": 1, "sensor_current": 0.035696, - "sensor_limit": 0.08, + "sensor_limit": 0, "sensor_limit_warn": 0.07, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -22305,9 +22386,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -1.81972, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22330,9 +22411,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.37171, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -22355,9 +22436,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -4.44301, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22380,9 +22461,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.6584, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -22405,9 +22486,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22430,9 +22511,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -22455,9 +22536,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22480,9 +22561,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -40, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -22505,9 +22586,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.60665, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22530,9 +22611,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -2.09644, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -22555,9 +22636,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -22580,9 +22661,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": 0, - "sensor_limit_low": null, + "sensor_limit_low": 0, "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", @@ -22605,9 +22686,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": 1.12504, - "sensor_limit": 5.00003, + "sensor_limit": 0, "sensor_limit_warn": 4.00002, - "sensor_limit_low": -2.99988, + "sensor_limit_low": 0, "sensor_limit_low_warn": -1.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22630,9 +22711,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -1.7192, - "sensor_limit": 1.50019, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -20, + "sensor_limit_low": 0, "sensor_limit_low_warn": -18.01343, "sensor_alert": 1, "sensor_custom": "No", @@ -22655,9 +22736,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -1.50396, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -8.99974, + "sensor_limit_low": 0, "sensor_limit_low_warn": -7.9997, "sensor_alert": 1, "sensor_custom": "No", @@ -22680,9 +22761,9 @@ "sensor_divisor": 100000, "sensor_multiplier": 1, "sensor_current": -10.89909, - "sensor_limit": 1.49988, + "sensor_limit": 0, "sensor_limit_warn": 0.49992, - "sensor_limit_low": -16.00326, + "sensor_limit_low": 0, "sensor_limit_low_warn": -15.00312, "sensor_alert": 1, "sensor_custom": "No", @@ -23063,7 +23144,7 @@ "sensor_custom": "No", "entPhysicalIndex": "1", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23088,7 +23169,7 @@ "sensor_custom": "No", "entPhysicalIndex": "200705", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23113,7 +23194,7 @@ "sensor_custom": "No", "entPhysicalIndex": "20481", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23138,7 +23219,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2129921", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23163,7 +23244,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2134017", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23188,7 +23269,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2138113", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23213,7 +23294,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2142209", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23238,7 +23319,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2146305", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23263,7 +23344,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2154497", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23288,7 +23369,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2158593", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23313,7 +23394,7 @@ "sensor_custom": "No", "entPhysicalIndex": "2162689", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23338,7 +23419,7 @@ "sensor_custom": "No", "entPhysicalIndex": "24577", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23363,7 +23444,7 @@ "sensor_custom": "No", "entPhysicalIndex": "28673", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23388,7 +23469,7 @@ "sensor_custom": "No", "entPhysicalIndex": "32769", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23413,7 +23494,7 @@ "sensor_custom": "No", "entPhysicalIndex": "36865", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23438,7 +23519,7 @@ "sensor_custom": "No", "entPhysicalIndex": "40961", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23463,7 +23544,7 @@ "sensor_custom": "No", "entPhysicalIndex": "4097", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23488,7 +23569,7 @@ "sensor_custom": "No", "entPhysicalIndex": "45057", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23513,7 +23594,7 @@ "sensor_custom": "No", "entPhysicalIndex": "49153", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -23538,11 +23619,36 @@ "sensor_custom": "No", "entPhysicalIndex": "8193", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9.9.176.1.2.14.0", + "sensor_index": "0", + "sensor_type": "cRFCfgRedundancyOperMode", + "sensor_descr": "VSS Mode", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": 1, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "cRFCfgRedundancyOperMode" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -23563,7 +23669,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -23588,7 +23694,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" @@ -23605,9 +23711,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 38, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -23630,9 +23736,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 40, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -23655,9 +23761,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 33, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -23680,9 +23786,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 32, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -23705,9 +23811,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 39, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -23730,7 +23836,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 20, + "sensor_limit": 0, "sensor_limit_warn": 0, "sensor_limit_low": -5, "sensor_limit_low_warn": -1, @@ -23755,9 +23861,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 42, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -23780,9 +23886,9 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 39, - "sensor_limit": 75, + "sensor_limit": 0, "sensor_limit_warn": 70, - "sensor_limit_low": -10, + "sensor_limit_low": -5, "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", @@ -24555,9 +24661,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2787002, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -24580,9 +24686,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2835, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -24605,9 +24711,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2954, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -24630,9 +24736,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2692, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -24655,9 +24761,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.231, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -24705,9 +24811,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2885, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -24730,9 +24836,9 @@ "sensor_divisor": 10000000, "sensor_multiplier": 1, "sensor_current": 3.2882, - "sensor_limit": 3.6, + "sensor_limit": 0, "sensor_limit_warn": 3.5, - "sensor_limit_low": 3, + "sensor_limit_low": 0, "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", @@ -25529,6 +25635,62 @@ "state_value": 12, "state_generic_value": 1 }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "nonRedundant", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareNonRedundant", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "staticLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "dynamicLoadShareRedundant", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "coldStandbyRedundant", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "warmStandbyRedundant", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "cRFCfgRedundancyOperMode", + "state_descr": "hotStandbyRedundant", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, { "state_name": "cRFStatusPeerUnitState", "state_descr": "notKnown", @@ -32564,5 +32726,548 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 47, + "low_ifIndex": 48, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 47, + "low_ifIndex": 49, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 47, + "low_ifIndex": 50, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 51, + "low_ifIndex": 47, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 73, + "low_ifIndex": 47, + "ifStackStatus": "active" + } + ] + } + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "3.66.66.78", + "vrf_name": "BBN", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "100.96.0.1:1", + "mplsVpnVrfDescription": "Vrf d'administration", + "ifIndices": "46,48" + }, + { + "vrf_oid": "3.67.80.69", + "vrf_name": "CPE", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "100.96.0.1:2", + "mplsVpnVrfDescription": "Vrf d'administration des CPE", + "ifIndices": "49" + }, + { + "vrf_oid": "3.79.79.66", + "vrf_name": "OOB", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "100.96.0.1:3", + "mplsVpnVrfDescription": "Vrf d'administration", + "ifIndices": "50,74" + }, + { + "vrf_oid": "7.100.101.102.97.117.108.116", + "vrf_name": "default", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": null, + "mplsVpnVrfDescription": "", + "ifIndices": null + } + ] + } + }, + "discovery-protocols": { + "discovery": { + "links": [ + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "swi001", + "remote_port": "Ethernet1/1", + "remote_platform": "N3K-C3064PQ-10GX", + "remote_version": "Cisco Nexus Operating System (NX-OS) Software, Version 7.0(3)I7(3)", + "ifAlias": "DC>SWI001 Eth1/1", + "ifDescr": "TenGigE0/0/0/0", + "ifName": "TenGigE0/0/0/0" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "swi002", + "remote_port": "Ethernet1/1", + "remote_platform": "N3K-C3064PQ-10GX", + "remote_version": "Cisco Nexus Operating System (NX-OS) Software, Version 7.0(3)I7(3)", + "ifAlias": "DC>SWI002 Eth1/1", + "ifDescr": "TenGigE0/0/0/1", + "ifName": "TenGigE0/0/0/1" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "mrr001", + "remote_port": "TenGigE0/0/0/0", + "remote_platform": "cisco NCS-540", + "remote_version": "7.4.1", + "ifAlias": "L001>MRR001 Te0/0/0/0", + "ifDescr": "TenGigE0/0/0/4", + "ifName": "TenGigE0/0/0/4" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "MCR006", + "remote_port": "TenGigE0/0/0/2", + "remote_platform": "cisco NCS-5500", + "remote_version": "7.4.1", + "ifAlias": "L010>MCR006 Te0/0/2", + "ifDescr": "TenGigE0/0/0/7", + "ifName": "TenGigE0/0/0/7" + }, + { + "active": 1, + "protocol": "cdp", + "remote_hostname": "mcr003", + "remote_port": "TenGigE0/0/0/2", + "remote_platform": "cisco NCS-5500", + "remote_version": "7.4.1", + "ifAlias": "LTMP>MCR003 TE0/0/0/X", + "ifDescr": "TenGigE0/0/0/8", + "ifName": "TenGigE0/0/0/8" + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "AS65000-MOCK-TEXT", + "bgpPeerIdentifier": "100.96.96.1", + "bgpPeerRemoteAs": 65000, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65000, + "vrfLocalAs": null + }, + { + "astext": "AS65000-MOCK-TEXT", + "bgpPeerIdentifier": "100.96.96.2", + "bgpPeerRemoteAs": 65000, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65000, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "100.96.96.1", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "100.96.96.2", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + }, + "poller": { + "bgpPeers": [ + { + "astext": "AS65000-MOCK-TEXT", + "bgpPeerIdentifier": "100.96.96.1", + "bgpPeerRemoteAs": 65000, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpPeerIface": 45, + "bgpLocalAddr": "100.96.0.1", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 35, + "bgpPeerOutUpdates": 11, + "bgpPeerInTotalMessages": 273, + "bgpPeerOutTotalMessages": 246, + "bgpPeerFsmEstablishedTime": 14053, + "bgpPeerInUpdateElapsedTime": 13980, + "context_name": "", + "bgpLocalAs": 65000, + "vrfLocalAs": null + }, + { + "astext": "AS65000-MOCK-TEXT", + "bgpPeerIdentifier": "100.96.96.2", + "bgpPeerRemoteAs": 65000, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpPeerIface": 45, + "bgpLocalAddr": "100.96.0.1", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 24, + "bgpPeerOutUpdates": 11, + "bgpPeerInTotalMessages": 261, + "bgpPeerOutTotalMessages": 245, + "bgpPeerFsmEstablishedTime": 14041, + "bgpPeerInUpdateElapsedTime": 13982, + "context_name": "", + "bgpLocalAs": 65000, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "100.96.96.1", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 8, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2147483647, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 12, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 8, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 12, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "100.96.96.2", + "afi": "ipv4", + "safi": "vpn", + "AcceptedPrefixes": 8, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 2147483647, + "PrefixThreshold": 75, + "PrefixClearThreshold": 75, + "AdvertisedPrefixes": 12, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 8, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 12, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + } + }, + "ospf": { + "poller": { + "ospf_ports": [ + { + "ospf_port_id": "100.96.0.1.0", + "ospfIfIpAddress": "100.96.0.1", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "pointToPoint", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "loopback", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 1, + "ospfIfAuthKey": null, + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "md5", + "ospfIfMetricIpAddress": "100.96.0.1", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 1, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 45 + }, + { + "ospf_port_id": "100.96.128.0.0", + "ospfIfIpAddress": "100.96.128.0", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "pointToPoint", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "pointToPoint", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 1, + "ospfIfAuthKey": null, + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "md5", + "ospfIfMetricIpAddress": "100.96.128.0", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 1, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 67 + }, + { + "ospf_port_id": "100.96.128.2.0", + "ospfIfIpAddress": "100.96.128.2", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "pointToPoint", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "pointToPoint", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 1, + "ospfIfAuthKey": null, + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "md5", + "ospfIfMetricIpAddress": "100.96.128.2", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 1, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 70 + }, + { + "ospf_port_id": "100.96.128.21.0", + "ospfIfIpAddress": "100.96.128.21", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "pointToPoint", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "pointToPoint", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 1, + "ospfIfAuthKey": null, + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "md5", + "ospfIfMetricIpAddress": "100.96.128.21", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 1, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 68 + } + ], + "ospf_instances": [ + { + "ospf_instance_id": 0, + "ospfRouterId": "100.96.0.1", + "ospfAdminStat": "enabled", + "ospfVersionNumber": "version2", + "ospfAreaBdrRtrStatus": "false", + "ospfASBdrRtrStatus": "false", + "ospfExternLsaCount": 0, + "ospfExternLsaCksumSum": 0, + "ospfTOSSupport": "false", + "ospfOriginateNewLsas": 14, + "ospfRxNewLsas": 14, + "ospfExtLsdbLimit": 10240, + "ospfMulticastExtensions": 0, + "ospfExitOverflowInterval": 0, + "ospfDemandExtensions": "true", + "context_name": "" + } + ], + "ospf_areas": [ + { + "ospfAreaId": "0.0.0.0", + "ospfAuthType": null, + "ospfImportAsExtern": "importExternal", + "ospfSpfRuns": 11, + "ospfAreaBdrRtrCount": 0, + "ospfAsBdrRtrCount": 0, + "ospfAreaLsaCount": 7, + "ospfAreaLsaCksumSum": 297917, + "ospfAreaSummary": "sendAreaSummary", + "ospfAreaStatus": "active", + "context_name": "" + } + ], + "ospf_nbrs": [ + { + "port_id": null, + "ospf_nbr_id": "100.96.128.1.0", + "ospfNbrIpAddr": "100.96.128.1", + "ospfNbrAddressLessIndex": 0, + "ospfNbrRtrId": "100.96.0.3", + "ospfNbrOptions": 82, + "ospfNbrPriority": 0, + "ospfNbrState": "full", + "ospfNbrEvents": 6, + "ospfNbrLsRetransQLen": 0, + "ospfNbmaNbrStatus": "active", + "ospfNbmaNbrPermanence": "dynamic", + "ospfNbrHelloSuppressed": "false", + "context_name": "" + }, + { + "port_id": null, + "ospf_nbr_id": "100.96.128.20.0", + "ospfNbrIpAddr": "100.96.128.20", + "ospfNbrAddressLessIndex": 0, + "ospfNbrRtrId": "100.96.0.6", + "ospfNbrOptions": 82, + "ospfNbrPriority": 0, + "ospfNbrState": "full", + "ospfNbrEvents": 6, + "ospfNbrLsRetransQLen": 0, + "ospfNbmaNbrStatus": "active", + "ospfNbmaNbrPermanence": "dynamic", + "ospfNbrHelloSuppressed": "false", + "context_name": "" + }, + { + "port_id": null, + "ospf_nbr_id": "100.96.128.3.0", + "ospfNbrIpAddr": "100.96.128.3", + "ospfNbrAddressLessIndex": 0, + "ospfNbrRtrId": "100.96.96.1", + "ospfNbrOptions": 82, + "ospfNbrPriority": 0, + "ospfNbrState": "full", + "ospfNbrEvents": 6, + "ospfNbrLsRetransQLen": 0, + "ospfNbmaNbrStatus": "active", + "ospfNbmaNbrPermanence": "dynamic", + "ospfNbrHelloSuppressed": "false", + "context_name": "" + } + ] + } } } diff --git a/tests/data/ironware.json b/tests/data/ironware.json index a7479f3dfd..34492f6c9e 100644 --- a/tests/data/ironware.json +++ b/tests/data/ironware.json @@ -21637,8 +21637,8 @@ "ifName": "ve55", "portName": null, "ifIndex": 16777271, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -21737,8 +21737,8 @@ "ifName": "ve66", "portName": null, "ifIndex": 16777282, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -21837,8 +21837,8 @@ "ifName": "loopback1", "portName": null, "ifIndex": 33554433, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "false", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -23311,10 +23311,10 @@ "bgpPeerRemoteAs": 23456, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 1, "bgpLocalAddr": "172.31.31.20", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -23334,10 +23334,10 @@ "bgpPeerRemoteAs": 65065, "bgpPeerState": "connect", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 1, "bgpLocalAddr": "192.0.2.5", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -23357,7 +23357,7 @@ "bgpPeerRemoteAs": 65065, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, @@ -23380,10 +23380,10 @@ "bgpPeerRemoteAs": 23456, "bgpPeerState": "connect", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 1, "bgpLocalAddr": "192.0.2.5", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -23403,7 +23403,7 @@ "bgpPeerRemoteAs": 23456, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, "bgpPeerIface": null, diff --git a/tests/data/ise_3595.json b/tests/data/ise_3595.json index 37c4bc95c9..9d84baf57b 100644 --- a/tests/data/ise_3595.json +++ b/tests/data/ise_3595.json @@ -13,7 +13,7 @@ "location": "", "os": "ise", "type": "server", - "serial": "", + "serial": "AAA9999Z999", "icon": "cisco.svg" } ] @@ -2446,7 +2446,7 @@ "entPhysicalIsFRU": "0", "entPhysicalModelName": "SNS-3595-K9", "entPhysicalVendorType": "zeroDotZero.0", - "entPhysicalSerialNum": "FCH2204V176", + "entPhysicalSerialNum": "AAA9999Z999", "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Cisco Systems Inc.", diff --git a/tests/data/janitza_generic.json b/tests/data/janitza_generic.json index 61f6a28cb6..2db7064188 100644 --- a/tests/data/janitza_generic.json +++ b/tests/data/janitza_generic.json @@ -159,7 +159,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": -82, + "sensor_current": 209, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1272,7 +1272,7 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": -82, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null diff --git a/tests/data/nxos_n3k-3064pq.json b/tests/data/nxos_n3k-3064pq.json index f645f5adf8..0216109b5b 100644 --- a/tests/data/nxos_n3k-3064pq.json +++ b/tests/data/nxos_n3k-3064pq.json @@ -11290,7 +11290,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": -1.001, "sensor_limit_low": -25.228, "sensor_limit_low_warn": -23.979, @@ -11440,7 +11440,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": -1.001, "sensor_limit_low": -25.228, "sensor_limit_low_warn": -23.979, @@ -11539,7 +11539,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 2, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11564,7 +11564,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 1, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -11589,7 +11589,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 0, + "sensor_current": 14, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -12857,7 +12857,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": -1.001, "sensor_limit_low": -25.228, "sensor_limit_low_warn": -23.979, @@ -13007,7 +13007,7 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": null, + "sensor_limit": 0, "sensor_limit_warn": -1.001, "sensor_limit_low": -25.228, "sensor_limit_low_warn": -23.979, @@ -13115,7 +13115,7 @@ "sensor_custom": "No", "entPhysicalIndex": "470", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cefcFRUPowerOperStatus" @@ -13140,7 +13140,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusPeerUnitState" @@ -13165,7 +13165,7 @@ "sensor_custom": "No", "entPhysicalIndex": "0", "entPhysicalIndex_measured": null, - "sensor_prev": 0, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": "cRFStatusUnitState" diff --git a/tests/data/nxos_n9000-9.3.9.json b/tests/data/nxos_n9000-9.3.9.json index ff1ed41312..24d58e8eb5 100644 --- a/tests/data/nxos_n9000-9.3.9.json +++ b/tests/data/nxos_n9000-9.3.9.json @@ -1,4 +1,25 @@ { + "os": { + "discovery": { + "devices": [ + { + "sysName": null, + "sysObjectID": ".1.3.6.1.4.1.9.12.3.1.3.2193", + "sysDescr": "Cisco NX-OS(tm) Nexus9000 C93180YC-FX3, Software (NXOS 32-bit), Version 9.3(9), RELEASE SOFTWARE Copyright (c) 2002-2022 by Cisco Systems, Inc. Compiled 2/4/2022 7:00:00", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "location": null, + "os": "nxos", + "type": "network", + "serial": null, + "icon": "cisco.svg" + } + ] + }, + "poller": "matches discovery" + }, "slas": { "discovery": { "slas": [ diff --git a/tests/data/ocnos_s9600-32x.json b/tests/data/ocnos_s9600-32x.json index 44935bf627..42bb0ed15c 100644 --- a/tests/data/ocnos_s9600-32x.json +++ b/tests/data/ocnos_s9600-32x.json @@ -11412,9 +11412,9 @@ "discovery": { "bgpPeers": [ { - "astext": "AS399693-MOCK-TEXT", + "astext": "AS65534-MOCK-TEXT", "bgpPeerIdentifier": "100.127.0.200", - "bgpPeerRemoteAs": 399693, + "bgpPeerRemoteAs": 65534, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", "bgpPeerLastErrorCode": null, @@ -11431,13 +11431,13 @@ "bgpPeerFsmEstablishedTime": 0, "bgpPeerInUpdateElapsedTime": 0, "context_name": "", - "bgpLocalAs": 399693, + "bgpLocalAs": 65534, "vrfLocalAs": null }, { - "astext": "AS399693-MOCK-TEXT", + "astext": "AS65534-MOCK-TEXT", "bgpPeerIdentifier": "100.127.0.201", - "bgpPeerRemoteAs": 399693, + "bgpPeerRemoteAs": 65534, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", "bgpPeerLastErrorCode": null, @@ -11454,7 +11454,7 @@ "bgpPeerFsmEstablishedTime": 0, "bgpPeerInUpdateElapsedTime": 0, "context_name": "", - "bgpLocalAs": 399693, + "bgpLocalAs": 65534, "vrfLocalAs": null } ] @@ -11462,9 +11462,9 @@ "poller": { "bgpPeers": [ { - "astext": "AS399693-MOCK-TEXT", + "astext": "AS65534-MOCK-TEXT", "bgpPeerIdentifier": "100.127.0.200", - "bgpPeerRemoteAs": 399693, + "bgpPeerRemoteAs": 65534, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", "bgpPeerLastErrorCode": 6, @@ -11481,13 +11481,13 @@ "bgpPeerFsmEstablishedTime": 298301, "bgpPeerInUpdateElapsedTime": 10, "context_name": "", - "bgpLocalAs": 399693, + "bgpLocalAs": 65534, "vrfLocalAs": null }, { - "astext": "AS399693-MOCK-TEXT", + "astext": "AS65534-MOCK-TEXT", "bgpPeerIdentifier": "100.127.0.201", - "bgpPeerRemoteAs": 399693, + "bgpPeerRemoteAs": 65534, "bgpPeerState": "idle", "bgpPeerAdminStatus": "start", "bgpPeerLastErrorCode": 4, @@ -11504,7 +11504,7 @@ "bgpPeerFsmEstablishedTime": 483867, "bgpPeerInUpdateElapsedTime": 0, "context_name": "", - "bgpLocalAs": 399693, + "bgpLocalAs": 65534, "vrfLocalAs": null } ] diff --git a/tests/data/polycomLens_studioxc50.json b/tests/data/polycomLens_studioxc50.json index 7fbd60f3b9..b8e56825be 100644 --- a/tests/data/polycomLens_studioxc50.json +++ b/tests/data/polycomLens_studioxc50.json @@ -1438,8 +1438,8 @@ "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.8.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationCDR", + "sensor_index": "externalIntegrationCDRStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Poly CDR Service Status", "group": null, "sensor_divisor": 1, @@ -1456,15 +1456,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationCDR" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.13.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationDirectorySvcs", + "sensor_index": "externalIntegrationDirectorySvcsStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Directory Integration Status", "group": null, "sensor_divisor": 1, @@ -1481,15 +1481,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationDirectorySvcs" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.12.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationExchange", + "sensor_index": "externalIntegrationExchangeStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Exchange Integration Status", "group": null, "sensor_divisor": 1, @@ -1506,15 +1506,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationExchange" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.7.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationPresence", + "sensor_index": "externalIntegrationPresenceStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Poly Presence Service Status", "group": null, "sensor_divisor": 1, @@ -1531,15 +1531,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationPresence" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.11.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationProvisioning", + "sensor_index": "externalIntegrationProvisioningStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Poly Provisioning Status", "group": null, "sensor_divisor": 1, @@ -1556,15 +1556,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationProvisioning" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.10.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationSoftwareUpdate", + "sensor_index": "externalIntegrationSoftwareUpdateStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Poly Software Update Status", "group": null, "sensor_divisor": 1, @@ -1581,15 +1581,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationSoftwareUpdate" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.6.9.1.0", - "sensor_index": "0", - "sensor_type": "externalIntegrationSyslog", + "sensor_index": "externalIntegrationSyslogStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Syslog Service Status", "group": null, "sensor_divisor": 1, @@ -1606,40 +1606,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "externalIntegrationSyslog" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.1.0", - "sensor_index": "0", - "sensor_type": "hardware", - "sensor_descr": "Hardware Status", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "hardware" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.6.1.0", - "sensor_index": "0", - "sensor_type": "hardwareCamera", + "sensor_index": "hardwareCameraStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Camera Status", "group": null, "sensor_divisor": 1, @@ -1656,15 +1631,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "hardwareCamera" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.5.1.0", - "sensor_index": "0", - "sensor_type": "hardwareMicrophone", + "sensor_index": "hardwareMicrophoneStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Microphone Status", "group": null, "sensor_divisor": 1, @@ -1681,15 +1656,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "hardwareMicrophone" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.10.1.0", - "sensor_index": "0", - "sensor_type": "hardwareNIC", + "sensor_index": "hardwareNICStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "NIC Status", "group": null, "sensor_divisor": 1, @@ -1706,15 +1681,40 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "hardwareNIC" + "state_name": "polycomEndpointGeneric" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.1.0", + "sensor_index": "hardwareOverallStatus.0", + "sensor_type": "polycomEndpointGeneric", + "sensor_descr": "Hardware Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.11.1.0", - "sensor_index": "0", - "sensor_type": "hardwarePTC", + "sensor_index": "hardwarePTCStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "PTC Status", "group": null, "sensor_divisor": 1, @@ -1731,15 +1731,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "hardwarePTC" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.3.12.1.0", - "sensor_index": "0", - "sensor_type": "hardwareUcBoard", + "sensor_index": "hardwareUcBoardStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Uc Board Status", "group": null, "sensor_divisor": 1, @@ -1756,15 +1756,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "hardwareUcBoard" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.1.6.0", - "sensor_index": "0", - "sensor_type": "identity", + "sensor_index": "identityStatus.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Overall System status", "group": null, "sensor_divisor": 1, @@ -1781,15 +1781,40 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "identity" + "state_name": "polycomEndpointGeneric" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13885.101.1.2.7.2.0", + "sensor_index": "serviceH323RegistrationStatus.0", + "sensor_type": "polycomEndpointGeneric", + "sensor_descr": "H323 Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.2.7.1.0", - "sensor_index": "0", - "sensor_type": "serviceH323", + "sensor_index": "serviceH323Status.0", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "H323 Status", "group": null, "sensor_divisor": 1, @@ -1806,40 +1831,15 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "serviceH323" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13885.101.1.2.8.1.0", - "sensor_index": "0", - "sensor_type": "serviceSip", - "sensor_descr": "Sip overall Status", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "serviceSip" + "state_name": "polycomEndpointGeneric" }, { "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.13885.101.1.2.8.3.1.2.1", - "sensor_index": "1", - "sensor_type": "serviceSipRegistrationTable", + "sensor_index": "serviceSipRegistrationStatus.1", + "sensor_type": "polycomEndpointGeneric", "sensor_descr": "Sip Status Line 1", "group": null, "sensor_divisor": 1, @@ -1856,362 +1856,51 @@ "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", - "state_name": "serviceSipRegistrationTable" + "state_name": "polycomEndpointGeneric" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13885.101.1.2.8.1.0", + "sensor_index": "serviceSipStatus.0", + "sensor_type": "polycomEndpointGeneric", + "sensor_descr": "Sip overall Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": "polycomEndpointGeneric" } ], "state_indexes": [ { - "state_name": "externalIntegrationCDR", + "state_name": "polycomEndpointGeneric", "state_descr": "disabled", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 3 }, { - "state_name": "externalIntegrationCDR", + "state_name": "polycomEndpointGeneric", "state_descr": "ok", "state_draw_graph": 1, "state_value": 2, "state_generic_value": 0 }, { - "state_name": "externalIntegrationCDR", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "externalIntegrationDirectorySvcs", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "externalIntegrationDirectorySvcs", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "externalIntegrationDirectorySvcs", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "externalIntegrationExchange", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "externalIntegrationExchange", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "externalIntegrationExchange", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "externalIntegrationPresence", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "externalIntegrationPresence", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "externalIntegrationPresence", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "externalIntegrationProvisioning", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "externalIntegrationProvisioning", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "externalIntegrationProvisioning", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "externalIntegrationSoftwareUpdate", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "externalIntegrationSoftwareUpdate", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "externalIntegrationSoftwareUpdate", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "externalIntegrationSyslog", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "externalIntegrationSyslog", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "externalIntegrationSyslog", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "hardware", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "hardware", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "hardware", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "hardwareCamera", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "hardwareCamera", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "hardwareCamera", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "hardwareMicrophone", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "hardwareMicrophone", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "hardwareMicrophone", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "hardwareNIC", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "hardwareNIC", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "hardwareNIC", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "hardwarePTC", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "hardwarePTC", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "hardwarePTC", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "hardwareUcBoard", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "hardwareUcBoard", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "hardwareUcBoard", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "identity", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "identity", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "identity", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "serviceH323", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "serviceH323", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "serviceH323", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "serviceSip", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "serviceSip", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "serviceSip", - "state_descr": "failed", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 2 - }, - { - "state_name": "serviceSipRegistrationTable", - "state_descr": "disabled", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 3 - }, - { - "state_name": "serviceSipRegistrationTable", - "state_descr": "ok", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "serviceSipRegistrationTable", + "state_name": "polycomEndpointGeneric", "state_descr": "failed", "state_draw_graph": 1, "state_value": 3, diff --git a/tests/data/raritan-pdu.json b/tests/data/raritan-pdu.json index 314373cdb6..f2310b6561 100644 --- a/tests/data/raritan-pdu.json +++ b/tests/data/raritan-pdu.json @@ -27,18 +27,18 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.1", "sensor_index": "1", "sensor_type": "raritan", - "sensor_descr": "Outlet 1", + "sensor_descr": "OUTLET1", "group": null, "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.039, + "sensor_limit_low": 1, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -59,11 +59,11 @@ "group": null, "sensor_divisor": 1000, "sensor_multiplier": 1, - "sensor_current": 0.68, + "sensor_current": 2.971, "sensor_limit": 12.589, "sensor_limit_warn": 12.589, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -77,7 +77,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.10", "sensor_index": "10", "sensor_type": "raritan", "sensor_descr": "OUTLET10", @@ -85,10 +85,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0.183, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 0.974, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -102,7 +102,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.11", "sensor_index": "11", "sensor_type": "raritan", "sensor_descr": "OUTLET11", @@ -110,10 +110,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0.192, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 0.974, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -127,7 +127,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.12", "sensor_index": "12", "sensor_type": "raritan", "sensor_descr": "OUTLET12", @@ -135,10 +135,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 0.974, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -152,7 +152,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.2", "sensor_index": "2", "sensor_type": "raritan", "sensor_descr": "OUTLET2", @@ -160,10 +160,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 0.974, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -177,7 +177,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.3", "sensor_index": "3", "sensor_type": "raritan", "sensor_descr": "OUTLET3", @@ -185,10 +185,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 2.192, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 1, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -202,7 +202,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.4", "sensor_index": "4", "sensor_type": "raritan", "sensor_descr": "OUTLET4", @@ -210,10 +210,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 1, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -227,7 +227,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.5", "sensor_index": "5", "sensor_type": "raritan", "sensor_descr": "OUTLET5", @@ -235,10 +235,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 1, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -252,7 +252,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.6", "sensor_index": "6", "sensor_type": "raritan", "sensor_descr": "OUTLET6", @@ -260,10 +260,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0.174, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 0.974, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -277,7 +277,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.7", "sensor_index": "7", "sensor_type": "raritan", "sensor_descr": "OUTLET7", @@ -285,10 +285,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 1, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -302,7 +302,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.8", "sensor_index": "8", "sensor_type": "raritan", "sensor_descr": "OUTLET8", @@ -310,10 +310,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 1, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -327,7 +327,7 @@ "sensor_deleted": 0, "sensor_class": "current", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.1", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.4.9", "sensor_index": "9", "sensor_type": "raritan", "sensor_descr": "OUTLET9", @@ -335,35 +335,10 @@ "sensor_divisor": 1000, "sensor_multiplier": 1, "sensor_current": 0.202, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.23", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "I1", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 50, - "sensor_limit": 52.5, - "sensor_limit_warn": null, - "sensor_limit_low": 47.5, - "sensor_limit_low_warn": null, + "sensor_limit": 7.979, + "sensor_limit_warn": 6.516, + "sensor_limit_low": 0.974, + "sensor_limit_low_warn": 1.981, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -402,10 +377,10 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.1", "sensor_index": "1", "sensor_type": "raritan", - "sensor_descr": "Outlet 1", + "sensor_descr": "OUTLET1", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, @@ -427,32 +402,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.5", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "I1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 138, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.10", "sensor_index": "10", "sensor_type": "raritan", "sensor_descr": "OUTLET10", @@ -477,7 +427,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.11", "sensor_index": "11", "sensor_type": "raritan", "sensor_descr": "OUTLET11", @@ -502,7 +452,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.12", "sensor_index": "12", "sensor_type": "raritan", "sensor_descr": "OUTLET12", @@ -527,7 +477,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.2", "sensor_index": "2", "sensor_type": "raritan", "sensor_descr": "OUTLET2", @@ -552,7 +502,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.3", "sensor_index": "3", "sensor_type": "raritan", "sensor_descr": "OUTLET3", @@ -577,7 +527,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.4", "sensor_index": "4", "sensor_type": "raritan", "sensor_descr": "OUTLET4", @@ -602,7 +552,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.5", "sensor_index": "5", "sensor_type": "raritan", "sensor_descr": "OUTLET5", @@ -627,7 +577,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.6", "sensor_index": "6", "sensor_type": "raritan", "sensor_descr": "OUTLET6", @@ -652,7 +602,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.7", "sensor_index": "7", "sensor_type": "raritan", "sensor_descr": "OUTLET7", @@ -677,7 +627,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.8", "sensor_index": "8", "sensor_type": "raritan", "sensor_descr": "OUTLET8", @@ -702,7 +652,7 @@ "sensor_deleted": 0, "sensor_class": "power", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.5", + "sensor_oid": ".1.3.6.1.4.1.13742.4.1.2.2.1.8.9", "sensor_index": "9", "sensor_type": "raritan", "sensor_descr": "OUTLET9", @@ -797,837 +747,9 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.4", - "sensor_index": "1.1.rmsVoltage", - "sensor_type": "raritan", - "sensor_descr": "I1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 233, - "sensor_limit": 267.95, - "sensor_limit_warn": null, - "sensor_limit_low": 198.05, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.1", - "sensor_index": "1", - "sensor_type": "raritan", - "sensor_descr": "Outlet 1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.4.1.21.2.1.3.1.1", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "Inlet L1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 2.971, - "sensor_limit": 12.589, - "sensor_limit_warn": 12.589, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 0.68, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.1", - "sensor_index": "10", - "sensor_type": "raritan", - "sensor_descr": "OUTLET10", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.184, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 0.183, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.1", - "sensor_index": "11", - "sensor_type": "raritan", - "sensor_descr": "OUTLET11", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.185, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 0.192, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.1", - "sensor_index": "12", - "sensor_type": "raritan", - "sensor_descr": "OUTLET12", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.1", - "sensor_index": "2", - "sensor_type": "raritan", - "sensor_descr": "OUTLET2", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.1", - "sensor_index": "3", - "sensor_type": "raritan", - "sensor_descr": "OUTLET3", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0.311, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 2.192, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.1", - "sensor_index": "4", - "sensor_type": "raritan", - "sensor_descr": "OUTLET4", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.1", - "sensor_index": "5", - "sensor_type": "raritan", - "sensor_descr": "OUTLET5", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.1", - "sensor_index": "6", - "sensor_type": "raritan", - "sensor_descr": "OUTLET6", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 0.174, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.1", - "sensor_index": "7", - "sensor_type": "raritan", - "sensor_descr": "OUTLET7", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.1", - "sensor_index": "8", - "sensor_type": "raritan", - "sensor_descr": "OUTLET8", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.1", - "sensor_index": "9", - "sensor_type": "raritan", - "sensor_descr": "OUTLET9", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": 8000, - "sensor_limit_warn": 6500, - "sensor_limit_low": 0, - "sensor_limit_low_warn": 0, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 0.202, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "frequency", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.23", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "I1", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 50, - "sensor_limit": 52.5, - "sensor_limit_warn": null, - "sensor_limit_low": 47.5, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "humidity", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.4.3.3.1.41.2", - "sensor_index": "1", - "sensor_type": "raritan", - "sensor_descr": "Humidity AEI8850418", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 39, - "sensor_limit": 85, - "sensor_limit_warn": 90, - "sensor_limit_low": 15, - "sensor_limit_low_warn": 10, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.5", - "sensor_index": "1", - "sensor_type": "raritan", - "sensor_descr": "Outlet 1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.5", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "I1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 138, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.5", - "sensor_index": "10", - "sensor_type": "raritan", - "sensor_descr": "OUTLET10", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 35, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 42, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.5", - "sensor_index": "11", - "sensor_type": "raritan", - "sensor_descr": "OUTLET11", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 35, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 44, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.5", - "sensor_index": "12", - "sensor_type": "raritan", - "sensor_descr": "OUTLET12", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.5", - "sensor_index": "2", - "sensor_type": "raritan", - "sensor_descr": "OUTLET2", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.5", - "sensor_index": "3", - "sensor_type": "raritan", - "sensor_descr": "OUTLET3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 68, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 507, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.5", - "sensor_index": "4", - "sensor_type": "raritan", - "sensor_descr": "OUTLET4", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.5", - "sensor_index": "5", - "sensor_type": "raritan", - "sensor_descr": "OUTLET5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.5", - "sensor_index": "6", - "sensor_type": "raritan", - "sensor_descr": "OUTLET6", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 40, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.5", - "sensor_index": "7", - "sensor_type": "raritan", - "sensor_descr": "OUTLET7", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.5", - "sensor_index": "8", - "sensor_type": "raritan", - "sensor_descr": "OUTLET8", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "power", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.5", - "sensor_index": "9", - "sensor_type": "raritan", - "sensor_descr": "OUTLET9", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 46, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.4.3.3.1.41.3", - "sensor_index": "1", - "sensor_type": "raritan", - "sensor_descr": "Temperature AEI8850418", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 20.5, - "sensor_limit": 55, - "sensor_limit_warn": 60, - "sensor_limit_low": 18, - "sensor_limit_low_warn": 15, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.4.1.3.1.5.0", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "Processor Temp", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 36, - "sensor_limit": 80, - "sensor_limit_warn": 65, - "sensor_limit_low": 18, - "sensor_limit_low_warn": 18, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.4.1.21.2.1.4.1.1", - "sensor_index": "1.1", - "sensor_type": "raritan", - "sensor_descr": "Inlet L1", - "group": null, - "sensor_divisor": 1000, - "sensor_multiplier": 1, - "sensor_current": 230.5, - "sensor_limit": 253, - "sensor_limit_warn": 253, - "sensor_limit_low": 195, - "sensor_limit_low_warn": 207, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "voltage", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.4", - "sensor_index": "1.1.rmsVoltage", - "sensor_type": "raritan", - "sensor_descr": "I1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 233, - "sensor_limit": 267.95, - "sensor_limit_warn": null, - "sensor_limit_low": 198.05, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/data/raritan-pdu_px2.json b/tests/data/raritan-pdu_px2.json new file mode 100644 index 0000000000..fba15ffc15 --- /dev/null +++ b/tests/data/raritan-pdu_px2.json @@ -0,0 +1,730 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.13742.6", + "sysDescr": "PX2 030004", + "sysContact": "", + "version": null, + "hardware": null, + "features": null, + "location": "", + "os": "raritan-pdu", + "type": "power", + "serial": null, + "icon": "raritan.svg" + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.1", + "sensor_index": "1", + "sensor_type": "raritan", + "sensor_descr": "Outlet 1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.1", + "sensor_index": "1.1", + "sensor_type": "raritan", + "sensor_descr": "I1", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.68, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.1", + "sensor_index": "10", + "sensor_type": "raritan", + "sensor_descr": "OUTLET10", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.184, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.1", + "sensor_index": "11", + "sensor_type": "raritan", + "sensor_descr": "OUTLET11", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.185, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.1", + "sensor_index": "12", + "sensor_type": "raritan", + "sensor_descr": "OUTLET12", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.1", + "sensor_index": "2", + "sensor_type": "raritan", + "sensor_descr": "OUTLET2", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.1", + "sensor_index": "3", + "sensor_type": "raritan", + "sensor_descr": "OUTLET3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.311, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.1", + "sensor_index": "4", + "sensor_type": "raritan", + "sensor_descr": "OUTLET4", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.1", + "sensor_index": "5", + "sensor_type": "raritan", + "sensor_descr": "OUTLET5", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.1", + "sensor_index": "6", + "sensor_type": "raritan", + "sensor_descr": "OUTLET6", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.1", + "sensor_index": "7", + "sensor_type": "raritan", + "sensor_descr": "OUTLET7", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.1", + "sensor_index": "8", + "sensor_type": "raritan", + "sensor_descr": "OUTLET8", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.1", + "sensor_index": "9", + "sensor_type": "raritan", + "sensor_descr": "OUTLET9", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 8000, + "sensor_limit_warn": 6500, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.23", + "sensor_index": "1.1", + "sensor_type": "raritan", + "sensor_descr": "I1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.5", + "sensor_index": "1", + "sensor_type": "raritan", + "sensor_descr": "Outlet 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.5", + "sensor_index": "1.1", + "sensor_type": "raritan", + "sensor_descr": "I1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 138, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.5", + "sensor_index": "10", + "sensor_type": "raritan", + "sensor_descr": "OUTLET10", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.5", + "sensor_index": "11", + "sensor_type": "raritan", + "sensor_descr": "OUTLET11", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 35, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.5", + "sensor_index": "12", + "sensor_type": "raritan", + "sensor_descr": "OUTLET12", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.5", + "sensor_index": "2", + "sensor_type": "raritan", + "sensor_descr": "OUTLET2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.5", + "sensor_index": "3", + "sensor_type": "raritan", + "sensor_descr": "OUTLET3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 68, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.5", + "sensor_index": "4", + "sensor_type": "raritan", + "sensor_descr": "OUTLET4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.5", + "sensor_index": "5", + "sensor_type": "raritan", + "sensor_descr": "OUTLET5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.5", + "sensor_index": "6", + "sensor_type": "raritan", + "sensor_descr": "OUTLET6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.5", + "sensor_index": "7", + "sensor_type": "raritan", + "sensor_descr": "OUTLET7", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.5", + "sensor_index": "8", + "sensor_type": "raritan", + "sensor_descr": "OUTLET8", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.5", + "sensor_index": "9", + "sensor_type": "raritan", + "sensor_descr": "OUTLET9", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.4", + "sensor_index": "1.1.rmsVoltage", + "sensor_type": "raritan", + "sensor_descr": "I1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 233, + "sensor_limit": 267.95, + "sensor_limit_warn": null, + "sensor_limit_low": 198.05, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/data/scs-ks.json b/tests/data/scs-ks.json index 250c2c3cd2..7d54d6020c 100644 --- a/tests/data/scs-ks.json +++ b/tests/data/scs-ks.json @@ -812,10 +812,10 @@ "sensor_deleted": 0, "sensor_class": "temperature", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.18.0", - "sensor_index": "0", + "sensor_oid": ".1.3.6.1.4.1.9839.1.2.15.0", + "sensor_index": "exhaust.0", "sensor_type": "scs-ks", - "sensor_descr": "Room temperature", + "sensor_descr": "Exhaust air temperature", "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, @@ -832,6 +832,81 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9839.1.2.17.0", + "sensor_index": "outside.0", + "sensor_type": "scs-ks", + "sensor_descr": "Outside air temperature", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 8.7, + "sensor_limit": 28.7, + "sensor_limit_warn": null, + "sensor_limit_low": -1.3, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9839.1.2.18.0", + "sensor_index": "room.0", + "sensor_type": "scs-ks", + "sensor_descr": "Room temperature", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 19.6, + "sensor_limit": 39.6, + "sensor_limit_warn": null, + "sensor_limit_low": 9.6, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9839.1.2.16.0", + "sensor_index": "supply.0", + "sensor_type": "scs-ks", + "sensor_descr": "Supply air temperature", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 20.9, + "sensor_limit": 40.9, + "sensor_limit_warn": null, + "sensor_limit_low": 10.9, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null } ], "state_indexes": [ @@ -1131,705 +1206,6 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "humidity", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.19.0", - "sensor_index": "0", - "sensor_type": "scs-ks", - "sensor_descr": "Room humidity", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 28.6, - "sensor_limit": 70, - "sensor_limit_warn": null, - "sensor_limit_low": 30, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.3.0", - "sensor_index": "0", - "sensor_type": "status-compressor.0", - "sensor_descr": "Compressor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-compressor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.2.0", - "sensor_index": "0", - "sensor_type": "status-condenser-fan.0", - "sensor_descr": "Condenser Fan alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-condenser-fan.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.1.0", - "sensor_index": "0", - "sensor_type": "status-evaporator-fan.0", - "sensor_descr": "Evaporator Fan alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-evaporator-fan.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.5.0", - "sensor_index": "0", - "sensor_type": "status-exhaust-air-sensor.0", - "sensor_descr": "Exhaust air sensor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-exhaust-air-sensor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.14.0", - "sensor_index": "0", - "sensor_type": "status-filter-monitoring.0", - "sensor_descr": "Filter monitoring alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-filter-monitoring.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.4.0", - "sensor_index": "0", - "sensor_type": "status-heater-thermal-protection.0", - "sensor_descr": "Heater thermal protection alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-heater-thermal-protection.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.11.0", - "sensor_index": "0", - "sensor_type": "status-max-exhaust-air-temperature.0", - "sensor_descr": "Maximum exhaust air temperature alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-max-exhaust-air-temperature.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.10.0", - "sensor_index": "0", - "sensor_type": "status-min-exhaust-air-temperature.0", - "sensor_descr": "Minimum exhaust air temperature alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-min-exhaust-air-temperature.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.12.0", - "sensor_index": "0", - "sensor_type": "status-min-supply-air-temperature.0", - "sensor_descr": "Minimum supply air temperature alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-min-supply-air-temperature.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.7.0", - "sensor_index": "0", - "sensor_type": "status-outside-sensor.0", - "sensor_descr": "Outside temperature sensor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-outside-sensor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.9.0", - "sensor_index": "0", - "sensor_type": "status-room-humidity-sensor.0", - "sensor_descr": "Humidity room sensor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-room-humidity-sensor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.8.0", - "sensor_index": "0", - "sensor_type": "status-room-temperature-sensor.0", - "sensor_descr": "Temperature room sensor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-room-temperature-sensor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.6.0", - "sensor_index": "0", - "sensor_type": "status-supply-air-sensor.0", - "sensor_descr": "Supply air sensor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-supply-air-sensor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.13.0", - "sensor_index": "0", - "sensor_type": "status-water-sensor.0", - "sensor_descr": "Water sensor alarm", - "group": "Alarm", - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "status-water-sensor.0" - }, - { - "sensor_deleted": 0, - "sensor_class": "temperature", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.9839.1.2.18.0", - "sensor_index": "0", - "sensor_type": "scs-ks", - "sensor_descr": "Room temperature", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 19.6, - "sensor_limit": 41.2, - "sensor_limit_warn": null, - "sensor_limit_low": 11.2, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 21.2, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - } - ], - "state_indexes": [ - { - "state_name": "status-compressor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-compressor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-compressor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-condenser-fan.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-condenser-fan.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-condenser-fan.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-evaporator-fan.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-evaporator-fan.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-evaporator-fan.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-exhaust-air-sensor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-exhaust-air-sensor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-exhaust-air-sensor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-filter-monitoring.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-filter-monitoring.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-filter-monitoring.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-heater-thermal-protection.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-heater-thermal-protection.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-heater-thermal-protection.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-max-exhaust-air-temperature.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-max-exhaust-air-temperature.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-max-exhaust-air-temperature.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-min-exhaust-air-temperature.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-min-exhaust-air-temperature.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-min-exhaust-air-temperature.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-min-supply-air-temperature.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-min-supply-air-temperature.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-min-supply-air-temperature.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-outside-sensor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-outside-sensor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-outside-sensor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-room-humidity-sensor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-room-humidity-sensor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-room-humidity-sensor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-room-temperature-sensor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-room-temperature-sensor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-room-temperature-sensor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-supply-air-sensor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-supply-air-sensor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-supply-air-sensor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "status-water-sensor.0", - "state_descr": "null", - "state_draw_graph": 0, - "state_value": -1, - "state_generic_value": 3 - }, - { - "state_name": "status-water-sensor.0", - "state_descr": "OK", - "state_draw_graph": 0, - "state_value": 0, - "state_generic_value": 0 - }, - { - "state_name": "status-water-sensor.0", - "state_descr": "Error", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/data/sentry3.json b/tests/data/sentry3.json index 55f6735c01..0304fa415f 100644 --- a/tests/data/sentry3.json +++ b/tests/data/sentry3.json @@ -588,7 +588,7 @@ "sensor_class": "voltage", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.1", - "sensor_index": "1", + "sensor_index": "1.1", "sensor_type": "sentry3", "sensor_descr": "TowerA_InfeedA", "group": "Configured Voltage", @@ -613,7 +613,7 @@ "sensor_class": "voltage", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.2.1", - "sensor_index": "2", + "sensor_index": "2.1", "sensor_type": "sentry3", "sensor_descr": "TowerB_InfeedA", "group": "Configured Voltage", diff --git a/tests/data/sentry3_3phase.json b/tests/data/sentry3_3phase.json index 1ac511edec..32dc2d56a5 100644 --- a/tests/data/sentry3_3phase.json +++ b/tests/data/sentry3_3phase.json @@ -248,12 +248,62 @@ "rrd_type": "GAUGE", "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.1", + "sensor_index": "1.1", + "sensor_type": "sentry3", + "sensor_descr": "TowerA_InfeedA", + "group": "Configured Voltage", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 230, + "sensor_limit": 264.5, + "sensor_limit_warn": null, + "sensor_limit_low": 195.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.2", + "sensor_index": "1.2", + "sensor_type": "sentry3", + "sensor_descr": "TowerA_InfeedB", + "group": "Configured Voltage", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 230, + "sensor_limit": 264.5, + "sensor_limit_warn": null, + "sensor_limit_low": 195.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, { "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.3", - "sensor_index": "1", + "sensor_index": "1.3", "sensor_type": "sentry3", "sensor_descr": "TowerA_InfeedC", "group": "Configured Voltage", diff --git a/tests/data/sentry3_switched.json b/tests/data/sentry3_switched.json index 29ca09e3df..556d55ec17 100644 --- a/tests/data/sentry3_switched.json +++ b/tests/data/sentry3_switched.json @@ -1262,10 +1262,10 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.3", - "sensor_index": "1", + "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.1", + "sensor_index": "1.1", "sensor_type": "sentry3", - "sensor_descr": "TowerA_InfeedC", + "sensor_descr": "TowerA_InfeedA", "group": "Configured Voltage", "sensor_divisor": 10, "sensor_multiplier": 1, @@ -1282,826 +1282,22 @@ "user_func": null, "rrd_type": "GAUGE", "state_name": null - } - ] - }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.7.1.1", - "sensor_index": "infeedID.1.1", - "sensor_type": "sentry3", - "sensor_descr": "TowerA_InfeedA", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 3.09, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null }, { "sensor_deleted": 0, - "sensor_class": "current", + "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.7.1.2", - "sensor_index": "infeedID.1.2", + "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.2", + "sensor_index": "1.2", "sensor_type": "sentry3", "sensor_descr": "TowerA_InfeedB", - "group": null, - "sensor_divisor": 100, + "group": "Configured Voltage", + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 3.92, - "sensor_limit": null, + "sensor_current": 207.8, + "sensor_limit": 238.97, "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.7.1.3", - "sensor_index": "infeedID.1.3", - "sensor_type": "sentry3", - "sensor_descr": "TowerA_InfeedC", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 4.34, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.1", - "sensor_index": "outletID.1.1.1", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA1", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.10", - "sensor_index": "outletID.1.1.10", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA10", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.65, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.2", - "sensor_index": "outletID.1.1.2", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA2", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.3", - "sensor_index": "outletID.1.1.3", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA3", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.4", - "sensor_index": "outletID.1.1.4", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA4", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.5", - "sensor_index": "outletID.1.1.5", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA5", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.6", - "sensor_index": "outletID.1.1.6", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA6", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.7", - "sensor_index": "outletID.1.1.7", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA7", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.8", - "sensor_index": "outletID.1.1.8", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA8", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.64, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.1.9", - "sensor_index": "outletID.1.1.9", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AA9", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.1", - "sensor_index": "outletID.1.2.1", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB1", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.81, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.10", - "sensor_index": "outletID.1.2.10", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB10", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.28, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.2", - "sensor_index": "outletID.1.2.2", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB2", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.3", - "sensor_index": "outletID.1.2.3", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB3", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.82, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.4", - "sensor_index": "outletID.1.2.4", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB4", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.5", - "sensor_index": "outletID.1.2.5", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB5", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.81, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.6", - "sensor_index": "outletID.1.2.6", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB6", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.7", - "sensor_index": "outletID.1.2.7", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB7", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.8", - "sensor_index": "outletID.1.2.8", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB8", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.47, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.2.9", - "sensor_index": "outletID.1.2.9", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AB9", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.1", - "sensor_index": "outletID.1.3.1", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC1", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.73, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.10", - "sensor_index": "outletID.1.3.10", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC10", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.56, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.2", - "sensor_index": "outletID.1.3.2", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC2", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.3", - "sensor_index": "outletID.1.3.3", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC3", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.66, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.4", - "sensor_index": "outletID.1.3.4", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC4", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0.32, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.5", - "sensor_index": "outletID.1.3.5", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC5", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.6", - "sensor_index": "outletID.1.3.6", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC6", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.7", - "sensor_index": "outletID.1.3.7", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC7", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.8", - "sensor_index": "outletID.1.3.8", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC8", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "current", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.1718.3.2.3.1.7.1.3.9", - "sensor_index": "outletID.1.3.9", - "sensor_type": "sentry3", - "sensor_descr": "Outlet AC9", - "group": null, - "sensor_divisor": 100, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, + "sensor_limit_low": 176.63, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -2117,27 +1313,28 @@ "sensor_class": "voltage", "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.1718.3.2.2.1.11.1.3", - "sensor_index": "1", + "sensor_index": "1.3", "sensor_type": "sentry3", "sensor_descr": "TowerA_InfeedC", "group": "Configured Voltage", "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 208.7, - "sensor_limit": 238.05, + "sensor_limit": 240.005, "sensor_limit_warn": null, - "sensor_limit_low": 175.95, + "sensor_limit_low": 177.395, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 207, + "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null } ] - } + }, + "poller": "matches discovery" } } diff --git a/tests/data/smartos-dcp-m_dcp-m40-pam4-zr.json b/tests/data/smartos-dcp-m_dcp-m40-pam4-zr.json index f33c6eb341..ebbea90b53 100644 --- a/tests/data/smartos-dcp-m_dcp-m40-pam4-zr.json +++ b/tests/data/smartos-dcp-m_dcp-m40-pam4-zr.json @@ -9137,8 +9137,8 @@ "ifName": "eth0/LOCAL", "portName": null, "ifIndex": 1, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -9237,8 +9237,8 @@ "ifName": "eth1", "portName": null, "ifIndex": 2, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -9337,8 +9337,8 @@ "ifName": "eth2", "portName": null, "ifIndex": 3, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -9437,8 +9437,8 @@ "ifName": "eth3", "portName": null, "ifIndex": 4, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -9537,8 +9537,8 @@ "ifName": "eth4", "portName": null, "ifIndex": 5, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "unknown", "ifOperStatus_prev": "unknown", @@ -9637,8 +9637,8 @@ "ifName": "CONSOLE", "portName": null, "ifIndex": 101, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -9737,8 +9737,8 @@ "ifName": "psu-1/1", "portName": null, "ifIndex": 201, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -9837,8 +9837,8 @@ "ifName": "psu-1/2", "portName": null, "ifIndex": 202, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -9937,8 +9937,8 @@ "ifName": "fan-1/1", "portName": null, "ifIndex": 301, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10037,8 +10037,8 @@ "ifName": "if-1/line-tx", "portName": null, "ifIndex": 100111, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10137,8 +10137,8 @@ "ifName": "if-1/line-rx", "portName": null, "ifIndex": 100112, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10237,8 +10237,8 @@ "ifName": "if-1/9210-tx", "portName": null, "ifIndex": 100221, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -10337,8 +10337,8 @@ "ifName": "if-1/9210-rx", "portName": null, "ifIndex": 100222, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -10437,8 +10437,8 @@ "ifName": "if-1/9220-tx", "portName": null, "ifIndex": 100321, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -10537,8 +10537,8 @@ "ifName": "if-1/9220-rx", "portName": null, "ifIndex": 100322, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10637,8 +10637,8 @@ "ifName": "if-1/9230-tx", "portName": null, "ifIndex": 100421, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10737,8 +10737,8 @@ "ifName": "if-1/9230-rx", "portName": null, "ifIndex": 100422, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "up", "ifOperStatus_prev": "up", @@ -10837,8 +10837,8 @@ "ifName": "if-1/9240-tx", "portName": null, "ifIndex": 100521, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -10937,8 +10937,8 @@ "ifName": "if-1/9240-rx", "portName": null, "ifIndex": 100522, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11037,8 +11037,8 @@ "ifName": "if-1/9250-tx", "portName": null, "ifIndex": 100621, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11137,8 +11137,8 @@ "ifName": "if-1/9250-rx", "portName": null, "ifIndex": 100622, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11237,8 +11237,8 @@ "ifName": "if-1/9260-tx", "portName": null, "ifIndex": 100721, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11337,8 +11337,8 @@ "ifName": "if-1/9260-rx", "portName": null, "ifIndex": 100722, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11437,8 +11437,8 @@ "ifName": "if-1/9270-tx", "portName": null, "ifIndex": 100821, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11537,8 +11537,8 @@ "ifName": "if-1/9270-rx", "portName": null, "ifIndex": 100822, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11637,8 +11637,8 @@ "ifName": "if-1/9280-tx", "portName": null, "ifIndex": 100921, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11737,8 +11737,8 @@ "ifName": "if-1/9280-rx", "portName": null, "ifIndex": 100922, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11837,8 +11837,8 @@ "ifName": "if-1/9290-tx", "portName": null, "ifIndex": 101021, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -11937,8 +11937,8 @@ "ifName": "if-1/9290-rx", "portName": null, "ifIndex": 101022, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12037,8 +12037,8 @@ "ifName": "if-1/9300-tx", "portName": null, "ifIndex": 101121, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12137,8 +12137,8 @@ "ifName": "if-1/9300-rx", "portName": null, "ifIndex": 101122, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12237,8 +12237,8 @@ "ifName": "if-1/9310-tx", "portName": null, "ifIndex": 101221, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12337,8 +12337,8 @@ "ifName": "if-1/9310-rx", "portName": null, "ifIndex": 101222, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12437,8 +12437,8 @@ "ifName": "if-1/9320-tx", "portName": null, "ifIndex": 101321, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12537,8 +12537,8 @@ "ifName": "if-1/9320-rx", "portName": null, "ifIndex": 101322, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12637,8 +12637,8 @@ "ifName": "if-1/9330-tx", "portName": null, "ifIndex": 101421, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12737,8 +12737,8 @@ "ifName": "if-1/9330-rx", "portName": null, "ifIndex": 101422, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12837,8 +12837,8 @@ "ifName": "if-1/9340-tx", "portName": null, "ifIndex": 101521, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -12937,8 +12937,8 @@ "ifName": "if-1/9340-rx", "portName": null, "ifIndex": 101522, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13037,8 +13037,8 @@ "ifName": "if-1/9350-tx", "portName": null, "ifIndex": 101621, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13137,8 +13137,8 @@ "ifName": "if-1/9350-rx", "portName": null, "ifIndex": 101622, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13237,8 +13237,8 @@ "ifName": "if-1/9360-tx", "portName": null, "ifIndex": 101721, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13337,8 +13337,8 @@ "ifName": "if-1/9360-rx", "portName": null, "ifIndex": 101722, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13437,8 +13437,8 @@ "ifName": "if-1/9370-tx", "portName": null, "ifIndex": 101821, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13537,8 +13537,8 @@ "ifName": "if-1/9370-rx", "portName": null, "ifIndex": 101822, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13637,8 +13637,8 @@ "ifName": "if-1/9380-tx", "portName": null, "ifIndex": 101921, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13737,8 +13737,8 @@ "ifName": "if-1/9380-rx", "portName": null, "ifIndex": 101922, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13837,8 +13837,8 @@ "ifName": "if-1/9390-tx", "portName": null, "ifIndex": 102021, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -13937,8 +13937,8 @@ "ifName": "if-1/9390-rx", "portName": null, "ifIndex": 102022, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14037,8 +14037,8 @@ "ifName": "if-1/9400-tx", "portName": null, "ifIndex": 102121, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14137,8 +14137,8 @@ "ifName": "if-1/9400-rx", "portName": null, "ifIndex": 102122, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14237,8 +14237,8 @@ "ifName": "if-1/9410-tx", "portName": null, "ifIndex": 102221, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14337,8 +14337,8 @@ "ifName": "if-1/9410-rx", "portName": null, "ifIndex": 102222, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14437,8 +14437,8 @@ "ifName": "if-1/9420-tx", "portName": null, "ifIndex": 102321, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14537,8 +14537,8 @@ "ifName": "if-1/9420-rx", "portName": null, "ifIndex": 102322, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14637,8 +14637,8 @@ "ifName": "if-1/9430-tx", "portName": null, "ifIndex": 102421, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14737,8 +14737,8 @@ "ifName": "if-1/9430-rx", "portName": null, "ifIndex": 102422, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14837,8 +14837,8 @@ "ifName": "if-1/9440-tx", "portName": null, "ifIndex": 102521, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -14937,8 +14937,8 @@ "ifName": "if-1/9440-rx", "portName": null, "ifIndex": 102522, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15037,8 +15037,8 @@ "ifName": "if-1/9450-tx", "portName": null, "ifIndex": 102621, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15137,8 +15137,8 @@ "ifName": "if-1/9450-rx", "portName": null, "ifIndex": 102622, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15237,8 +15237,8 @@ "ifName": "if-1/9460-tx", "portName": null, "ifIndex": 102721, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15337,8 +15337,8 @@ "ifName": "if-1/9460-rx", "portName": null, "ifIndex": 102722, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15437,8 +15437,8 @@ "ifName": "if-1/9470-tx", "portName": null, "ifIndex": 102821, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15537,8 +15537,8 @@ "ifName": "if-1/9470-rx", "portName": null, "ifIndex": 102822, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15637,8 +15637,8 @@ "ifName": "if-1/9480-tx", "portName": null, "ifIndex": 102921, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15737,8 +15737,8 @@ "ifName": "if-1/9480-rx", "portName": null, "ifIndex": 102922, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15837,8 +15837,8 @@ "ifName": "if-1/9490-tx", "portName": null, "ifIndex": 103021, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -15937,8 +15937,8 @@ "ifName": "if-1/9490-rx", "portName": null, "ifIndex": 103022, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16037,8 +16037,8 @@ "ifName": "if-1/9500-tx", "portName": null, "ifIndex": 103121, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16137,8 +16137,8 @@ "ifName": "if-1/9500-rx", "portName": null, "ifIndex": 103122, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16237,8 +16237,8 @@ "ifName": "if-1/9510-tx", "portName": null, "ifIndex": 103221, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16337,8 +16337,8 @@ "ifName": "if-1/9510-rx", "portName": null, "ifIndex": 103222, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16437,8 +16437,8 @@ "ifName": "if-1/9520-tx", "portName": null, "ifIndex": 103321, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16537,8 +16537,8 @@ "ifName": "if-1/9520-rx", "portName": null, "ifIndex": 103322, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16637,8 +16637,8 @@ "ifName": "if-1/9530-tx", "portName": null, "ifIndex": 103421, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16737,8 +16737,8 @@ "ifName": "if-1/9530-rx", "portName": null, "ifIndex": 103422, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16837,8 +16837,8 @@ "ifName": "if-1/9540-tx", "portName": null, "ifIndex": 103521, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -16937,8 +16937,8 @@ "ifName": "if-1/9540-rx", "portName": null, "ifIndex": 103522, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17037,8 +17037,8 @@ "ifName": "if-1/9550-tx", "portName": null, "ifIndex": 103621, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17137,8 +17137,8 @@ "ifName": "if-1/9550-rx", "portName": null, "ifIndex": 103622, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17237,8 +17237,8 @@ "ifName": "if-1/9560-tx", "portName": null, "ifIndex": 103721, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17337,8 +17337,8 @@ "ifName": "if-1/9560-rx", "portName": null, "ifIndex": 103722, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17437,8 +17437,8 @@ "ifName": "if-1/9570-tx", "portName": null, "ifIndex": 103821, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17537,8 +17537,8 @@ "ifName": "if-1/9570-rx", "portName": null, "ifIndex": 103822, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17637,8 +17637,8 @@ "ifName": "if-1/9580-tx", "portName": null, "ifIndex": 103921, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17737,8 +17737,8 @@ "ifName": "if-1/9580-rx", "portName": null, "ifIndex": 103922, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17837,8 +17837,8 @@ "ifName": "if-1/9590-tx", "portName": null, "ifIndex": 104021, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -17937,8 +17937,8 @@ "ifName": "if-1/9590-rx", "portName": null, "ifIndex": 104022, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -18037,8 +18037,8 @@ "ifName": "if-1/9600-tx", "portName": null, "ifIndex": 104121, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -18137,8 +18137,8 @@ "ifName": "if-1/9600-rx", "portName": null, "ifIndex": 104122, - "ifSpeed": 0, - "ifSpeed_prev": null, + "ifSpeed": null, + "ifSpeed_prev": 0, "ifConnectorPresent": "true", "ifOperStatus": "down", "ifOperStatus_prev": "down", @@ -18237,14 +18237,14 @@ "sensor_deleted": 0, "sensor_class": "dbm", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100110", - "sensor_index": "dcpInterfaceRxPower.100110", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100220", + "sensor_index": "dcpInterfaceRxPower.100220", "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line - RX", + "sensor_descr": "if-1/9210 - RX", "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -11, + "sensor_current": -99, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -18262,14 +18262,14 @@ "sensor_deleted": 0, "sensor_class": "dbm", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100320", - "sensor_index": "dcpInterfaceRxPower.100320", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100520", + "sensor_index": "dcpInterfaceRxPower.100520", "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/9220 - RX", + "sensor_descr": "if-1/9240 - RX", "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -6.7, + "sensor_current": -99, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -18287,14 +18287,14 @@ "sensor_deleted": 0, "sensor_class": "dbm", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100420", - "sensor_index": "dcpInterfaceRxPower.100420", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100620", + "sensor_index": "dcpInterfaceRxPower.100620", "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/9230 - RX", + "sensor_descr": "if-1/9250 - RX", "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -6.1, + "sensor_current": -99, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -18312,14 +18312,14 @@ "sensor_deleted": 0, "sensor_class": "dbm", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100110", - "sensor_index": "dcpInterfaceTxPower.100110", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100720", + "sensor_index": "dcpInterfaceRxPower.100720", "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line - TX", + "sensor_descr": "if-1/9260 - RX", "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 4.8, + "sensor_current": -99, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -18337,14 +18337,1789 @@ "sensor_deleted": 0, "sensor_class": "dbm", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100420", - "sensor_index": "dcpInterfaceTxPower.100420", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100820", + "sensor_index": "dcpInterfaceRxPower.100820", "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/9230 - TX", + "sensor_descr": "if-1/9270 - RX", "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 5.6, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100920", + "sensor_index": "dcpInterfaceRxPower.100920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9280 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101020", + "sensor_index": "dcpInterfaceRxPower.101020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9290 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101120", + "sensor_index": "dcpInterfaceRxPower.101120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9300 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101220", + "sensor_index": "dcpInterfaceRxPower.101220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9310 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101320", + "sensor_index": "dcpInterfaceRxPower.101320", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9320 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101420", + "sensor_index": "dcpInterfaceRxPower.101420", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9330 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101520", + "sensor_index": "dcpInterfaceRxPower.101520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9340 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101620", + "sensor_index": "dcpInterfaceRxPower.101620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9350 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101720", + "sensor_index": "dcpInterfaceRxPower.101720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9360 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101820", + "sensor_index": "dcpInterfaceRxPower.101820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9370 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.101920", + "sensor_index": "dcpInterfaceRxPower.101920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9380 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102020", + "sensor_index": "dcpInterfaceRxPower.102020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9390 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102120", + "sensor_index": "dcpInterfaceRxPower.102120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9400 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102220", + "sensor_index": "dcpInterfaceRxPower.102220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9410 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102320", + "sensor_index": "dcpInterfaceRxPower.102320", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9420 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102420", + "sensor_index": "dcpInterfaceRxPower.102420", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9430 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102520", + "sensor_index": "dcpInterfaceRxPower.102520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9440 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102620", + "sensor_index": "dcpInterfaceRxPower.102620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9450 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102720", + "sensor_index": "dcpInterfaceRxPower.102720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9460 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102820", + "sensor_index": "dcpInterfaceRxPower.102820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9470 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.102920", + "sensor_index": "dcpInterfaceRxPower.102920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9480 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103020", + "sensor_index": "dcpInterfaceRxPower.103020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9490 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103120", + "sensor_index": "dcpInterfaceRxPower.103120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9500 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103220", + "sensor_index": "dcpInterfaceRxPower.103220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9510 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103320", + "sensor_index": "dcpInterfaceRxPower.103320", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9520 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103420", + "sensor_index": "dcpInterfaceRxPower.103420", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9530 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103520", + "sensor_index": "dcpInterfaceRxPower.103520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9540 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103620", + "sensor_index": "dcpInterfaceRxPower.103620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9550 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103720", + "sensor_index": "dcpInterfaceRxPower.103720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9560 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103820", + "sensor_index": "dcpInterfaceRxPower.103820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9570 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.103920", + "sensor_index": "dcpInterfaceRxPower.103920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9580 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.104020", + "sensor_index": "dcpInterfaceRxPower.104020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9590 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.104120", + "sensor_index": "dcpInterfaceRxPower.104120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9600 - RX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100220", + "sensor_index": "dcpInterfaceTxPower.100220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9210 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100520", + "sensor_index": "dcpInterfaceTxPower.100520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9240 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100620", + "sensor_index": "dcpInterfaceTxPower.100620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9250 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100720", + "sensor_index": "dcpInterfaceTxPower.100720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9260 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100820", + "sensor_index": "dcpInterfaceTxPower.100820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9270 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100920", + "sensor_index": "dcpInterfaceTxPower.100920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9280 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101020", + "sensor_index": "dcpInterfaceTxPower.101020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9290 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101120", + "sensor_index": "dcpInterfaceTxPower.101120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9300 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101220", + "sensor_index": "dcpInterfaceTxPower.101220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9310 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101320", + "sensor_index": "dcpInterfaceTxPower.101320", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9320 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101420", + "sensor_index": "dcpInterfaceTxPower.101420", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9330 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101520", + "sensor_index": "dcpInterfaceTxPower.101520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9340 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101620", + "sensor_index": "dcpInterfaceTxPower.101620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9350 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101720", + "sensor_index": "dcpInterfaceTxPower.101720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9360 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101820", + "sensor_index": "dcpInterfaceTxPower.101820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9370 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.101920", + "sensor_index": "dcpInterfaceTxPower.101920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9380 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102020", + "sensor_index": "dcpInterfaceTxPower.102020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9390 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102120", + "sensor_index": "dcpInterfaceTxPower.102120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9400 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102220", + "sensor_index": "dcpInterfaceTxPower.102220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9410 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102320", + "sensor_index": "dcpInterfaceTxPower.102320", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9420 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102420", + "sensor_index": "dcpInterfaceTxPower.102420", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9430 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102520", + "sensor_index": "dcpInterfaceTxPower.102520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9440 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102620", + "sensor_index": "dcpInterfaceTxPower.102620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9450 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102720", + "sensor_index": "dcpInterfaceTxPower.102720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9460 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102820", + "sensor_index": "dcpInterfaceTxPower.102820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9470 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.102920", + "sensor_index": "dcpInterfaceTxPower.102920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9480 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103020", + "sensor_index": "dcpInterfaceTxPower.103020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9490 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103120", + "sensor_index": "dcpInterfaceTxPower.103120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9500 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103220", + "sensor_index": "dcpInterfaceTxPower.103220", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9510 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103320", + "sensor_index": "dcpInterfaceTxPower.103320", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9520 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103420", + "sensor_index": "dcpInterfaceTxPower.103420", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9530 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103520", + "sensor_index": "dcpInterfaceTxPower.103520", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9540 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103620", + "sensor_index": "dcpInterfaceTxPower.103620", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9550 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103720", + "sensor_index": "dcpInterfaceTxPower.103720", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9560 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103820", + "sensor_index": "dcpInterfaceTxPower.103820", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9570 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.103920", + "sensor_index": "dcpInterfaceTxPower.103920", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9580 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.104020", + "sensor_index": "dcpInterfaceTxPower.104020", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9590 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "rrd_type": "GAUGE", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.104120", + "sensor_index": "dcpInterfaceTxPower.104120", + "sensor_type": "smartos-dcp-m", + "sensor_descr": "if-1/9600 - TX", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -99, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -18462,7 +20237,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100110", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100110", "sensor_index": "dcpInterfaceStatus.100110", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/line", @@ -18487,7 +20262,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100220", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100220", "sensor_index": "dcpInterfaceStatus.100220", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9210", @@ -18512,7 +20287,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100320", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100320", "sensor_index": "dcpInterfaceStatus.100320", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9220", @@ -18537,7 +20312,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100420", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100420", "sensor_index": "dcpInterfaceStatus.100420", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9230", @@ -18562,7 +20337,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100520", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100520", "sensor_index": "dcpInterfaceStatus.100520", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9240", @@ -18587,7 +20362,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100620", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100620", "sensor_index": "dcpInterfaceStatus.100620", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9250", @@ -18612,7 +20387,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100720", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100720", "sensor_index": "dcpInterfaceStatus.100720", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9260", @@ -18637,7 +20412,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100820", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100820", "sensor_index": "dcpInterfaceStatus.100820", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9270", @@ -18662,7 +20437,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100920", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.100920", "sensor_index": "dcpInterfaceStatus.100920", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9280", @@ -18687,7 +20462,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101020", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101020", "sensor_index": "dcpInterfaceStatus.101020", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9290", @@ -18712,7 +20487,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101120", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101120", "sensor_index": "dcpInterfaceStatus.101120", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9300", @@ -18737,7 +20512,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101220", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101220", "sensor_index": "dcpInterfaceStatus.101220", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9310", @@ -18762,7 +20537,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101320", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101320", "sensor_index": "dcpInterfaceStatus.101320", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9320", @@ -18787,7 +20562,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101420", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101420", "sensor_index": "dcpInterfaceStatus.101420", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9330", @@ -18812,7 +20587,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101520", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101520", "sensor_index": "dcpInterfaceStatus.101520", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9340", @@ -18837,7 +20612,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101620", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101620", "sensor_index": "dcpInterfaceStatus.101620", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9350", @@ -18862,7 +20637,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101720", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101720", "sensor_index": "dcpInterfaceStatus.101720", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9360", @@ -18887,7 +20662,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101820", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101820", "sensor_index": "dcpInterfaceStatus.101820", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9370", @@ -18912,7 +20687,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101920", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.101920", "sensor_index": "dcpInterfaceStatus.101920", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9380", @@ -18937,7 +20712,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102020", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102020", "sensor_index": "dcpInterfaceStatus.102020", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9390", @@ -18962,7 +20737,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102120", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102120", "sensor_index": "dcpInterfaceStatus.102120", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9400", @@ -18987,7 +20762,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102220", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102220", "sensor_index": "dcpInterfaceStatus.102220", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9410", @@ -19012,7 +20787,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102320", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102320", "sensor_index": "dcpInterfaceStatus.102320", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9420", @@ -19037,7 +20812,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102420", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102420", "sensor_index": "dcpInterfaceStatus.102420", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9430", @@ -19062,7 +20837,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102520", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102520", "sensor_index": "dcpInterfaceStatus.102520", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9440", @@ -19087,7 +20862,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102620", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102620", "sensor_index": "dcpInterfaceStatus.102620", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9450", @@ -19112,7 +20887,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102720", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102720", "sensor_index": "dcpInterfaceStatus.102720", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9460", @@ -19137,7 +20912,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102820", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102820", "sensor_index": "dcpInterfaceStatus.102820", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9470", @@ -19162,7 +20937,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102920", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.102920", "sensor_index": "dcpInterfaceStatus.102920", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9480", @@ -19187,7 +20962,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103020", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103020", "sensor_index": "dcpInterfaceStatus.103020", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9490", @@ -19212,7 +20987,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103120", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103120", "sensor_index": "dcpInterfaceStatus.103120", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9500", @@ -19237,7 +21012,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103220", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103220", "sensor_index": "dcpInterfaceStatus.103220", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9510", @@ -19262,7 +21037,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103320", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103320", "sensor_index": "dcpInterfaceStatus.103320", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9520", @@ -19287,7 +21062,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103420", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103420", "sensor_index": "dcpInterfaceStatus.103420", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9530", @@ -19312,7 +21087,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103520", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103520", "sensor_index": "dcpInterfaceStatus.103520", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9540", @@ -19337,7 +21112,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103620", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103620", "sensor_index": "dcpInterfaceStatus.103620", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9550", @@ -19362,7 +21137,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103720", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103720", "sensor_index": "dcpInterfaceStatus.103720", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9560", @@ -19387,7 +21162,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103820", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103820", "sensor_index": "dcpInterfaceStatus.103820", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9570", @@ -19412,7 +21187,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103920", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.103920", "sensor_index": "dcpInterfaceStatus.103920", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9580", @@ -19437,7 +21212,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.104020", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.104020", "sensor_index": "dcpInterfaceStatus.104020", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9590", @@ -19462,7 +21237,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.104120", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.5.104120", "sensor_index": "dcpInterfaceStatus.104120", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/9600", @@ -19487,7 +21262,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100111", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.3.1.1.1.4.100111", "sensor_index": "dcpLinkviewLocalStatus.100111", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/line-tx - if-1/line-rx", @@ -19512,7 +21287,7 @@ "sensor_deleted": 0, "sensor_class": "state", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100112", + "sensor_oid": ".1.3.6.1.4.1.30826.2.2.3.1.1.1.4.100112", "sensor_index": "dcpLinkviewLocalStatus.100112", "sensor_type": "InterfaceStatus", "sensor_descr": "if-1/line-rx - if-1/line-tx", @@ -19558,1333 +21333,7 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100110", - "sensor_index": "dcpInterfaceRxPower.100110", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line - RX", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -11, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100320", - "sensor_index": "dcpInterfaceRxPower.100320", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/9220 - RX", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -6.7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.3.100420", - "sensor_index": "dcpInterfaceRxPower.100420", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/9230 - RX", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -6.1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100110", - "sensor_index": "dcpInterfaceTxPower.100110", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line - TX", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 4.8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.1.1.1.1.4.100420", - "sensor_index": "dcpInterfaceTxPower.100420", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/9230 - TX", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 5.6, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.3.1.1.1.5.100111", - "sensor_index": "dcpLinkviewLocalPower.100111", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line-tx - if-1/line-rx - Local Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 4.8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.3.1.1.1.5.100112", - "sensor_index": "dcpLinkviewLocalPower.100112", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line-rx - if-1/line-tx - Local Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -11, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.3.1.1.1.14.100111", - "sensor_index": "dcpLinkviewRemotePower.100111", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line-tx - if-1/line-rx - Remote Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": -9.4, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.3.1.1.1.14.100112", - "sensor_index": "dcpLinkviewRemotePower.100112", - "sensor_type": "smartos-dcp-m", - "sensor_descr": "if-1/line-rx - if-1/line-tx - Remote Power", - "group": null, - "sensor_divisor": 10, - "sensor_multiplier": 1, - "sensor_current": 2.3, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100110", - "sensor_index": "dcpInterfaceStatus.100110", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/line", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 3, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100220", - "sensor_index": "dcpInterfaceStatus.100220", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9210", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100320", - "sensor_index": "dcpInterfaceStatus.100320", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9220", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 2, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100420", - "sensor_index": "dcpInterfaceStatus.100420", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9230", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 3, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100520", - "sensor_index": "dcpInterfaceStatus.100520", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9240", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100620", - "sensor_index": "dcpInterfaceStatus.100620", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9250", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100720", - "sensor_index": "dcpInterfaceStatus.100720", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9260", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100820", - "sensor_index": "dcpInterfaceStatus.100820", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9270", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100920", - "sensor_index": "dcpInterfaceStatus.100920", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9280", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101020", - "sensor_index": "dcpInterfaceStatus.101020", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9290", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101120", - "sensor_index": "dcpInterfaceStatus.101120", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9300", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101220", - "sensor_index": "dcpInterfaceStatus.101220", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9310", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101320", - "sensor_index": "dcpInterfaceStatus.101320", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9320", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101420", - "sensor_index": "dcpInterfaceStatus.101420", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9330", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101520", - "sensor_index": "dcpInterfaceStatus.101520", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9340", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101620", - "sensor_index": "dcpInterfaceStatus.101620", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9350", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101720", - "sensor_index": "dcpInterfaceStatus.101720", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9360", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101820", - "sensor_index": "dcpInterfaceStatus.101820", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9370", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.101920", - "sensor_index": "dcpInterfaceStatus.101920", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9380", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102020", - "sensor_index": "dcpInterfaceStatus.102020", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9390", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102120", - "sensor_index": "dcpInterfaceStatus.102120", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9400", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102220", - "sensor_index": "dcpInterfaceStatus.102220", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9410", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102320", - "sensor_index": "dcpInterfaceStatus.102320", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9420", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102420", - "sensor_index": "dcpInterfaceStatus.102420", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9430", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102520", - "sensor_index": "dcpInterfaceStatus.102520", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9440", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102620", - "sensor_index": "dcpInterfaceStatus.102620", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9450", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102720", - "sensor_index": "dcpInterfaceStatus.102720", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9460", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102820", - "sensor_index": "dcpInterfaceStatus.102820", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9470", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.102920", - "sensor_index": "dcpInterfaceStatus.102920", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9480", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103020", - "sensor_index": "dcpInterfaceStatus.103020", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9490", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103120", - "sensor_index": "dcpInterfaceStatus.103120", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9500", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103220", - "sensor_index": "dcpInterfaceStatus.103220", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9510", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103320", - "sensor_index": "dcpInterfaceStatus.103320", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9520", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103420", - "sensor_index": "dcpInterfaceStatus.103420", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9530", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103520", - "sensor_index": "dcpInterfaceStatus.103520", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9540", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103620", - "sensor_index": "dcpInterfaceStatus.103620", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9550", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103720", - "sensor_index": "dcpInterfaceStatus.103720", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9560", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103820", - "sensor_index": "dcpInterfaceStatus.103820", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9570", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.103920", - "sensor_index": "dcpInterfaceStatus.103920", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9580", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.104020", - "sensor_index": "dcpInterfaceStatus.104020", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9590", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.104120", - "sensor_index": "dcpInterfaceStatus.104120", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/9600", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100111", - "sensor_index": "dcpLinkviewLocalStatus.100111", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/line-tx - if-1/line-rx", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 3, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.30826.2.2.2.1.1.1.5.100112", - "sensor_index": "dcpLinkviewLocalStatus.100112", - "sensor_type": "InterfaceStatus", - "sensor_descr": "if-1/line-rx - if-1/line-tx", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 0, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 3, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "InterfaceStatus" - } - ], - "state_indexes": [ - { - "state_name": "InterfaceStatus", - "state_descr": "idle", - "state_draw_graph": 1, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "InterfaceStatus", - "state_descr": "down", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "InterfaceStatus", - "state_descr": "up", - "state_draw_graph": 1, - "state_value": 3, - "state_generic_value": 0 - } - ] - } + "poller": "matches discovery" }, "entity-physical": { "discovery": { diff --git a/tests/data/ssu2000.json b/tests/data/ssu2000.json index cce7bc75e5..8e7bc207df 100644 --- a/tests/data/ssu2000.json +++ b/tests/data/ssu2000.json @@ -134,7 +134,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 2, + "sensor_current": 5, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -159,7 +159,7 @@ "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 1, + "sensor_current": 5, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -503,487 +503,6 @@ } ] }, - "poller": { - "sensors": [ - { - "sensor_deleted": 0, - "sensor_class": "delay", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.5.1.1.4.1.3", - "sensor_index": "staGpsPhaseA.1.3", - "sensor_type": "ssu2000", - "sensor_descr": "GPS Phase A - Chassis.Slot# 1.3", - "group": null, - "sensor_divisor": 1000000000, - "sensor_multiplier": 1, - "sensor_current": 1.23e-7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "delay", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.5.1.1.4.1.5", - "sensor_index": "staGpsPhaseA.1.5", - "sensor_type": "ssu2000", - "sensor_descr": "GPS Phase A - Chassis.Slot# 1.5", - "group": null, - "sensor_divisor": 1000000000, - "sensor_multiplier": 1, - "sensor_current": 1.34e-7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "delay", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.5.1.1.5.1.3", - "sensor_index": "staGpsPhaseB.1.3", - "sensor_type": "ssu2000", - "sensor_descr": "GPS Phase B - Chassis.Slot# 1.3", - "group": null, - "sensor_divisor": 1000000000, - "sensor_multiplier": 1, - "sensor_current": 1.2e-8, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "delay", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.5.1.1.5.1.5", - "sensor_index": "staGpsPhaseB.1.5", - "sensor_type": "ssu2000", - "sensor_descr": "GPS Phase B - Chassis.Slot# 1.5", - "group": null, - "sensor_divisor": 1000000000, - "sensor_multiplier": 1, - "sensor_current": -1.23e-7, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.2.1.1.4.1.1", - "sensor_index": "1.1", - "sensor_type": "staClkTable", - "sensor_descr": "PLL Mode - Chassis.Slot# 1.1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 2, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staClkTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.2.1.1.4.1.12", - "sensor_index": "1.12", - "sensor_type": "staClkTable", - "sensor_descr": "PLL Mode - Chassis.Slot# 1.12", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 5, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": 1, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staClkTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.5.1.1.3.1.3", - "sensor_index": "1.3", - "sensor_type": "staGpsTable", - "sensor_descr": "GPS Status - Chassis.Slot# 1.3", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staGpsTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.5.1.1.3.1.5", - "sensor_index": "1.5", - "sensor_type": "staGpsTable", - "sensor_descr": "GPS Status - Chassis.Slot# 1.5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staGpsTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.15.1.1.3.2.1", - "sensor_index": "2.1", - "sensor_type": "staPtNtpTable", - "sensor_descr": "NTP Status - Chassis.Slot# 2.1", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staPtNtpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.15.1.1.3.2.13", - "sensor_index": "2.13", - "sensor_type": "staPtNtpTable", - "sensor_descr": "NTP Status - Chassis.Slot# 2.13", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staPtNtpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.15.1.1.3.2.5", - "sensor_index": "2.5", - "sensor_type": "staPtNtpTable", - "sensor_descr": "NTP Status - Chassis.Slot# 2.5", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staPtNtpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.15.1.1.3.2.9", - "sensor_index": "2.9", - "sensor_type": "staPtNtpTable", - "sensor_descr": "NTP Status - Chassis.Slot# 2.9", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staPtNtpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.16.1.1.3.1.10", - "sensor_index": "1.10", - "sensor_type": "staPtPtpTable", - "sensor_descr": "PTP Status - Chassis.Slot# 1.10", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staPtPtpTable" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.601.3.1.1.2.16.1.1.3.1.11", - "sensor_index": "1.11", - "sensor_type": "staPtPtpTable", - "sensor_descr": "PTP Status - Chassis.Slot# 1.11", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "rrd_type": "GAUGE", - "state_name": "staPtPtpTable" - } - ], - "state_indexes": [ - { - "state_name": "staClkTable", - "state_descr": "failed", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 2 - }, - { - "state_name": "staClkTable", - "state_descr": "warmup", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "staClkTable", - "state_descr": "acquire", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "staClkTable", - "state_descr": "holdover", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 1 - }, - { - "state_name": "staClkTable", - "state_descr": "lock", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 0 - }, - { - "state_name": "staGpsTable", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "staGpsTable", - "state_descr": "selected", - "state_draw_graph": 0, - "state_value": 2, - "state_generic_value": 0 - }, - { - "state_name": "staGpsTable", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "staGpsTable", - "state_descr": "fault", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 2 - }, - { - "state_name": "staGpsTable", - "state_descr": "reject", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "staPtNtpTable", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "staPtNtpTable", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "staPtNtpTable", - "state_descr": "fault", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 2 - }, - { - "state_name": "staPtNtpTable", - "state_descr": "reject", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - }, - { - "state_name": "staPtPtpTable", - "state_descr": "normal", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "staPtPtpTable", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 1 - }, - { - "state_name": "staPtPtpTable", - "state_descr": "fault", - "state_draw_graph": 0, - "state_value": 4, - "state_generic_value": 2 - }, - { - "state_name": "staPtPtpTable", - "state_descr": "reject", - "state_draw_graph": 0, - "state_value": 5, - "state_generic_value": 1 - } - ] - } + "poller": "matches discovery" } } diff --git a/tests/data/timos.json b/tests/data/timos.json index 4662f95322..ee4f1acd91 100644 --- a/tests/data/timos.json +++ b/tests/data/timos.json @@ -3126,7 +3126,7 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35684352", + "entPhysicalIndex": "35684352", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -3151,7 +3151,7 @@ "sensor_limit_low_warn": 0.02, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35717120", + "entPhysicalIndex": "35717120", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -3176,7 +3176,7 @@ "sensor_limit_low_warn": 0.02, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69238784", + "entPhysicalIndex": "69238784", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -3201,38 +3201,13 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69271552", + "entPhysicalIndex": "69271552", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.102793216", - "sensor_index": "rx-1.102793216", - "sensor_type": "timos", - "sensor_descr": "3/1/1 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -5.23, - "sensor_limit": -6, - "sensor_limit_warn": -7, - "sensor_limit_low": -24.95, - "sensor_limit_low_warn": -23.98, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.102793216", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -3244,14 +3219,14 @@ "group": "1/1/1", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -2.38, + "sensor_current": -2.3784680769641, "sensor_limit": 1.4998845649148, "sensor_limit_warn": 0.49992856920143, "sensor_limit_low": -16.00326278519, "sensor_limit_low_warn": -15.003129173816, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35684352", + "entPhysicalIndex": "35684352", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -3269,14 +3244,14 @@ "group": "1/1/2", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -3.89, + "sensor_current": -3.8912699961995, "sensor_limit": 2.500050284869, "sensor_limit_warn": 2.000018654066, "sensor_limit_low": -20, "sensor_limit_low_warn": -18.013429130456, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35717120", + "entPhysicalIndex": "35717120", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -3294,14 +3269,14 @@ "group": "2/1/1", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -6.29, + "sensor_current": -6.2930190742442, "sensor_limit": 2.500050284869, "sensor_limit_warn": 2.000018654066, "sensor_limit_low": -20, "sensor_limit_low_warn": -18.013429130456, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69238784", + "entPhysicalIndex": "69238784", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -3319,45 +3294,20 @@ "group": "2/1/2", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -2.34, + "sensor_current": -2.33735909348, "sensor_limit": 1.4998845649148, "sensor_limit_warn": 0.49992856920143, "sensor_limit_low": -16.00326278519, "sensor_limit_low_warn": -15.003129173816, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69271552", + "entPhysicalIndex": "69271552", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.102793216", - "sensor_index": "tx-1.102793216", - "sensor_type": "timos", - "sensor_descr": "3/1/1 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -5.65, - "sensor_limit": 5, - "sensor_limit_warn": 4, - "sensor_limit_low": -2, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.102793216", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -3369,14 +3319,14 @@ "group": "1/1/1", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -2.89, + "sensor_current": -2.8878347567891, "sensor_limit": 1.4998845649148, "sensor_limit_warn": 0.49992856920143, "sensor_limit_low": -8.9997426989214, "sensor_limit_low_warn": -7.9997073344623, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35684352", + "entPhysicalIndex": "35684352", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -3394,14 +3344,14 @@ "group": "1/1/2", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -1.38, + "sensor_current": -1.3798794874978, "sensor_limit": 2.000018654066, "sensor_limit_warn": 0.99991233544684, "sensor_limit_low": -7.9997073344623, "sensor_limit_low_warn": -7.0005709997723, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35717120", + "entPhysicalIndex": "35717120", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -3419,14 +3369,14 @@ "group": "2/1/1", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -1.5, + "sensor_current": -1.5039634191755, "sensor_limit": 2.000018654066, "sensor_limit_warn": 0.99991233544684, "sensor_limit_low": -7.9997073344623, "sensor_limit_low_warn": -7.0005709997723, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69238784", + "entPhysicalIndex": "69238784", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -3444,14 +3394,14 @@ "group": "2/1/2", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -2.96, + "sensor_current": -2.9610704636746, "sensor_limit": 1.4998845649148, "sensor_limit_warn": 0.49992856920143, "sensor_limit_low": -8.9997426989214, "sensor_limit_low_warn": -7.9997073344623, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69271552", + "entPhysicalIndex": "69271552", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -4151,8 +4101,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "102793216", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4176,8 +4126,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35684352", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4201,8 +4151,8 @@ "sensor_limit_low_warn": -8, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35717120", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4226,8 +4176,8 @@ "sensor_limit_low_warn": -8, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69238784", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4251,8 +4201,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69271552", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4501,8 +4451,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "102793216", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4526,8 +4476,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35684352", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4551,8 +4501,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35717120", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4576,8 +4526,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69238784", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4601,8 +4551,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69271552", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -4977,7 +4927,7 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35684352", + "entPhysicalIndex": "35684352", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -5002,7 +4952,7 @@ "sensor_limit_low_warn": 0.02, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35717120", + "entPhysicalIndex": "35717120", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -5027,7 +4977,7 @@ "sensor_limit_low_warn": 0.02, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69238784", + "entPhysicalIndex": "69238784", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -5052,38 +5002,13 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69271552", + "entPhysicalIndex": "69271552", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.102793216", - "sensor_index": "rx-1.102793216", - "sensor_type": "timos", - "sensor_descr": "3/1/1 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -5.2287874528034, - "sensor_limit": -6, - "sensor_limit_warn": -7, - "sensor_limit_low": -24.95, - "sensor_limit_low_warn": -23.98, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.102793216", - "entPhysicalIndex_measured": "ports", - "sensor_prev": -5.23, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -5102,9 +5027,9 @@ "sensor_limit_low_warn": -15.003129173816, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35684352", + "entPhysicalIndex": "35684352", "entPhysicalIndex_measured": "ports", - "sensor_prev": -2.38, + "sensor_prev": -2.3784680769641, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -5127,9 +5052,9 @@ "sensor_limit_low_warn": -18.013429130456, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35717120", + "entPhysicalIndex": "35717120", "entPhysicalIndex_measured": "ports", - "sensor_prev": -3.89, + "sensor_prev": -3.8912699961995, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -5152,9 +5077,9 @@ "sensor_limit_low_warn": -18.013429130456, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69238784", + "entPhysicalIndex": "69238784", "entPhysicalIndex_measured": "ports", - "sensor_prev": -6.29, + "sensor_prev": -6.2930190742442, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -5177,38 +5102,13 @@ "sensor_limit_low_warn": -15.003129173816, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69271552", + "entPhysicalIndex": "69271552", "entPhysicalIndex_measured": "ports", - "sensor_prev": -2.34, + "sensor_prev": -2.33735909348, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.102793216", - "sensor_index": "tx-1.102793216", - "sensor_type": "timos", - "sensor_descr": "3/1/1 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -5.6479289675925, - "sensor_limit": 5, - "sensor_limit_warn": 4, - "sensor_limit_low": -2, - "sensor_limit_low_warn": -1, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.102793216", - "entPhysicalIndex_measured": "ports", - "sensor_prev": -5.65, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -5227,9 +5127,9 @@ "sensor_limit_low_warn": -7.9997073344623, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35684352", + "entPhysicalIndex": "35684352", "entPhysicalIndex_measured": "ports", - "sensor_prev": -2.89, + "sensor_prev": -2.8878347567891, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -5252,9 +5152,9 @@ "sensor_limit_low_warn": -7.0005709997723, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.35717120", + "entPhysicalIndex": "35717120", "entPhysicalIndex_measured": "ports", - "sensor_prev": -1.38, + "sensor_prev": -1.3798794874978, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -5277,9 +5177,9 @@ "sensor_limit_low_warn": -7.0005709997723, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69238784", + "entPhysicalIndex": "69238784", "entPhysicalIndex_measured": "ports", - "sensor_prev": -1.5, + "sensor_prev": -1.5039634191755, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -5302,9 +5202,9 @@ "sensor_limit_low_warn": -7.9997073344623, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.69271552", + "entPhysicalIndex": "69271552", "entPhysicalIndex_measured": "ports", - "sensor_prev": -2.96, + "sensor_prev": -2.9610704636746, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -6002,8 +5902,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "102793216", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6027,8 +5927,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35684352", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6052,8 +5952,8 @@ "sensor_limit_low_warn": -8, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35717120", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6077,8 +5977,8 @@ "sensor_limit_low_warn": -8, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69238784", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6102,8 +6002,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69271552", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6352,8 +6252,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "102793216", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6377,8 +6277,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35684352", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6402,8 +6302,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "35717120", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6427,8 +6327,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69238784", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6452,8 +6352,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "69271552", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7168,8 +7068,8 @@ "sdpLastMgmtChange": 8, "sdpLastStatusChange": 16538799, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.1" + "sdpFarEndInetAddress": "172.17.0.1", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10002, @@ -7183,8 +7083,8 @@ "sdpLastMgmtChange": 8, "sdpLastStatusChange": 32330107, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.2" + "sdpFarEndInetAddress": "172.17.0.2", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10003, @@ -7198,8 +7098,8 @@ "sdpLastMgmtChange": 13057174, "sdpLastStatusChange": 16811037, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.5" + "sdpFarEndInetAddress": "172.17.0.5", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10004, @@ -7213,8 +7113,8 @@ "sdpLastMgmtChange": 9342591, "sdpLastStatusChange": 9342591, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.3" + "sdpFarEndInetAddress": "172.17.0.3", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10005, @@ -7228,8 +7128,8 @@ "sdpLastMgmtChange": 11924642, "sdpLastStatusChange": 34312390, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.4" + "sdpFarEndInetAddress": "172.17.0.4", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10020, @@ -7243,8 +7143,8 @@ "sdpLastMgmtChange": 36298092, "sdpLastStatusChange": 6328403, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.10" + "sdpFarEndInetAddress": "172.17.0.10", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10028, @@ -7258,8 +7158,8 @@ "sdpLastMgmtChange": 5337496, "sdpLastStatusChange": 5337523, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.11" + "sdpFarEndInetAddress": "172.17.0.11", + "sdpFarEndInetAddressType": "ipv4" } ], "mpls_sdp_binds": [ @@ -8138,8 +8038,8 @@ "sdpLastMgmtChange": 8, "sdpLastStatusChange": 16538799, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.1" + "sdpFarEndInetAddress": "172.17.0.1", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10002, @@ -8153,8 +8053,8 @@ "sdpLastMgmtChange": 8, "sdpLastStatusChange": 32330107, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.2" + "sdpFarEndInetAddress": "172.17.0.2", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10003, @@ -8168,8 +8068,8 @@ "sdpLastMgmtChange": 13057174, "sdpLastStatusChange": 16811037, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.5" + "sdpFarEndInetAddress": "172.17.0.5", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10004, @@ -8183,8 +8083,8 @@ "sdpLastMgmtChange": 9342591, "sdpLastStatusChange": 9342591, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.3" + "sdpFarEndInetAddress": "172.17.0.3", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10005, @@ -8198,8 +8098,8 @@ "sdpLastMgmtChange": 11924642, "sdpLastStatusChange": 34312390, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.4" + "sdpFarEndInetAddress": "172.17.0.4", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10020, @@ -8213,8 +8113,8 @@ "sdpLastMgmtChange": 36298092, "sdpLastStatusChange": 6328403, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.10" + "sdpFarEndInetAddress": "172.17.0.10", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10028, @@ -8228,8 +8128,8 @@ "sdpLastMgmtChange": 5337496, "sdpLastStatusChange": 5337523, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "172.17.0.11" + "sdpFarEndInetAddress": "172.17.0.11", + "sdpFarEndInetAddressType": "ipv4" } ], "mpls_sdp_binds": [ @@ -8748,5 +8648,549 @@ } ] } + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 35684352, + "low_ifIndex": 1342177281, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 35717120, + "low_ifIndex": 1342177282, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 69271552, + "low_ifIndex": 1342177283, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1342177281, + "low_ifIndex": 4, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1342177282, + "low_ifIndex": 3, + "ifStackStatus": "active" + } + ] + } + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 1, + "entPhysicalDescr": "SAS-R CHASSIS", + "entPhysicalClass": "chassis", + "entPhysicalName": "7210 SAS-R6", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 50331649, + "entPhysicalDescr": null, + "entPhysicalClass": "physChassis", + "entPhysicalName": "Chassis 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE08151AARE01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1806C3752", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "3HE08151AARE01", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886081, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE08153AARD01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1803C7135", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE08153AARD01", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886082, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Supply 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE08153AARD01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1803C7157", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE08153AARD01", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663297, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Fan 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE08152AARE02", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1746C6321", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE08152AARE02", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217729, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R6 on Mon May 8 14:01:43 IST 2017 by builder", + "entPhysicalSoftwareRev": "X-9.0.R6 on Mon May 8 14:01:43 IST 2017 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE09153AARC01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1803C4073", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE09153AARC01", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217730, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R6 on Mon May 8 14:01:43 IST 2017 by builder", + "entPhysicalSoftwareRev": "X-9.0.R6 on Mon May 8 14:01:43 IST 2017 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE09153AARC01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1752C2633", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE09153AARC01", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217731, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R6 on Mon May 8 14:01:43 IST 2017 by builder", + "entPhysicalSoftwareRev": "X-9.0.R6 on Mon May 8 14:01:43 IST 2017 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE09153AARC01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1815C3093", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "3HE09153AARC01", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217732, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217733, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 5", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217734, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 6", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 150995057, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-10.0.R3 on Thu Mar 29 10:16:31 IST 2018 by sasbuild", + "entPhysicalSoftwareRev": "X-10.0.R3 on Thu Mar 29 10:16:31 IST 2018 by sasbuild", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE08154ABRE02", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1747C3434", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "3HE08154ABRE02", + "ifIndex": null + }, + { + "entPhysicalIndex": 150995073, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot B", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-10.0.R3 on Thu Mar 29 10:16:31 IST 2018 by sasbuild", + "entPhysicalSoftwareRev": "X-10.0.R3 on Thu Mar 29 10:16:31 IST 2018 by sasbuild", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE08154ABRE02", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1747C3432", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "3HE08154ABRE02", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772167, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 7, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772168, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot B", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 8, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549633, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE09153AARC01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1803C4073", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE09153AARC01", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549889, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 2/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE09153AARC01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1752C2633", + "entPhysicalContainedIn": 134217730, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE09153AARC01", + "ifIndex": null + }, + { + "entPhysicalIndex": 184550145, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 3/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "false", + "entPhysicalModelName": "3HE09153AARC01", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1815C3093", + "entPhysicalContainedIn": 134217731, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE09153AARC01", + "ifIndex": null + }, + { + "entPhysicalIndex": 201328385, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150995057, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201328386, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf2:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150995057, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201328387, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "uf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150995057, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201328641, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150995073, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201328642, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf2:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150995073, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201328643, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "uf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150995073, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + } + ] + }, + "poller": "matches discovery" + }, + "discovery-protocols": { + "discovery": { + "links": [ + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "bng-a.mgmt..net", + "remote_port": "35717120", + "remote_platform": null, + "remote_version": "TiMOS-C-15.1.R4 cpm/hops64 Nokia 7750 SR Copyright (c) 2000-2018 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Wed Apr 25 13:13:58 PDT 2018 by builder in /builds/151B/R4/panos/main", + "ifAlias": "10-Gig Ethernet", + "ifDescr": "1/1/1, 10-Gig Ethernet", + "ifName": "1/1/1" + }, + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "nokia-sw-b.mgmt..net", + "remote_port": "35717120", + "remote_platform": null, + "remote_version": "TiMOS-C-10.0.R4 cpm/hops Nokia SAS-R 7210 Copyright (c) 2000-2018 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Mon Apr 30 12:30:30 IST 2018 by sasbuild in /home/sasbuild/10.0B1/R4/panos/main", + "ifAlias": "10-Gig Ethernet", + "ifDescr": "1/1/2, 10-Gig Ethernet", + "ifName": "1/1/2" + }, + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "service-sw-a", + "remote_port": "line1", + "remote_platform": null, + "remote_version": "", + "ifAlias": "10-Gig Ethernet", + "ifDescr": "2/1/2, 10-Gig Ethernet", + "ifName": "2/1/2" + }, + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "SAS-R6-DUS..net", + "remote_port": "102793216", + "remote_platform": null, + "remote_version": "TiMOS-C-10.0.R4 cpm/hops Nokia SAS-R 7210 Copyright (c) 2000-2018 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Mon Apr 30 12:30:30 IST 2018 by sasbuild in /home/sasbuild/10.0B1/R4/panos/main", + "ifAlias": "transit:", + "ifDescr": "2/1/1, 10-Gig Ethernet, \\transit:", + "ifName": "2/1/1" + } + ] + } } } diff --git a/tests/data/timos_7705-pmc.json b/tests/data/timos_7705-pmc.json index d783c85f72..7a57185c16 100644 --- a/tests/data/timos_7705-pmc.json +++ b/tests/data/timos_7705-pmc.json @@ -8469,5 +8469,3442 @@ } ] } + }, + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.6527.6.1.1.2.1", + "sysDescr": "TiMOS-B-9.0.R9 both/hops Nokia 7705 SAR Copyright (c) 2000-2020 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Tue Mar 24 11:26:44 EDT 2020 by builder in /builds/F90B/R9/panos/main", + "sysContact": "", + "version": "9.0.R9", + "hardware": "7705 SAR-8 v2", + "features": null, + "location": "", + "os": "timos", + "type": "network", + "serial": "NS1628S3574", + "icon": "nokia.svg" + } + ] + }, + "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 1610645504, + "low_ifIndex": 3, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1610678272, + "low_ifIndex": 2, + "ifStackStatus": "active" + } + ] + } + }, + "entity-physical": { + "discovery": { + "entPhysical": [ + { + "entPhysicalIndex": 1, + "entPhysicalDescr": "8-Slot Chassis: 6 Adapter slots, 2 CSM slots", + "entPhysicalClass": "chassis", + "entPhysicalName": "7705 SAR-8 v2", + "entPhysicalHardwareRev": null, + "entPhysicalFirmwareRev": null, + "entPhysicalSoftwareRev": null, + "entPhysicalAlias": null, + "entPhysicalAssetID": null, + "entPhysicalIsFRU": null, + "entPhysicalModelName": null, + "entPhysicalVendorType": null, + "entPhysicalSerialNum": null, + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": null, + "ifIndex": null + }, + { + "entPhysicalIndex": 16842753, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "Fan Alarm Module", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE06792EAAC0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1626S0915", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "3HE06792EAAC0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908289, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908290, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908291, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 16908292, + "entPhysicalDescr": null, + "entPhysicalClass": "other", + "entPhysicalName": "External Alarm Input 4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 0, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 50331649, + "entPhysicalDescr": null, + "entPhysicalClass": "physChassis", + "entPhysicalName": "Chassis 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE06791AAAB0102", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1628S3574", + "entPhysicalContainedIn": 0, + "entPhysicalParentRelPos": -1, + "entPhysicalMfgName": "3HE06791AAAB0102", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886081, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Feed 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 83886082, + "entPhysicalDescr": null, + "entPhysicalClass": "powerSupply", + "entPhysicalName": "Power Feed 2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 100663297, + "entPhysicalDescr": null, + "entPhysicalClass": "fan", + "entPhysicalName": "Fans", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 134217729, + "entPhysicalDescr": null, + "entPhysicalClass": "ioModule", + "entPhysicalName": "Slot 1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R9 on Tue Mar 24 11:12:52 EDT 2020 by builder", + "entPhysicalSoftwareRev": "X-9.0.R9 on Tue Mar 24 11:12:52 EDT 2020 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02774ABAD0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1627S3701", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "3HE02774ABAD0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 150994977, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R9 on Tue Mar 24 11:12:52 EDT 2020 by builder", + "entPhysicalSoftwareRev": "X-9.0.R9 on Tue Mar 24 11:12:52 EDT 2020 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02774ABAD0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1627S3701", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "3HE02774ABAD0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 150994993, + "entPhysicalDescr": null, + "entPhysicalClass": "cpmModule", + "entPhysicalName": "Slot B", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "X-9.0.R9 on Tue Mar 24 11:12:52 EDT 2020 by builder", + "entPhysicalSoftwareRev": "X-9.0.R9 on Tue Mar 24 11:12:52 EDT 2020 by builder", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02774ABAD0101", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1627S3962", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "3HE02774ABAD0101", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772162, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot A", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 167772163, + "entPhysicalDescr": null, + "entPhysicalClass": "fabricModule", + "entPhysicalName": "Slot B", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 50331649, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549633, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/1", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549634, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/2", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549635, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/3", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02782AAAC0105", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS2207S0797", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "3HE02782AAAC0105", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549636, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/4", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "3HE02782AAAB0112", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "NS1524S0205", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 4, + "entPhysicalMfgName": "3HE02782AAAB0112", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549637, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/5", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 5, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 184549638, + "entPhysicalDescr": null, + "entPhysicalClass": "mdaModule", + "entPhysicalName": "MDA 1/6", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 134217729, + "entPhysicalParentRelPos": 6, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327105, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327106, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf2:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327107, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf3:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994977, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327361, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf1:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994993, + "entPhysicalParentRelPos": 1, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327362, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf2:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994993, + "entPhysicalParentRelPos": 2, + "entPhysicalMfgName": "", + "ifIndex": null + }, + { + "entPhysicalIndex": 201327363, + "entPhysicalDescr": null, + "entPhysicalClass": "flashDiskModule", + "entPhysicalName": "cf3:", + "entPhysicalHardwareRev": "1.0", + "entPhysicalFirmwareRev": "", + "entPhysicalSoftwareRev": "", + "entPhysicalAlias": "", + "entPhysicalAssetID": "", + "entPhysicalIsFRU": "true", + "entPhysicalModelName": "", + "entPhysicalVendorType": null, + "entPhysicalSerialNum": "", + "entPhysicalContainedIn": 150994993, + "entPhysicalParentRelPos": 3, + "entPhysicalMfgName": "", + "ifIndex": null + } + ] + }, + "poller": "matches discovery" + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.6527.3.1.2.1.1.1.0", + "processor_index": "0", + "processor_type": "timos", + "processor_usage": 7, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "mempool_type": "timos", + "mempool_class": "system", + "mempool_precision": 1000, + "mempool_descr": "Memory", + "mempool_perc": 61, + "mempool_perc_oid": null, + "mempool_used": 1029672000, + "mempool_used_oid": ".1.3.6.1.4.1.6527.3.1.2.1.1.11.0", + "mempool_free": 650200000, + "mempool_free_oid": ".1.3.6.1.4.1.6527.3.1.2.1.1.10.0", + "mempool_total": 1679872000, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "mpls": { + "discovery": { + "mpls_lsps": [ + { + "vrf_oid": 1, + "lsp_oid": 1, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-CaPOrtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.24", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 2, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChWartr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.12", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 3, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-PiRirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.15", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 4, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChBiArtr02", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.11", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 5, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-FlTortr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.16", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 6, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ViHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.14", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 7, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ShMortr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.19", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 8, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-MoHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.17", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 9, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-CaMortr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.18", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 10, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-WhHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.13", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 11, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-StHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.20", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 12, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ShHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.21", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 13, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChBiArtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.1", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 14, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChBiBrtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.2", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + }, + { + "vrf_oid": 1, + "lsp_oid": 15, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-CaShrtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.23", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": null, + "mplsLspTimeUp": null, + "mplsLspTimeDown": null, + "mplsLspPrimaryTimeUp": null, + "mplsLspTransitions": null, + "mplsLspLastTransition": null, + "mplsLspConfiguredPaths": null, + "mplsLspStandbyPaths": null, + "mplsLspOperationalPaths": null + } + ], + "mpls_lsp_paths": [ + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 300, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 17, + "mplsLspPathTunnelCHopListIndex": 17, + "vrf_oid": 1, + "lsp_oid": 1 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 9140, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 6, + "mplsLspPathTunnelCHopListIndex": 262, + "vrf_oid": 1, + "lsp_oid": 2 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6805, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 10, + "mplsLspPathTunnelCHopListIndex": 209, + "vrf_oid": 1, + "lsp_oid": 3 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6905, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 11, + "mplsLspPathTunnelCHopListIndex": 264, + "vrf_oid": 1, + "lsp_oid": 4 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 4570, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 19, + "mplsLspPathTunnelCHopListIndex": 64, + "vrf_oid": 1, + "lsp_oid": 5 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 9040, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 16, + "mplsLspPathTunnelCHopListIndex": 208, + "vrf_oid": 1, + "lsp_oid": 6 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 100, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 12, + "mplsLspPathTunnelCHopListIndex": 12, + "vrf_oid": 1, + "lsp_oid": 7 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 2335, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 14, + "mplsLspPathTunnelCHopListIndex": 14, + "vrf_oid": 1, + "lsp_oid": 8 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 100, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 15, + "mplsLspPathTunnelCHopListIndex": 15, + "vrf_oid": 1, + "lsp_oid": 9 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 11275, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 5, + "mplsLspPathTunnelCHopListIndex": 207, + "vrf_oid": 1, + "lsp_oid": 10 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 2335, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 13, + "mplsLspPathTunnelCHopListIndex": 13, + "vrf_oid": 1, + "lsp_oid": 11 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 4570, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 8, + "mplsLspPathTunnelCHopListIndex": 8, + "vrf_oid": 1, + "lsp_oid": 12 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6805, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 7, + "mplsLspPathTunnelCHopListIndex": 263, + "vrf_oid": 1, + "lsp_oid": 13 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6905, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 18, + "mplsLspPathTunnelCHopListIndex": 265, + "vrf_oid": 1, + "lsp_oid": 14 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 200, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": null, + "mplsLspPathTimeDown": null, + "mplsLspPathTransitionCount": null, + "mplsLspPathTunnelARHopListIndex": 9, + "mplsLspPathTunnelCHopListIndex": 9, + "vrf_oid": 1, + "lsp_oid": 15 + } + ], + "mpls_sdps": [ + { + "sdp_oid": 10010, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452218, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.1", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10020, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452230, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.2", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10110, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452220, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.11", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10120, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452210, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.12", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10130, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452219, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.13", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10140, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452229, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.14", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10150, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452206, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.15", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10160, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452208, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.16", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10170, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452235, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.17", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10180, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452217, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.18", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10190, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452230, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.19", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10200, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452226, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.20", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10210, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452228, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.21", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10230, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452210, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.23", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10240, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452219, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.24", + "sdpFarEndInetAddressType": "ipv4" + } + ], + "mpls_sdp_binds": [ + { + "sdp_oid": 10010, + "svc_oid": 9, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452218, + "sdpBindType": "spoke", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 625973254, + "sdpBindBaseStatsIngFwdOctets": 837791574399, + "sdpBindBaseStatsEgrFwdPackets": 361734537, + "sdpBindBaseStatsEgrFwdOctets": 56610973038 + }, + { + "sdp_oid": 10010, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452218, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 3389077, + "sdpBindBaseStatsIngFwdOctets": 354264241, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10110, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452220, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214462, + "sdpBindBaseStatsIngFwdOctets": 44617260, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10120, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452210, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214786, + "sdpBindBaseStatsIngFwdOctets": 44510546, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10130, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452219, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 215514, + "sdpBindBaseStatsIngFwdOctets": 44634560, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10140, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452230, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10150, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452206, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10160, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452208, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10170, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452236, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10180, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452217, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10190, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452230, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214588, + "sdpBindBaseStatsIngFwdOctets": 44153078, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10200, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452226, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214867, + "sdpBindBaseStatsIngFwdOctets": 44517176, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10210, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452228, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 215042, + "sdpBindBaseStatsIngFwdOctets": 44526254, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10230, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452210, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 4657, + "sdpBindBaseStatsIngFwdOctets": 960806, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10240, + "svc_oid": 12, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452219, + "sdpBindType": "spoke", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10240, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452219, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 80713, + "sdpBindBaseStatsIngFwdOctets": 10411985, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + } + ], + "mpls_services": [ + { + "svc_oid": 9, + "svcRowStatus": "active", + "svcType": "epipe", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "up", + "svcDescription": "", + "svcMtu": 1514, + "svcNumSaps": 1, + "svcNumSdps": 1, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 2932716, + "svcVRouterId": 0, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + }, + { + "svc_oid": 12, + "svcRowStatus": "active", + "svcType": "epipe", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "", + "svcMtu": 1514, + "svcNumSaps": 1, + "svcNumSdps": 1, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 0, + "svcVRouterId": 0, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + }, + { + "svc_oid": 29, + "svcRowStatus": "active", + "svcType": "tls", + "svcCustId": 3, + "svcAdminStatus": "up", + "svcOperStatus": "up", + "svcDescription": "", + "svcMtu": 1514, + "svcNumSaps": 1, + "svcNumSdps": 14, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 452206, + "svcVRouterId": 0, + "svcTlsMacLearning": "enabled", + "svcTlsStpAdminStatus": "disabled", + "svcTlsStpOperStatus": "down", + "svcTlsFdbTableSize": 250, + "svcTlsFdbNumEntries": 17 + }, + { + "svc_oid": 100, + "svcRowStatus": "active", + "svcType": "ies", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "", + "svcMtu": 0, + "svcNumSaps": 0, + "svcNumSdps": 0, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 0, + "svcVRouterId": 1, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + }, + { + "svc_oid": 101, + "svcRowStatus": "active", + "svcType": "tls", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "N/A[XPS_VM][MSH]", + "svcMtu": 1514, + "svcNumSaps": 2, + "svcNumSdps": 0, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 453137, + "svcVRouterId": 0, + "svcTlsMacLearning": "enabled", + "svcTlsStpAdminStatus": "disabled", + "svcTlsStpOperStatus": "down", + "svcTlsFdbTableSize": 250, + "svcTlsFdbNumEntries": 1 + } + ], + "mpls_saps": [ + { + "svc_oid": 9, + "sapPortId": 40009728, + "ifName": null, + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "epipe", + "sapDescription": "Port 1/3/5", + "sapAdminStatus": "up", + "sapOperStatus": "up", + "sapLastMgmtChange": 351233, + "sapLastStatusChange": 2932716 + }, + { + "svc_oid": 12, + "sapPortId": 40075264, + "ifName": null, + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "epipe", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + }, + { + "svc_oid": 29, + "sapPortId": 40042496, + "ifName": null, + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "tls", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + }, + { + "svc_oid": 101, + "sapPortId": 40108032, + "ifName": null, + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "tls", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 453137 + }, + { + "svc_oid": 101, + "sapPortId": 42205184, + "ifName": null, + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "tls", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + } + ] + }, + "poller": { + "mpls_lsps": [ + { + "vrf_oid": 1, + "lsp_oid": 1, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-CaPOrtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.24", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859127, + "mplsLspTimeUp": 439637579, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637581, + "mplsLspTransitions": 17, + "mplsLspLastTransition": 4396376, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 2, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChWartr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.12", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859127, + "mplsLspTimeUp": 439638978, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638980, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396390, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 3, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-PiRirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.15", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859123, + "mplsLspTimeUp": 439638878, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638880, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396389, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 4, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChBiArtr02", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.11", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859123, + "mplsLspTimeUp": 439637478, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637480, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396375, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 5, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-FlTortr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.16", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859122, + "mplsLspTimeUp": 439638779, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638781, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396388, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 6, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ViHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.14", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859122, + "mplsLspTimeUp": 439638179, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638180, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396382, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 7, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ShMortr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.19", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859121, + "mplsLspTimeUp": 439638080, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638081, + "mplsLspTransitions": 15, + "mplsLspLastTransition": 4396381, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 8, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-MoHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.17", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859121, + "mplsLspTimeUp": 439637880, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637881, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396379, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 9, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-CaMortr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.18", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859121, + "mplsLspTimeUp": 439637780, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637781, + "mplsLspTransitions": 15, + "mplsLspLastTransition": 4396378, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 10, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-WhHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.13", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859117, + "mplsLspTimeUp": 439637579, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637580, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396376, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 11, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-StHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.20", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859117, + "mplsLspTimeUp": 439637980, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637981, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396380, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 12, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ShHirtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.21", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859116, + "mplsLspTimeUp": 439638580, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638581, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396386, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 13, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChBiArtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.1", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859116, + "mplsLspTimeUp": 439637679, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439637680, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396377, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 14, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-ChBiBrtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.2", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859115, + "mplsLspTimeUp": 439638379, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638380, + "mplsLspTransitions": 13, + "mplsLspLastTransition": 4396384, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + }, + { + "vrf_oid": 1, + "lsp_oid": 15, + "mplsLspRowStatus": "active", + "mplsLspLastChange": 4, + "mplsLspName": "ChMortr01-to-CaShrtr01", + "mplsLspAdminState": "inService", + "mplsLspOperState": "inService", + "mplsLspFromAddr": "0.0.0.0", + "mplsLspToAddr": "10.101.0.23", + "mplsLspType": "dynamic", + "mplsLspFastReroute": "true", + "mplsLspAge": 484859115, + "mplsLspTimeUp": 439638480, + "mplsLspTimeDown": 0, + "mplsLspPrimaryTimeUp": 439638481, + "mplsLspTransitions": 15, + "mplsLspLastTransition": 4396385, + "mplsLspConfiguredPaths": 1, + "mplsLspStandbyPaths": 0, + "mplsLspOperationalPaths": 1 + } + ], + "mpls_lsp_paths": [ + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 300, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439637639, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 23, + "mplsLspPathTunnelARHopListIndex": 17, + "mplsLspPathTunnelCHopListIndex": 17, + "vrf_oid": 1, + "lsp_oid": 1 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 9140, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439639038, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 45, + "mplsLspPathTunnelARHopListIndex": 6, + "mplsLspPathTunnelCHopListIndex": 262, + "vrf_oid": 1, + "lsp_oid": 2 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6805, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638938, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 16, + "mplsLspPathTunnelARHopListIndex": 10, + "mplsLspPathTunnelCHopListIndex": 209, + "vrf_oid": 1, + "lsp_oid": 3 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6905, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439637538, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 44, + "mplsLspPathTunnelARHopListIndex": 11, + "mplsLspPathTunnelCHopListIndex": 264, + "vrf_oid": 1, + "lsp_oid": 4 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 4570, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638839, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 15, + "mplsLspPathTunnelARHopListIndex": 19, + "mplsLspPathTunnelCHopListIndex": 64, + "vrf_oid": 1, + "lsp_oid": 5 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 9040, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638238, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 21, + "mplsLspPathTunnelARHopListIndex": 16, + "mplsLspPathTunnelCHopListIndex": 208, + "vrf_oid": 1, + "lsp_oid": 6 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 100, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638139, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 15, + "mplsLspPathTunnelARHopListIndex": 12, + "mplsLspPathTunnelCHopListIndex": 12, + "vrf_oid": 1, + "lsp_oid": 7 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 2335, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439637939, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 14, + "mplsLspPathTunnelARHopListIndex": 14, + "mplsLspPathTunnelCHopListIndex": 14, + "vrf_oid": 1, + "lsp_oid": 8 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 100, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439637839, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 21, + "mplsLspPathTunnelARHopListIndex": 15, + "mplsLspPathTunnelCHopListIndex": 15, + "vrf_oid": 1, + "lsp_oid": 9 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 11275, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439637638, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 27, + "mplsLspPathTunnelARHopListIndex": 5, + "mplsLspPathTunnelCHopListIndex": 207, + "vrf_oid": 1, + "lsp_oid": 10 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 2335, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638039, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 15, + "mplsLspPathTunnelARHopListIndex": 13, + "mplsLspPathTunnelCHopListIndex": 13, + "vrf_oid": 1, + "lsp_oid": 11 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 4570, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638639, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 15, + "mplsLspPathTunnelARHopListIndex": 8, + "mplsLspPathTunnelCHopListIndex": 8, + "vrf_oid": 1, + "lsp_oid": 12 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6805, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439637738, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 45, + "mplsLspPathTunnelARHopListIndex": 7, + "mplsLspPathTunnelCHopListIndex": 263, + "vrf_oid": 1, + "lsp_oid": 13 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 6905, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638438, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 45, + "mplsLspPathTunnelARHopListIndex": 18, + "mplsLspPathTunnelCHopListIndex": 265, + "vrf_oid": 1, + "lsp_oid": 14 + }, + { + "path_oid": 1, + "mplsLspPathRowStatus": "active", + "mplsLspPathLastChange": 4, + "mplsLspPathType": "primary", + "mplsLspPathBandwidth": 0, + "mplsLspPathOperBandwidth": 0, + "mplsLspPathAdminState": "inService", + "mplsLspPathOperState": "inService", + "mplsLspPathState": "active", + "mplsLspPathFailCode": "noError", + "mplsLspPathFailNodeAddr": "0.0.0.0", + "mplsLspPathMetric": 200, + "mplsLspPathOperMetric": null, + "mplsLspPathTimeUp": 439638539, + "mplsLspPathTimeDown": 0, + "mplsLspPathTransitionCount": 21, + "mplsLspPathTunnelARHopListIndex": 9, + "mplsLspPathTunnelCHopListIndex": 9, + "vrf_oid": 1, + "lsp_oid": 15 + } + ], + "mpls_sdps": [ + { + "sdp_oid": 10010, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452218, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.1", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10020, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452230, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.2", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10110, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452220, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.11", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10120, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452210, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.12", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10130, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452219, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.13", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10140, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452229, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.14", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10150, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452206, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.15", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10160, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452208, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.16", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10170, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452235, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.17", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10180, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452217, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.18", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10190, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452230, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.19", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10200, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452226, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.20", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10210, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452228, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.21", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10230, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452210, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.23", + "sdpFarEndInetAddressType": "ipv4" + }, + { + "sdp_oid": 10240, + "sdpRowStatus": "active", + "sdpDelivery": "mpls", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "up", + "sdpAdminPathMtu": 0, + "sdpOperPathMtu": 1542, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 452219, + "sdpActiveLspType": "rsvp", + "sdpFarEndInetAddress": "10.101.0.24", + "sdpFarEndInetAddressType": "ipv4" + } + ], + "mpls_sdp_binds": [ + { + "sdp_oid": 10010, + "svc_oid": 9, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452218, + "sdpBindType": "spoke", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 625973254, + "sdpBindBaseStatsIngFwdOctets": 837791574399, + "sdpBindBaseStatsEgrFwdPackets": 361734537, + "sdpBindBaseStatsEgrFwdOctets": 56610973038 + }, + { + "sdp_oid": 10010, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452218, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 3389077, + "sdpBindBaseStatsIngFwdOctets": 354264241, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10110, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452220, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214462, + "sdpBindBaseStatsIngFwdOctets": 44617260, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10120, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452210, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214786, + "sdpBindBaseStatsIngFwdOctets": 44510546, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10130, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452219, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 215514, + "sdpBindBaseStatsIngFwdOctets": 44634560, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10140, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452230, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10150, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452206, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10160, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452208, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10170, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452236, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10180, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452217, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10190, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452230, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214588, + "sdpBindBaseStatsIngFwdOctets": 44153078, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10200, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452226, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 214867, + "sdpBindBaseStatsIngFwdOctets": 44517176, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10210, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452228, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 215042, + "sdpBindBaseStatsIngFwdOctets": 44526254, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10230, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452210, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 4657, + "sdpBindBaseStatsIngFwdOctets": 960806, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10240, + "svc_oid": 12, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452219, + "sdpBindType": "spoke", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + }, + { + "sdp_oid": 10240, + "svc_oid": 29, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "up", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 452219, + "sdpBindType": "mesh", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 80713, + "sdpBindBaseStatsIngFwdOctets": 10411985, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + } + ], + "mpls_services": [ + { + "svc_oid": 9, + "svcRowStatus": "active", + "svcType": "epipe", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "up", + "svcDescription": "", + "svcMtu": 1514, + "svcNumSaps": 1, + "svcNumSdps": 1, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 2932716, + "svcVRouterId": 0, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + }, + { + "svc_oid": 12, + "svcRowStatus": "active", + "svcType": "epipe", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "", + "svcMtu": 1514, + "svcNumSaps": 1, + "svcNumSdps": 1, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 0, + "svcVRouterId": 0, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + }, + { + "svc_oid": 29, + "svcRowStatus": "active", + "svcType": "tls", + "svcCustId": 3, + "svcAdminStatus": "up", + "svcOperStatus": "up", + "svcDescription": "", + "svcMtu": 1514, + "svcNumSaps": 1, + "svcNumSdps": 14, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 452206, + "svcVRouterId": 0, + "svcTlsMacLearning": "enabled", + "svcTlsStpAdminStatus": "disabled", + "svcTlsStpOperStatus": "down", + "svcTlsFdbTableSize": 250, + "svcTlsFdbNumEntries": 17 + }, + { + "svc_oid": 100, + "svcRowStatus": "active", + "svcType": "ies", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "", + "svcMtu": 0, + "svcNumSaps": 0, + "svcNumSdps": 0, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 0, + "svcVRouterId": 1, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + }, + { + "svc_oid": 101, + "svcRowStatus": "active", + "svcType": "tls", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "N/A[XPS_VM][MSH]", + "svcMtu": 1514, + "svcNumSaps": 2, + "svcNumSdps": 0, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 453137, + "svcVRouterId": 0, + "svcTlsMacLearning": "enabled", + "svcTlsStpAdminStatus": "disabled", + "svcTlsStpOperStatus": "down", + "svcTlsFdbTableSize": 250, + "svcTlsFdbNumEntries": 1 + } + ], + "mpls_saps": [ + { + "svc_oid": 9, + "sapPortId": 40009728, + "ifName": "1/3/5", + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "epipe", + "sapDescription": "Port 1/3/5", + "sapAdminStatus": "up", + "sapOperStatus": "up", + "sapLastMgmtChange": 351233, + "sapLastStatusChange": 2932716 + }, + { + "svc_oid": 12, + "sapPortId": 40075264, + "ifName": "1/3/7", + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "epipe", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + }, + { + "svc_oid": 29, + "sapPortId": 40042496, + "ifName": "1/3/6", + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "tls", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + }, + { + "svc_oid": 101, + "sapPortId": 40108032, + "ifName": "1/3/8", + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "tls", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 453137 + }, + { + "svc_oid": 101, + "sapPortId": 42205184, + "ifName": "1/4/8", + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "tls", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + } + ] + } + }, + "ospf": { + "poller": { + "ospf_ports": [ + { + "ospf_port_id": "10.10.0.53.0", + "ospfIfIpAddress": "10.10.0.53", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "pointToPoint", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "pointToPoint", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 3, + "ospfIfAuthKey": "", + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "md5", + "ospfIfMetricIpAddress": "10.10.0.53", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 100, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 3 + }, + { + "ospf_port_id": "10.10.0.58.0", + "ospfIfIpAddress": "10.10.0.58", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "pointToPoint", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "pointToPoint", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 3, + "ospfIfAuthKey": "", + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "md5", + "ospfIfMetricIpAddress": "10.10.0.58", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 100, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 2 + }, + { + "ospf_port_id": "10.101.0.22.0", + "ospfIfIpAddress": "10.101.0.22", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "broadcast", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "designatedRouter", + "ospfIfDesignatedRouter": "10.101.0.22", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 2, + "ospfIfAuthKey": "", + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "none", + "ospfIfMetricIpAddress": "10.101.0.22", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 0, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 1 + }, + { + "ospf_port_id": "100.101.0.22.0", + "ospfIfIpAddress": "100.101.0.22", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "broadcast", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "designatedRouter", + "ospfIfDesignatedRouter": "100.101.0.22", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 2, + "ospfIfAuthKey": "", + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "none", + "ospfIfMetricIpAddress": "100.101.0.22", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 0, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 5 + }, + { + "ospf_port_id": "192.168.1.13.0", + "ospfIfIpAddress": "192.168.1.13", + "ospfAddressLessIf": 0, + "ospfIfAreaId": "0.0.0.0", + "ospfIfType": "broadcast", + "ospfIfAdminStat": "enabled", + "ospfIfRtrPriority": 1, + "ospfIfTransitDelay": 1, + "ospfIfRetransInterval": 5, + "ospfIfHelloInterval": 10, + "ospfIfRtrDeadInterval": 40, + "ospfIfPollInterval": 120, + "ospfIfState": "down", + "ospfIfDesignatedRouter": "0.0.0.0", + "ospfIfBackupDesignatedRouter": "0.0.0.0", + "ospfIfEvents": 0, + "ospfIfAuthKey": "", + "ospfIfStatus": "active", + "ospfIfMulticastForwarding": "blocked", + "ospfIfDemand": "false", + "ospfIfAuthType": "none", + "ospfIfMetricIpAddress": "192.168.1.13", + "ospfIfMetricAddressLessIf": 0, + "ospfIfMetricTOS": 0, + "ospfIfMetricValue": 1000, + "ospfIfMetricStatus": "active", + "context_name": "", + "ifIndex": 4 + } + ], + "ospf_instances": [ + { + "ospf_instance_id": 0, + "ospfRouterId": "0.0.0.0", + "ospfAdminStat": "enabled", + "ospfVersionNumber": "version2", + "ospfAreaBdrRtrStatus": "false", + "ospfASBdrRtrStatus": "false", + "ospfExternLsaCount": 9, + "ospfExternLsaCksumSum": 423956, + "ospfTOSSupport": "false", + "ospfOriginateNewLsas": 191800, + "ospfRxNewLsas": 0, + "ospfExtLsdbLimit": -1, + "ospfMulticastExtensions": 0, + "ospfExitOverflowInterval": 0, + "ospfDemandExtensions": "false", + "context_name": "" + } + ], + "ospf_areas": [ + { + "ospfAreaId": "0.0.0.0", + "ospfAuthType": null, + "ospfImportAsExtern": "importExternal", + "ospfSpfRuns": 182, + "ospfAreaBdrRtrCount": 0, + "ospfAsBdrRtrCount": 2, + "ospfAreaLsaCount": 66, + "ospfAreaLsaCksumSum": 1984175, + "ospfAreaSummary": "sendAreaSummary", + "ospfAreaStatus": "active", + "context_name": "" + } + ], + "ospf_nbrs": [ + { + "port_id": null, + "ospf_nbr_id": "10.10.0.54.0", + "ospfNbrIpAddr": "10.10.0.54", + "ospfNbrAddressLessIndex": 0, + "ospfNbrRtrId": "10.101.0.19", + "ospfNbrOptions": 66, + "ospfNbrPriority": 1, + "ospfNbrState": "full", + "ospfNbrEvents": 4, + "ospfNbrLsRetransQLen": 0, + "ospfNbmaNbrStatus": "active", + "ospfNbmaNbrPermanence": "dynamic", + "ospfNbrHelloSuppressed": "false", + "context_name": "" + }, + { + "port_id": null, + "ospf_nbr_id": "10.10.0.57.0", + "ospfNbrIpAddr": "10.10.0.57", + "ospfNbrAddressLessIndex": 0, + "ospfNbrRtrId": "10.101.0.18", + "ospfNbrOptions": 66, + "ospfNbrPriority": 1, + "ospfNbrState": "full", + "ospfNbrEvents": 5, + "ospfNbrLsRetransQLen": 0, + "ospfNbmaNbrStatus": "active", + "ospfNbmaNbrPermanence": "dynamic", + "ospfNbrHelloSuppressed": "false", + "context_name": "" + } + ] + } } } diff --git a/tests/data/timos_7705.json b/tests/data/timos_7705.json index 5b171badca..68843c6a7f 100644 --- a/tests/data/timos_7705.json +++ b/tests/data/timos_7705.json @@ -4950,7 +4950,7 @@ "sensor_limit_low_warn": 0.004, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.39976960", + "entPhysicalIndex": "39976960", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -4975,7 +4975,7 @@ "sensor_limit_low_warn": 0.012, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.40108032", + "entPhysicalIndex": "40108032", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -5000,38 +5000,13 @@ "sensor_limit_low_warn": -18.996294548824, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.39976960", + "entPhysicalIndex": "39976960", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.40042496", - "sensor_index": "rx-1.40042496", - "sensor_type": "timos", - "sensor_descr": "1/3/6 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -33.01, - "sensor_limit": -2, - "sensor_limit_warn": -3, - "sensor_limit_low": -22.01, - "sensor_limit_low_warn": -21.02, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.40042496", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -5043,14 +5018,14 @@ "group": "1/3/8", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -8.54, + "sensor_current": -8.5387196432176, "sensor_limit": 0.99991233544684, "sensor_limit_warn": 0, "sensor_limit_low": -26.98970004336, "sensor_limit_low_warn": -26.02059991328, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.40108032", + "entPhysicalIndex": "40108032", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -5068,45 +5043,20 @@ "group": "1/3/4", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -4.47, + "sensor_current": -4.4708854978349, "sensor_limit": 0.99991233544684, "sensor_limit_warn": -1.0001543745061, "sensor_limit_low": -13.496924768681, "sensor_limit_low_warn": -9.5000714307986, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.39976960", + "entPhysicalIndex": "39976960", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.40042496", - "sensor_index": "tx-1.40042496", - "sensor_type": "timos", - "sensor_descr": "1/3/6 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -30.97, - "sensor_limit": -2, - "sensor_limit_warn": -3, - "sensor_limit_low": -10, - "sensor_limit_low_warn": -9, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.40042496", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -5118,14 +5068,14 @@ "group": "1/3/8", "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": -7.19, + "sensor_current": -7.1896663275227, "sensor_limit": 0.99991233544684, "sensor_limit_warn": 0, "sensor_limit_low": -13.001622741328, "sensor_limit_low_warn": -11.999706407559, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.40108032", + "entPhysicalIndex": "40108032", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -5825,8 +5775,8 @@ "sensor_limit_low_warn": -40, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "39976960", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -5850,8 +5800,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40009728", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -5875,8 +5825,8 @@ "sensor_limit_low_warn": -35, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40042496", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -5900,8 +5850,8 @@ "sensor_limit_low_warn": -45, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40108032", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6000,8 +5950,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "39976960", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6025,8 +5975,8 @@ "sensor_limit_low_warn": 2.9, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40009728", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6050,8 +6000,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40042496", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6075,8 +6025,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40108032", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -6351,7 +6301,7 @@ "sensor_limit_low_warn": 0.004, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.39976960", + "entPhysicalIndex": "39976960", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -6376,7 +6326,7 @@ "sensor_limit_low_warn": 0.012, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.40108032", + "entPhysicalIndex": "40108032", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -6401,38 +6351,13 @@ "sensor_limit_low_warn": -18.996294548824, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.39976960", + "entPhysicalIndex": "39976960", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.40042496", - "sensor_index": "rx-1.40042496", - "sensor_type": "timos", - "sensor_descr": "1/3/6 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -33.01029995664, - "sensor_limit": -2, - "sensor_limit_warn": -3, - "sensor_limit_low": -22.01, - "sensor_limit_low_warn": -21.02, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.40042496", - "entPhysicalIndex_measured": "ports", - "sensor_prev": -33.01, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -6451,9 +6376,9 @@ "sensor_limit_low_warn": -26.02059991328, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.40108032", + "entPhysicalIndex": "40108032", "entPhysicalIndex_measured": "ports", - "sensor_prev": -8.54, + "sensor_prev": -8.5387196432176, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -6476,38 +6401,13 @@ "sensor_limit_low_warn": -9.5000714307986, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.39976960", + "entPhysicalIndex": "39976960", "entPhysicalIndex_measured": "ports", - "sensor_prev": -4.47, + "sensor_prev": -4.4708854978349, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.40042496", - "sensor_index": "tx-1.40042496", - "sensor_type": "timos", - "sensor_descr": "1/3/6 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -30.969100130081, - "sensor_limit": -2, - "sensor_limit_warn": -3, - "sensor_limit_low": -10, - "sensor_limit_low_warn": -9, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.40042496", - "entPhysicalIndex_measured": "ports", - "sensor_prev": -30.97, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "dbm", @@ -6526,9 +6426,9 @@ "sensor_limit_low_warn": -11.999706407559, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.40108032", + "entPhysicalIndex": "40108032", "entPhysicalIndex_measured": "ports", - "sensor_prev": -7.19, + "sensor_prev": -7.1896663275227, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null @@ -7226,8 +7126,8 @@ "sensor_limit_low_warn": -40, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "39976960", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7251,8 +7151,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40009728", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7276,8 +7176,8 @@ "sensor_limit_low_warn": -35, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40042496", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7301,8 +7201,8 @@ "sensor_limit_low_warn": -45, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40108032", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7401,8 +7301,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "39976960", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7426,8 +7326,8 @@ "sensor_limit_low_warn": 2.9, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40009728", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7451,8 +7351,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40042496", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7476,8 +7376,8 @@ "sensor_limit_low_warn": 3, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "40108032", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -7920,8 +7820,8 @@ "sdpLastMgmtChange": 3, "sdpLastStatusChange": 7406217, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.15.0.1" + "sdpFarEndInetAddress": "10.15.0.1", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 2, @@ -7935,8 +7835,8 @@ "sdpLastMgmtChange": 3, "sdpLastStatusChange": 99, "sdpActiveLspType": "ldp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.18.3.1" + "sdpFarEndInetAddress": "10.18.3.1", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10, @@ -7950,8 +7850,8 @@ "sdpLastMgmtChange": 3, "sdpLastStatusChange": 100, "sdpActiveLspType": "ldp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.15.0.1" + "sdpFarEndInetAddress": "10.15.0.1", + "sdpFarEndInetAddressType": "ipv4" } ], "mpls_sdp_binds": [ @@ -8282,8 +8182,8 @@ "sdpLastMgmtChange": 3, "sdpLastStatusChange": 7406217, "sdpActiveLspType": "rsvp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.15.0.1" + "sdpFarEndInetAddress": "10.15.0.1", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 2, @@ -8297,8 +8197,8 @@ "sdpLastMgmtChange": 3, "sdpLastStatusChange": 99, "sdpActiveLspType": "ldp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.18.3.1" + "sdpFarEndInetAddress": "10.18.3.1", + "sdpFarEndInetAddressType": "ipv4" }, { "sdp_oid": 10, @@ -8312,8 +8212,8 @@ "sdpLastMgmtChange": 3, "sdpLastStatusChange": 100, "sdpActiveLspType": "ldp", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.15.0.1" + "sdpFarEndInetAddress": "10.15.0.1", + "sdpFarEndInetAddressType": "ipv4" } ], "mpls_sdp_binds": [ @@ -8592,7 +8492,7 @@ "ospfIfMetricValue": 0, "ospfIfMetricStatus": "active", "context_name": "", - "ifIndex": null + "ifIndex": 1 }, { "ospf_port_id": "10.18.30.14.0", @@ -8622,7 +8522,7 @@ "ospfIfMetricValue": 0, "ospfIfMetricStatus": "active", "context_name": "", - "ifIndex": null + "ifIndex": 2 }, { "ospf_port_id": "10.18.60.86.0", @@ -8652,7 +8552,7 @@ "ospfIfMetricValue": 100, "ospfIfMetricStatus": "active", "context_name": "", - "ifIndex": null + "ifIndex": 5 } ], "ospf_instances": [ @@ -9172,5 +9072,33 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 40108032, + "low_ifIndex": 5, + "ifStackStatus": "active" + } + ] + } + }, + "discovery-protocols": { + "discovery": { + "links": [ + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "SITEA-7750", + "remote_port": "35913728", + "remote_platform": null, + "remote_version": "TiMOS-C-15.1.R6 cpm/hops64 Nokia 7750 SR Copyright (c) 2000-2018 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Wed Aug 15 13:44:27 PDT 2018 by builder in /builds/151B/R6/panos/main", + "ifAlias": "SAR: to-SITEA-7750 1/1/8", + "ifDescr": "1/3/8, 10/100/Gig Ethernet SFP, \\SAR: to-SITEA-7750 1/1/8", + "ifName": "1/3/8" + } + ] + } } } diff --git a/tests/data/timos_hc.json b/tests/data/timos_hc.json index bf66696c24..932fdaeccf 100644 --- a/tests/data/timos_hc.json +++ b/tests/data/timos_hc.json @@ -8430,8 +8430,8 @@ "sdpLastMgmtChange": 4, "sdpLastStatusChange": 0, "sdpActiveLspType": "not-applicable", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.1.97.30" + "sdpFarEndInetAddress": "10.1.97.30", + "sdpFarEndInetAddressType": "ipv4" } ], "mpls_sdp_binds": [ @@ -8503,8 +8503,8 @@ "sdpLastMgmtChange": 4, "sdpLastStatusChange": 0, "sdpActiveLspType": "not-applicable", - "sdpFarEndInetAddressType": "ipv4", - "sdpFarEndInetAddress": "10.1.97.30" + "sdpFarEndInetAddress": "10.1.97.30", + "sdpFarEndInetAddressType": "ipv4" } ], "mpls_sdp_binds": [ @@ -8797,5 +8797,46 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 35684352, + "low_ifIndex": 2, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 37781504, + "low_ifIndex": 3, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 46170112, + "low_ifIndex": 1509949473, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 46235648, + "low_ifIndex": 131073, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 46235648, + "low_ifIndex": 131074, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 46333952, + "low_ifIndex": 1509949478, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1509949473, + "low_ifIndex": 131075, + "ifStackStatus": "active" + } + ] + } } } diff --git a/tests/data/timos_ixr-s.json b/tests/data/timos_ixr-s.json index 57232a15d1..57090fcda9 100644 --- a/tests/data/timos_ixr-s.json +++ b/tests/data/timos_ixr-s.json @@ -12442,7 +12442,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.1", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12467,7 +12467,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.2", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12492,7 +12492,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.3", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12517,7 +12517,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.4", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12542,7 +12542,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.1", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12567,7 +12567,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.2", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12592,7 +12592,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.3", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12617,7 +12617,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.4", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -12642,7 +12642,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.1", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12667,7 +12667,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.2", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12692,7 +12692,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.3", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12717,7 +12717,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.4", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12742,7 +12742,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.1", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12767,7 +12767,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.2", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12792,7 +12792,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.3", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12817,7 +12817,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.4", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12842,7 +12842,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.1", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12867,7 +12867,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.2", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12892,7 +12892,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.3", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12917,7 +12917,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.4", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12942,7 +12942,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.1", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12967,7 +12967,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.2", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -12992,7 +12992,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.3", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13017,7 +13017,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.4", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13042,7 +13042,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.1", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13067,7 +13067,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.2", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13092,7 +13092,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.3", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13117,7 +13117,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.4", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13142,7 +13142,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.1", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13167,7 +13167,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.2", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13192,7 +13192,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.3", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -13217,113 +13217,13 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.4", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.1610891608", - "sensor_index": "rx-1.1610891608", - "sensor_type": "timos", - "sensor_descr": "1/1/43 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -16, - "sensor_limit_low_warn": -15, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891608", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.1610891616", - "sensor_index": "rx-1.1610891616", - "sensor_type": "timos", - "sensor_descr": "1/1/44 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -16, - "sensor_limit_low_warn": -15, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891616", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.1610891608", - "sensor_index": "tx-1.1610891608", - "sensor_type": "timos", - "sensor_descr": "1/1/43 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -9, - "sensor_limit_low_warn": -8, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891608", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.1610891616", - "sensor_index": "tx-1.1610891616", - "sensor_type": "timos", - "sensor_descr": "1/1/44 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -9, - "sensor_limit_low_warn": -8, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891616", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "percent", @@ -14092,8 +13992,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891608", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14117,8 +14017,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891616", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14142,8 +14042,8 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902592", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14167,8 +14067,8 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902656", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14192,8 +14092,8 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902720", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14292,8 +14192,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891608", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14317,8 +14217,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891616", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14342,8 +14242,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902592", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14367,8 +14267,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902656", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14392,8 +14292,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902720", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -14717,7 +14617,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.1", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14742,7 +14642,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.2", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14767,7 +14667,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.3", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14792,7 +14692,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.4", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14817,7 +14717,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.1", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14842,7 +14742,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.2", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14867,7 +14767,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.3", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14892,7 +14792,7 @@ "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.4", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, @@ -14917,7 +14817,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.1", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.001114596238, "user_func": "uw_to_dbm", @@ -14942,7 +14842,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.2", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.5491044215453, "user_func": "uw_to_dbm", @@ -14967,7 +14867,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.3", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.4713822610089, "user_func": "uw_to_dbm", @@ -14992,7 +14892,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.4", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.3613401681543, "user_func": "uw_to_dbm", @@ -15017,7 +14917,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.1", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.370057764291, "user_func": "uw_to_dbm", @@ -15042,7 +14942,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.2", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.9926138017708, "user_func": "uw_to_dbm", @@ -15067,7 +14967,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.3", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.3195356919898, "user_func": "uw_to_dbm", @@ -15092,7 +14992,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.4", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.7160945621667, "user_func": "uw_to_dbm", @@ -15117,7 +15017,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.1", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15142,7 +15042,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.2", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15167,7 +15067,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.3", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15192,7 +15092,7 @@ "sensor_limit_low_warn": -10.599818449923, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.4", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15217,7 +15117,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.1", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.9462532948386, "user_func": "uw_to_dbm", @@ -15242,7 +15142,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.2", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.8001111905772, "user_func": "uw_to_dbm", @@ -15267,7 +15167,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.3", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.6414458247018, "user_func": "uw_to_dbm", @@ -15292,7 +15192,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902592.4", + "entPhysicalIndex": "1610902592", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.659265496091, "user_func": "uw_to_dbm", @@ -15317,7 +15217,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.1", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.9041574703329, "user_func": "uw_to_dbm", @@ -15342,7 +15242,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.2", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.0248831706009, "user_func": "uw_to_dbm", @@ -15367,7 +15267,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.3", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 1.4129296008159, "user_func": "uw_to_dbm", @@ -15392,7 +15292,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902656.4", + "entPhysicalIndex": "1610902656", "entPhysicalIndex_measured": "ports", "sensor_prev": 2.412724699017, "user_func": "uw_to_dbm", @@ -15417,7 +15317,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.1", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15442,7 +15342,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.2", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15467,7 +15367,7 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.3", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", @@ -15492,113 +15392,13 @@ "sensor_limit_low_warn": -4.000078224159, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": "1.1610902720.4", + "entPhysicalIndex": "1610902720", "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": "uw_to_dbm", "rrd_type": "GAUGE", "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.1610891608", - "sensor_index": "rx-1.1610891608", - "sensor_type": "timos", - "sensor_descr": "1/1/43 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -16, - "sensor_limit_low_warn": -15, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891608", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.21.1.1610891616", - "sensor_index": "rx-1.1610891616", - "sensor_type": "timos", - "sensor_descr": "1/1/44 RX Power Int-Cal", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -16, - "sensor_limit_low_warn": -15, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891616", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.1610891608", - "sensor_index": "tx-1.1610891608", - "sensor_type": "timos", - "sensor_descr": "1/1/43 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -9, - "sensor_limit_low_warn": -8, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891608", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, - { - "sensor_deleted": 0, - "sensor_class": "dbm", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.4.31.1.16.1.1610891616", - "sensor_index": "tx-1.1610891616", - "sensor_type": "timos", - "sensor_descr": "1/1/44 TX Power", - "group": null, - "sensor_divisor": 10000, - "sensor_multiplier": 1, - "sensor_current": -40, - "sensor_limit": 1.5, - "sensor_limit_warn": 0.5, - "sensor_limit_low": -9, - "sensor_limit_low_warn": -8, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": "1.1610891616", - "entPhysicalIndex_measured": "ports", - "sensor_prev": null, - "user_func": "mw_to_dbm", - "rrd_type": "GAUGE", - "state_name": null - }, { "sensor_deleted": 0, "sensor_class": "percent", @@ -16367,8 +16167,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891608", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16392,8 +16192,8 @@ "sensor_limit_low_warn": -5, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891616", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16417,8 +16217,8 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902592", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16442,8 +16242,8 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902656", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16467,8 +16267,8 @@ "sensor_limit_low_warn": 0, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902720", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16567,8 +16367,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891608", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16592,8 +16392,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610891616", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16617,8 +16417,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902592", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16642,8 +16442,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902656", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -16667,8 +16467,8 @@ "sensor_limit_low_warn": 3.1, "sensor_alert": 1, "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, + "entPhysicalIndex": "1610902720", + "entPhysicalIndex_measured": "ports", "sensor_prev": null, "user_func": null, "rrd_type": "GAUGE", @@ -17590,5 +17390,49 @@ ] }, "poller": "matches discovery" + }, + "ports-stack": { + "discovery": { + "ports_stack": [ + { + "high_ifIndex": 1610902593, + "low_ifIndex": 3, + "ifStackStatus": "active" + }, + { + "high_ifIndex": 1610902657, + "low_ifIndex": 4, + "ifStackStatus": "active" + } + ] + } + }, + "discovery-protocols": { + "discovery": { + "links": [ + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "router-b", + "remote_port": "1610902593", + "remote_platform": null, + "remote_version": "TiMOS-C-21.10.R5 cpm/x86hops64 Nokia 7250 IXR Copyright (c) 2000-2022 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Wed Jun 8 13:16:52 PDT 2022 by builder in /builds/c/2110B/R5/panos/main/sros", + "ifAlias": "Core: router-b port 1/1/c49/1", + "ifDescr": "1/1/c50/1, 100-Gig Ethernet, Core: router-b port 1/1/c49/1", + "ifName": "1/1/c50/1" + }, + { + "active": 1, + "protocol": "lldp", + "remote_hostname": "router-c", + "remote_port": "1/5/c7/1", + "remote_platform": null, + "remote_version": "TiMOS-B-21.7.R1 both/hops64 Nokia 7250 IXR Copyright (c) 2000-2021 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Thu Jul 29 14:54:01 PDT 2021 by builder in /builds/c/217B/R1/panos/main/sros", + "ifAlias": "Core: router-c port 1/5/c7/1", + "ifDescr": "1/1/c49/1, 100-Gig Ethernet, Core: router-c port 1/5/c7/1", + "ifName": "1/1/c49/1" + } + ] + } } } diff --git a/tests/data/vrp_5720-vrf.json b/tests/data/vrp_5720-vrf.json index 8aa9dcce8f..7789d8d2fc 100644 --- a/tests/data/vrp_5720-vrf.json +++ b/tests/data/vrp_5720-vrf.json @@ -34080,10 +34080,10 @@ "bgpPeerRemoteAs": 65000, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 64, "bgpLocalAddr": "1.1.1.1", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -34103,10 +34103,10 @@ "bgpPeerRemoteAs": 65000, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", - "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 64, "bgpLocalAddr": "1.1.1.1", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", diff --git a/tests/data/vrp_5720.json b/tests/data/vrp_5720.json index 2af78b13d8..a0e0c6f4d4 100644 --- a/tests/data/vrp_5720.json +++ b/tests/data/vrp_5720.json @@ -13947,7 +13947,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 66, "bgpLocalAddr": "3.3.3.3", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13970,7 +13970,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, - "bgpPeerIface": null, + "bgpPeerIface": 66, "bgpLocalAddr": "3.3.3.3", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", diff --git a/tests/snmpsim/ise_3595.snmprec b/tests/snmpsim/ise_3595.snmprec index f9369cf129..0385251965 100644 --- a/tests/snmpsim/ise_3595.snmprec +++ b/tests/snmpsim/ise_3595.snmprec @@ -1056,7 +1056,7 @@ 1.3.6.1.2.1.47.1.1.1.1.8.1|4|A0 1.3.6.1.2.1.47.1.1.1.1.9.1|4| 1.3.6.1.2.1.47.1.1.1.1.10.1|4|Cisco ADE-OS 3.1 -1.3.6.1.2.1.47.1.1.1.1.11.1|4|FCH2204V176 +1.3.6.1.2.1.47.1.1.1.1.11.1|4|AAA9999Z999 1.3.6.1.2.1.47.1.1.1.1.12.1|4|Cisco Systems Inc. 1.3.6.1.2.1.47.1.1.1.1.13.1|4|SNS-3595-K9 1.3.6.1.2.1.47.1.1.1.1.14.1|4| diff --git a/tests/snmpsim/ocnos_s9600-32x.snmprec b/tests/snmpsim/ocnos_s9600-32x.snmprec index b19e3d92e8..a60b216866 100644 --- a/tests/snmpsim/ocnos_s9600-32x.snmprec +++ b/tests/snmpsim/ocnos_s9600-32x.snmprec @@ -1136,15 +1136,15 @@ 1.3.6.1.2.1.11.29.0|65|0 1.3.6.1.2.1.11.31.0|65|0 1.3.6.1.2.1.11.32.0|65|0 -1.3.6.1.2.1.15.2.0|2|399693 +1.3.6.1.2.1.15.2.0|2|65534 1.3.6.1.2.1.15.3.1.2.100.127.0.200|2|6 1.3.6.1.2.1.15.3.1.2.100.127.0.201|2|1 1.3.6.1.2.1.15.3.1.3.100.127.0.200|2|2 1.3.6.1.2.1.15.3.1.3.100.127.0.201|2|2 1.3.6.1.2.1.15.3.1.5.100.127.0.200|64|100.127.0.1 1.3.6.1.2.1.15.3.1.5.100.127.0.201|64|0.0.0.0 -1.3.6.1.2.1.15.3.1.9.100.127.0.200|2|399693 -1.3.6.1.2.1.15.3.1.9.100.127.0.201|2|399693 +1.3.6.1.2.1.15.3.1.9.100.127.0.200|2|65534 +1.3.6.1.2.1.15.3.1.9.100.127.0.201|2|65534 1.3.6.1.2.1.15.3.1.10.100.127.0.200|65|1961 1.3.6.1.2.1.15.3.1.10.100.127.0.201|65|1632 1.3.6.1.2.1.15.3.1.11.100.127.0.200|65|614 @@ -3377,4 +3377,4 @@ 1.3.6.1.4.1.36673.100.1.5.1.1.11.1.75|2|-100002 1.3.6.1.4.1.36673.100.1.5.1.1.11.1.76|2|-100002 1.3.6.1.4.1.36673.100.1.5.1.1.11.1.77|2|-100002 -1.3.6.1.6.3.10.2.1.3.0|2|3086323 \ No newline at end of file +1.3.6.1.6.3.10.2.1.3.0|2|3086323 diff --git a/tests/snmpsim/raritan-pdu.snmprec b/tests/snmpsim/raritan-pdu.snmprec index 8a0797d8c4..c9434af615 100644 --- a/tests/snmpsim/raritan-pdu.snmprec +++ b/tests/snmpsim/raritan-pdu.snmprec @@ -168,133 +168,4 @@ 1.3.6.1.4.1.13742.4.3.3.1.40.3|2|4 1.3.6.1.4.1.13742.4.3.3.1.41.2|2|39 1.3.6.1.4.1.13742.4.3.3.1.41.3|2|205 -1.3.6.1.4.1.13742.6.3.3.3.1.2.1.1|4|I1 -1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.1|66|3 -1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.4|66|0 -1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.5|66|0 -1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.23|66|1 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.1|4|1 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.2|4|2 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.3|4|3 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.4|4|4 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.5|4|5 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.6|4|6 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.7|4|7 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.8|4|8 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.9|4|9 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.10|4|10 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.11|4|11 -1.3.6.1.4.1.13742.6.3.5.3.1.2.1.12|4|12 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.1|4| -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.2|4|OUTLET2 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.3|4|OUTLET3 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.4|4|OUTLET4 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.5|4|OUTLET5 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.6|4|OUTLET6 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.7|4|OUTLET7 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.8|4|OUTLET8 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.9|4|OUTLET9 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.10|4|OUTLET10 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.11|4|OUTLET11 -1.3.6.1.4.1.13742.6.3.5.3.1.3.1.12|4|OUTLET12 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.1.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.1.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.2.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.2.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.3.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.3.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.4.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.4.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.5.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.5.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.6.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.6.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.7.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.7.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.8.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.8.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.9.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.9.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.10.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.10.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.11.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.11.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.12.1|66|3 -1.3.6.1.4.1.13742.6.3.5.4.1.7.1.12.5|66|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.1.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.2.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.3.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.4.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.5.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.6.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.7.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.8.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.9.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.10.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.11.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.28.1.12.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.1.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.2.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.3.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.4.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.5.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.6.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.7.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.8.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.9.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.10.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.11.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.29.1.12.1|2|0 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.1.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.2.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.3.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.4.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.5.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.6.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.7.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.8.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.9.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.10.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.11.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.30.1.12.1|2|8000 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.1.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.2.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.3.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.4.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.5.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.6.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.7.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.8.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.9.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.10.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.11.1|2|6500 -1.3.6.1.4.1.13742.6.3.5.4.1.31.1.12.1|2|6500 -1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.1|66|680 -1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.4|66|233 -1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.5|66|138 -1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.23|66|500 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.1|66|311 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.5|66|68 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.5|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.1|66|184 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.5|66|35 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.1|66|185 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.5|66|35 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.1|66|0 -1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.5|66|0 1.3.6.1.6.3.10.2.1.3.0|2|64572474 diff --git a/tests/snmpsim/raritan-pdu_px2.snmprec b/tests/snmpsim/raritan-pdu_px2.snmprec index fc208a717b..73483183fc 100644 --- a/tests/snmpsim/raritan-pdu_px2.snmprec +++ b/tests/snmpsim/raritan-pdu_px2.snmprec @@ -1,2 +1,136 @@ 1.3.6.1.2.1.1.1.0|4|PX2 030004 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.13742.6 +1.3.6.1.2.1.1.3.0|67|2162280547 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.4.1.13742.6.3.3.3.1.2.1.1|4|I1 +1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.1|66|3 +1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.4|66|0 +1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.5|66|0 +1.3.6.1.4.1.13742.6.3.3.4.1.7.1.1.23|66|1 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.1|4|1 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.2|4|2 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.3|4|3 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.4|4|4 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.5|4|5 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.6|4|6 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.7|4|7 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.8|4|8 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.9|4|9 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.10|4|10 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.11|4|11 +1.3.6.1.4.1.13742.6.3.5.3.1.2.1.12|4|12 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.1|4| +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.2|4|OUTLET2 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.3|4|OUTLET3 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.4|4|OUTLET4 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.5|4|OUTLET5 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.6|4|OUTLET6 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.7|4|OUTLET7 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.8|4|OUTLET8 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.9|4|OUTLET9 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.10|4|OUTLET10 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.11|4|OUTLET11 +1.3.6.1.4.1.13742.6.3.5.3.1.3.1.12|4|OUTLET12 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.1.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.1.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.2.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.2.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.3.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.3.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.4.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.4.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.5.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.5.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.6.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.6.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.7.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.7.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.8.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.8.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.9.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.9.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.10.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.10.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.11.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.11.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.12.1|66|3 +1.3.6.1.4.1.13742.6.3.5.4.1.7.1.12.5|66|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.1.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.2.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.3.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.4.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.5.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.6.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.7.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.8.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.9.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.10.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.11.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.28.1.12.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.1.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.2.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.3.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.4.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.5.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.6.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.7.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.8.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.9.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.10.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.11.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.29.1.12.1|2|0 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.1.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.2.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.3.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.4.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.5.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.6.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.7.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.8.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.9.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.10.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.11.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.30.1.12.1|2|8000 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.1.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.2.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.3.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.4.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.5.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.6.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.7.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.8.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.9.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.10.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.11.1|2|6500 +1.3.6.1.4.1.13742.6.3.5.4.1.31.1.12.1|2|6500 +1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.1|66|680 +1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.4|66|233 +1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.5|66|138 +1.3.6.1.4.1.13742.6.5.2.3.1.4.1.1.23|66|500 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.1.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.2.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.1|66|311 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.3.5|66|68 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.4.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.5.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.6.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.7.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.8.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.9.5|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.1|66|184 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.10.5|66|35 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.1|66|185 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.11.5|66|35 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.1|66|0 +1.3.6.1.4.1.13742.6.5.4.3.1.4.1.12.5|66|0 +1.3.6.1.6.3.10.2.1.3.0|2|64572474