← Back to team overview

nagios-charmers team mailing list archive

[Merge] ~aluria/hw-health-charm/+git/hw-health-charm:oo-rewrite-hwdiscovery into hw-health-charm:master

 

Alvaro Uría has proposed merging ~aluria/hw-health-charm/+git/hw-health-charm:oo-rewrite-hwdiscovery into hw-health-charm:master.

Requested reviews:
  Nagios Charm developers (nagios-charmers)

For more details, see:
https://code.launchpad.net/~aluria/hw-health-charm/+git/hw-health-charm/+merge/364900
-- 
The attached diff has been truncated due to its size.
Your team Nagios Charm developers is requested to review the proposed merge of ~aluria/hw-health-charm/+git/hw-health-charm:oo-rewrite-hwdiscovery into hw-health-charm:master.
diff --git a/src/lib/hwhealth/discovery/lshw.py b/src/lib/hwhealth/discovery/lshw.py
new file mode 100644
index 0000000..9258b95
--- /dev/null
+++ b/src/lib/hwhealth/discovery/lshw.py
@@ -0,0 +1,212 @@
+# -*- coding: us-ascii -*-
+import json
+import os
+import subprocess
+
+
+class Hardware(object):
+    def __init__(self, filename='/var/run/hw_health_lshw.json'):
+        self.__filename = filename
+        self._lshw = self.__load_hwinfo()
+
+    def __load_hwinfo(self):
+        try:
+            if os.path.exists(self.__filename):
+                with open(self.__filename, 'r') as fd:
+                    hwinfo = json.load(fd)
+            else:
+                output = subprocess.check_output(['lshw', '-json'])
+                hwinfo = json.loads(output.decode())
+                with open(self.__filename, 'w') as fd:
+                    fd.write(output.decode())
+
+            return hwinfo
+        except PermissionError as error:
+            return {}
+        except subprocess.CalledProcessError as error:
+            return {}
+
+    @property
+    def get_system(self):
+        """Helper to get vendor info retrieved via actions
+        """
+        keys = 'id description vendor product version serial'.split()
+        sysinfo = {}
+        for k in keys:
+            v = self._lshw.get(k)
+            if k == 'id':
+                k = 'hostname'
+            sysinfo.update({k: v})
+        return sysinfo
+
+    @property
+    def get_motherboard(self):
+        """Helper to get vendor info retrieved via actions
+        """
+        keys = 'description vendor product version serial'.split()
+        buses = []
+        for child in self._lshw.get('children', [{}]):
+            if child.get('class') != 'bus':
+                continue
+            buses.append(dict([(k, child.get(k)) for k in keys]))
+        return buses
+
+    def _get_inspect_bridges(self, bridge_item, bridge_class='storage'):
+        bridge_class_items = []
+        for item in bridge_item.get('children', [{}]):
+            if item.get('class', '') == 'bridge':
+                bridge_class_items.extend(self._get_inspect_bridges(item, bridge_class))
+            elif item.get('class', '') == bridge_class:
+                bridge_class_items.append(item)
+        return bridge_class_items
+
+    @property
+    def _get_storage_class(self):
+        """returns all the storage classes. Used by get_storage_class_info
+        and get_disk_class_info.
+
+        The aim of the function is to easily parse products to detect which tool(s)
+        need to be used.
+        """
+        storage = []
+        # system -> bus -> bridge -> storage
+        for bus in self._lshw.get('children', [{}]):
+            if bus.get('class', '') != 'bus':
+                continue
+            for bridge in bus.get('children', [{}]):
+                if bridge.get('class', '') != 'bridge':
+                    continue
+                for item in bridge.get('children', [{}]):
+                    if item.get('class', '') == 'bridge':
+                        storage.extend(self._get_inspect_bridges(item, 'storage'))
+                    elif item.get('class', '') == 'storage':
+                        storage.append(item)
+        return storage
+
+    @property
+    def get_storage_class_info(self):
+        """returns a list of storage controllers with the following keys:
+        vendor, product name, businfo and linux driver
+
+        The aim of the function is to easily parse products to detect which tool(s)
+        need to be used.
+        """
+        keys = 'vendor product businfo'.split()
+        config_keys = ['driver']
+        storage = []
+        for item in self._get_storage_class:
+            storage_item = dict([(k, item.get(k)) for k in keys])
+            storage_item.update(dict([(k, item.get('configuration', {}).get(k)) for k in config_keys]))
+            storage_item.update({'has_children': 'children' in item})
+            storage.append(storage_item)
+
+        return storage
+
+    @property
+    def get_disk_class_info(self):
+        """returns a list of storage devices with the following keys:
+        product name, serial number, PCI bus info, physical device and ID,
+        size (capacity) and logicalname (/dev/sdX), storage parent (ie.
+        RAID controller)
+
+        The aim of the function is to easily parse products to detect which tool(s)
+        need to be used.
+        """
+        keys = 'product serial businfo physid dev size logicalname'.split()
+        disks = []
+        for item in self._get_storage_class:
+            for child in item.get('children', [{}]):
+                if child.get('class', '') != 'disk':
+                    continue
+                disk = dict([(k, child.get(k)) for k in keys])
+                disk.update({'storage_parent': item.get('product')})
+                disks.append(disk)
+        return disks
+
+    @property
+    def get_network_class_info(self):
+        """returns the list of network cards with the following keys:
+        vendor, product name, businfo, logicalname (eno1...), serial number,
+        linux driver and driver version, NIC firmware version and speed
+
+        The aim of the function is to easily parse products to detect which tool(s)
+        need to be used.
+        """
+        keys = 'vendor product businfo logicalname serial'.split()
+        config_keys = 'driver driverversion firmware speed'.split()
+        nics = []
+        # system -> bus -> bridge -> network
+        for bus in self._lshw.get('children', [{}]):
+            if bus.get('class', '') != 'bus':
+                continue
+            for bridge in bus.get('children', [{}]):
+                if bridge.get('class', '') != 'bridge':
+                    continue
+                for item in bridge.get('children', [{}]):
+                    if item.get('class', '') == 'bridge':
+                        nics.extend(self._get_inspect_bridges(item, 'network'))
+                    elif item.get('class', '') == 'network':
+                        nics.append(item)
+
+        nics_filtered = []
+        for nic in nics:
+            nic_item = dict([(k, nic.get(k)) for k in keys])
+            nic_item.update(dict([(k, nic.get('configuration', {}).get(k)) for k in config_keys]))
+            nics_filtered.append(nic_item)
+        return nics_filtered
+
+    @property
+    def formatted_system_info(self):
+        ctxt = self.get_system
+        return (
+            '{description}: vendor[{vendor}], product_name[{product}], version[{version}]'
+            ', serial[{serial}], hostname[{hostname}]').format(**ctxt)
+
+    @property
+    def formatted_motherboard_info(self):
+        return '\n'.join([
+            '{description}: vendor[{vendor}], product_name[{product}], version[{version}]'
+            ', serial[{serial}]'.format(**ctxt) for ctxt in self.get_motherboard])
+
+    @property
+    def formatted_storage_class_info(self):
+        LINE = 'driver[{driver}], businfo[{businfo}], has_children[{has_children}]'
+        ctxts = []
+        for ctxt in self.get_storage_class_info:
+            if ctxt.get('vendor') and ctxt.get('product'):
+                tmpl = 'Storage class: vendor[{vendor}], product_name[{product}], ' + LINE
+            else:
+                tmpl = 'Storage class: {}'.format(LINE)
+            ctxts.append(tmpl.format(**ctxt))
+
+        if ctxts:
+            return '\n'.join(ctxts)
+
+    @property
+    def formatted_disk_class_info(self):
+        return '\n'.join([
+            'Disk class: ld[{logicalname}], dev[{dev}], physid[{physid}], businfo[{businfo}]'
+            ', product_name[{product}], serial[{serial}], size[{size}]'
+            ', storage_parent[{storage_parent}]'.format(**ctxt) for ctxt in self.get_disk_class_info
+        ])
+
+    @property
+    def formatted_network_class_info(self):
+        return '\n'.join([
+            'NIC: iface[{logicalname}], businfo[{businfo}], vendor[{vendor}]'
+            ', product_name[{product}], firmware[{firmware}], driver[{driver}'
+            ', {driverversion}], serial[{serial}]'
+            ', speed[{speed}]'.format(**ctxt) for ctxt in self.get_network_class_info
+        ])
+
+
+if __name__ == '__main__':
+    hw = Hardware()
+    print(hw.formatted_system_info)
+    print(hw.formatted_motherboard_info)
+    print('\n== get_storage_classes')
+    print(hw.formatted_storage_class_info)
+    print('== get_disk_classes')
+    print(hw.formatted_disk_class_info)
+    print('\n== get_network_class_info')
+    print(hw.formatted_network_class_info)
diff --git a/src/lib/hwhealth/discovery/supported_vendors.py b/src/lib/hwhealth/discovery/supported_vendors.py
new file mode 100644
index 0000000..1bd0a83
--- /dev/null
+++ b/src/lib/hwhealth/discovery/supported_vendors.py
@@ -0,0 +1,37 @@
+# -*- coding: us-ascii -*-
+from hwhealth import tools
+
+SUPPORTED_VENDORS = {
+    'LSI Logic / Symbios Logic': {
+        'SAS2308 PCI-Express Fusion-MPT SAS-2': tools.Sas2Ircu,
+        'SAS3008 PCI-Express Fusion-MPT SAS-3': tools.Sas3Ircu,
+        'MegaRAID SAS-3 3108 [Invader]': tools.MegaCLI,
+        },
+    'Mellanox Technologies': {
+        'MT27710 Family [ConnectX-4 Lx]': lambda: 'mlxconfig',
+        'MT27700 Family [ConnectX-4]': lambda: 'mlxconfig',
+    },
+    # 'Intel Corporation': {
+    #     'PCIe Data Center SSD': lambda: 'nvme',
+    # },
+    # 'Samsung Electronics Co Ltd': {
+    #     'NVMe SSD Controller SM961/PM961': lambda: 'nvme',
+    # },
+    'Hewlett-Packard Company': {
+        'Smart Array Gen9 Controllers': tools.HP,
+    }
+}
+
+# SUPPORTED_DRIVERS = {
+#     # ES3000 SSD /dev/hioa
+#     'hio': {
+#         'apt': 'hioa',
+#         'tool': lambda: 'hio_info',
+#         },
+#     'nvme': {
+#         'apt': 'nvme-cli',
+#         'tool': lambda: 'nvme',
+#     }
+# }
+
+SUPPORTED_DRIVERS = {}
diff --git a/src/lib/hwhealth/hwdiscovery.py b/src/lib/hwhealth/hwdiscovery.py
index b57c99e..03aae62 100644
--- a/src/lib/hwhealth/hwdiscovery.py
+++ b/src/lib/hwhealth/hwdiscovery.py
@@ -1,11 +1,13 @@
 # -*- coding: us-ascii -*-
-import glob
 import os
 import re
 import subprocess
 
-from charmhelpers.core import host, hookenv
 from hwhealth import tools
+from hwhealth.discovery.lshw import Hardware
+from hwhealth.discovery.supported_vendors import SUPPORTED_VENDORS, SUPPORTED_DRIVERS
+
+from charmhelpers.core import hookenv
 
 
 def get_tools(manufacturer='auto'):
@@ -27,83 +29,48 @@ def get_tools(manufacturer='auto'):
 
 
 def _get_tools():
+    hwinfo = Hardware()
     toolset = set()
-
-    # MegaRAID SAS
-    if len(glob.glob('/sys/bus/pci/drivers/megaraid_sas/00*')) > 0:
-        toolset.add(tools.MegaCLI())
-
-    # Huawei LSI SAS card
-    if len(glob.glob('/sys/bus/pci/drivers/mpt2sas/00*')) > 0:
-        toolset.add(tools.Sas2Ircu())
-
-    # New Huawei drivers, but also Supermicro LSI SAS cards
-    pci_devs = glob.glob('/sys/bus/pci/drivers/mpt3sas/00*')
-    for pci_dev in pci_devs:
-        board_name_files = os.path.join(pci_dev,
-                                        'host*/scsi_host/host*/board_name')
-        for board in glob.glob(board_name_files):
-            with open(board) as fd:
-                board_name = fd.readline().strip()
-                if board_name == 'LSISAS2308':
-                    toolset.add(tools.Sas2Ircu())
-                else:
-                    # LSI3008-IR
-                    toolset.add(tools.Sas3Ircu())
-
-    # HPE (Gen10 and newer) or HP (older)
-    hw_vendor = dmidecode('system-manufacturer')
-    if hw_vendor == 'HPE':
-        toolset.add(tools.HPE())
-    elif hw_vendor == 'HP':
-        toolset.add(tools.HP())
+    for storage in hwinfo.get_storage_class_info:
+        if storage.get('vendor'):
+            if storage.get('product') in SUPPORTED_VENDORS.get(storage['vendor'], []):
+                toolset.add(SUPPORTED_VENDORS[storage['vendor']][storage['product']])
+            else:
+                hookenv.log('Product not supported: [{}][{}]'.format(storage.get('vendor'), storage.get('product')),
+                            hookenv.DEBUG)
+
+        if storage.get('driver') in SUPPORTED_DRIVERS:
+            toolset.add(SUPPORTED_DRIVERS[storage['driver']]['tool'])
+        elif storage.get('driver'):
+            hookenv.log('Driver not supported: {}'.format(storage.get('driver')), hookenv.DEBUG)
 
     # SW RAID?
     if _supports_mdadm():
-        toolset.add(tools.Mdadm())
+        toolset.add(tools.Mdadm)
 
     if hookenv.config('enable_ipmi'):
-        toolset.add(tools.Ipmi())
-
-    return toolset
-
-
-def dmidecode(key):
-    # dmidecode fails to access /dev/mem in containers.
-    assert not host.is_container()
+        toolset.add(tools.Ipmi)
 
-    try:
-        output = subprocess.check_output(['dmidecode', '-s', key])
-    except subprocess.CalledProcessError as e:  # noqa
-        # print('Unable to get "{}" value from DMI table: {}'.format(key, e))
-        return
-    # Ignore comments
-    new = []
-    for line in output.decode('ascii', 'ignore').splitlines():
-        if line.startswith('#'):
-            continue
-        new.append(line)
-    return '\n'.join(new)
+    executed_toolset = set([tool() for tool in toolset])
+    return executed_toolset
 
 
 def _supports_mdadm():
-    found_raid_devices = False
+    """scans for mdadm devices and returns True when the first one is found (otherwise, it returns False)
+    """
     if os.path.exists('/sbin/mdadm'):
         try:
-            devices_raw = subprocess.Popen(
-                ['/sbin/mdadm', '--detail', '--scan'],
-                stdout=subprocess.PIPE,
-                stderr=subprocess.PIPE)
+            devices_raw = subprocess.check_output(['/sbin/mdadm', '--detail', '--scan'])
             devices_re = re.compile(r'^ARRAY\s+(\S+) ')
-            for line in devices_raw.stdout.readlines():
+            for line in devices_raw.splitlines():
                 line = line.decode().strip()
                 raid_dev = devices_re.search(line)
                 if raid_dev:
                     hookenv.log("Found md raid array {}".format(raid_dev.group(1)))
-                    found_raid_devices = True
+                    return True
         except Exception as e:
             hookenv.log("mdadm scan failed with {}".format(e))
-    return found_raid_devices
+    return False
 
 
 if __name__ == '__main__':
diff --git a/src/tests/hw-health-samples/lshw.dell.01.json b/src/tests/hw-health-samples/lshw.dell.01.json
new file mode 100644
index 0000000..e519027
--- /dev/null
+++ b/src/tests/hw-health-samples/lshw.dell.01.json
@@ -0,0 +1,6772 @@
+{
+  "id" : "compute-4",
+  "class" : "system",
+  "claimed" : true,
+  "handle" : "DMI:0100",
+  "description" : "Rack Mount Chassis",
+  "product" : "PowerEdge R730 (SKU=NotProvided;ModelName=PowerEdge R730, DBE)",
+  "vendor" : "Dell Inc.",
+  "serial" : "3YMGWL2",
+  "width" : 64,
+  "configuration" : {
+    "boot" : "normal",
+    "chassis" : "rackmount",
+    "sku" : "SKU=NotProvided;ModelName=PowerEdge R730, DBE",
+    "uuid" : "44454C4C-5900-104D-8047-B3C04F574C32"
+  },
+  "capabilities" : {
+    "smbios-2.8" : "SMBIOS version 2.8",
+    "dmi-2.8" : "DMI version 2.8",
+    "vsyscall32" : "32-bit processes"
+  },
+  "children" : [
+    {
+      "id" : "core",
+      "class" : "bus",
+      "claimed" : true,
+      "handle" : "DMI:0200",
+      "description" : "Motherboard",
+      "product" : "04N3DF",
+      "vendor" : "Dell Inc.",
+      "physid" : "0",
+      "version" : "A10",
+      "serial" : ".3YMGWL2.CNFCP0077F0059.",
+      "children" : [
+        {
+          "id" : "firmware",
+          "class" : "memory",
+          "claimed" : true,
+          "description" : "BIOS",
+          "vendor" : "Dell Inc.",
+          "physid" : "0",
+          "version" : "2.2.5",
+          "date" : "09/06/2016",
+          "units" : "bytes",
+          "size" : 65536,
+          "capacity" : 16711680,
+          "capabilities" : {
+            "isa" : "ISA bus",
+            "pci" : "PCI bus",
+            "pnp" : "Plug-and-Play",
+            "upgrade" : "BIOS EEPROM can be upgraded",
+            "shadowing" : "BIOS shadowing",
+            "cdboot" : "Booting from CD-ROM/DVD",
+            "bootselect" : "Selectable boot path",
+            "edd" : "Enhanced Disk Drive extensions",
+            "int13floppytoshiba" : "Toshiba floppy",
+            "int13floppy360" : "5.25\" 360KB floppy",
+            "int13floppy1200" : "5.25\" 1.2MB floppy",
+            "int13floppy720" : "3.5\" 720KB floppy",
+            "int9keyboard" : "i8042 keyboard controller",
+            "int14serial" : "INT14 serial line control",
+            "int10video" : "INT10 CGA/Mono video",
+            "acpi" : "ACPI",
+            "usb" : "USB legacy emulation",
+            "biosbootspecification" : "BIOS boot specification",
+            "netboot" : "Function-key initiated network service boot",
+            "uefi" : "UEFI specification is supported"
+          }
+        },
+        {
+          "id" : "cpu:0",
+          "class" : "processor",
+          "claimed" : true,
+          "handle" : "DMI:0400",
+          "description" : "CPU",
+          "product" : "Intel(R) Xeon(R) CPU E5-2690 v4 @ 2.60GHz",
+          "vendor" : "Intel Corp.",
+          "physid" : "400",
+          "businfo" : "cpu@0",
+          "version" : "Intel(R) Xeon(R) CPU E5-2690 v4 @ 2.60GHz",
+          "slot" : "CPU1",
+          "units" : "Hz",
+          "size" : 2401882000,
+          "capacity" : 4000000000,
+          "width" : 64,
+          "clock" : 1010065408,
+          "configuration" : {
+            "cores" : "14",
+            "enabledcores" : "14",
+            "threads" : "28"
+          },
+          "capabilities" : {
+            "x86-64" : "64bits extensions (x86-64)",
+            "fpu" : "mathematical co-processor",
+            "fpu_exception" : "FPU exceptions reporting",
+            "wp" : true,
+            "vme" : "virtual mode extensions",
+            "de" : "debugging extensions",
+            "pse" : "page size extensions",
+            "tsc" : "time stamp counter",
+            "msr" : "model-specific registers",
+            "pae" : "4GB+ memory addressing (Physical Address Extension)",
+            "mce" : "machine check exceptions",
+            "cx8" : "compare and exchange 8-byte",
+            "apic" : "on-chip advanced programmable interrupt controller (APIC)",
+            "sep" : "fast system calls",
+            "mtrr" : "memory type range registers",
+            "pge" : "page global enable",
+            "mca" : "machine check architecture",
+            "cmov" : "conditional move instruction",
+            "pat" : "page attribute table",
+            "pse36" : "36-bit page size extensions",
+            "clflush" : true,
+            "dts" : "debug trace and EMON store MSRs",
+            "acpi" : "thermal control (ACPI)",
+            "mmx" : "multimedia extensions (MMX)",
+            "fxsr" : "fast floating point save/restore",
+            "sse" : "streaming SIMD extensions (SSE)",
+            "sse2" : "streaming SIMD extensions (SSE2)",
+            "ss" : "self-snoop",
+            "ht" : "HyperThreading",
+            "tm" : "thermal interrupt and status",
+            "pbe" : "pending break event",
+            "syscall" : "fast system calls",
+            "nx" : "no-execute bit (NX)",
+            "pdpe1gb" : true,
+            "rdtscp" : true,
+            "constant_tsc" : true,
+            "arch_perfmon" : true,
+            "pebs" : true,
+            "bts" : true,
+            "rep_good" : true,
+            "nopl" : true,
+            "xtopology" : true,
+            "nonstop_tsc" : true,
+            "cpuid" : true,
+            "aperfmperf" : true,
+            "pni" : true,
+            "pclmulqdq" : true,
+            "dtes64" : true,
+            "monitor" : true,
+            "ds_cpl" : true,
+            "vmx" : true,
+            "smx" : true,
+            "est" : true,
+            "tm2" : true,
+            "ssse3" : true,
+            "sdbg" : true,
+            "fma" : true,
+            "cx16" : true,
+            "xtpr" : true,
+            "pdcm" : true,
+            "pcid" : true,
+            "dca" : true,
+            "sse4_1" : true,
+            "sse4_2" : true,
+            "x2apic" : true,
+            "movbe" : true,
+            "popcnt" : true,
+            "tsc_deadline_timer" : true,
+            "aes" : true,
+            "xsave" : true,
+            "avx" : true,
+            "f16c" : true,
+            "rdrand" : true,
+            "lahf_lm" : true,
+            "abm" : true,
+            "3dnowprefetch" : true,
+            "cpuid_fault" : true,
+            "epb" : true,
+            "cat_l3" : true,
+            "cdp_l3" : true,
+            "invpcid_single" : true,
+            "ssbd" : true,
+            "ibrs" : true,
+            "ibpb" : true,
+            "stibp" : true,
+            "tpr_shadow" : true,
+            "vnmi" : true,
+            "flexpriority" : true,
+            "ept" : true,
+            "vpid" : true,
+            "fsgsbase" : true,
+            "tsc_adjust" : true,
+            "bmi1" : true,
+            "hle" : true,
+            "avx2" : true,
+            "smep" : true,
+            "bmi2" : true,
+            "erms" : true,
+            "invpcid" : true,
+            "rtm" : true,
+            "cqm" : true,
+            "rdt_a" : true,
+            "rdseed" : true,
+            "adx" : true,
+            "smap" : true,
+            "intel_pt" : true,
+            "xsaveopt" : true,
+            "cqm_llc" : true,
+            "cqm_occup_llc" : true,
+            "cqm_mbm_total" : true,
+            "cqm_mbm_local" : true,
+            "dtherm" : true,
+            "ida" : true,
+            "arat" : true,
+            "pln" : true,
+            "pts" : true,
+            "flush_l1d" : true,
+            "cpufreq" : "CPU Frequency scaling"
+          },
+          "children" : [
+            {
+              "id" : "cache:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0700",
+              "description" : "L1 cache",
+              "physid" : "700",
+              "units" : "bytes",
+              "size" : 917504,
+              "capacity" : 917504,
+              "configuration" : {
+                "level" : "1"
+              },
+              "capabilities" : {
+                "internal" : "Internal",
+                "write-back" : "Write-back",
+                "unified" : "Unified cache"
+              }
+            },
+            {
+              "id" : "cache:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0701",
+              "description" : "L2 cache",
+              "physid" : "701",
+              "units" : "bytes",
+              "size" : 3670016,
+              "capacity" : 3670016,
+              "configuration" : {
+                "level" : "2"
+              },
+              "capabilities" : {
+                "internal" : "Internal",
+                "write-back" : "Write-back",
+                "unified" : "Unified cache"
+              }
+            },
+            {
+              "id" : "cache:2",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0702",
+              "description" : "L3 cache",
+              "physid" : "702",
+              "units" : "bytes",
+              "size" : 36700160,
+              "capacity" : 36700160,
+              "configuration" : {
+                "level" : "3"
+              },
+              "capabilities" : {
+                "internal" : "Internal",
+                "write-back" : "Write-back",
+                "unified" : "Unified cache"
+              }
+            }
+          ]
+        },
+        {
+          "id" : "cpu:1",
+          "class" : "processor",
+          "claimed" : true,
+          "handle" : "DMI:0401",
+          "description" : "CPU",
+          "product" : "Intel(R) Xeon(R) CPU E5-2690 v4 @ 2.60GHz",
+          "vendor" : "Intel Corp.",
+          "physid" : "401",
+          "businfo" : "cpu@1",
+          "version" : "Intel(R) Xeon(R) CPU E5-2690 v4 @ 2.60GHz",
+          "slot" : "CPU2",
+          "units" : "Hz",
+          "size" : 1313900000,
+          "capacity" : 4000000000,
+          "width" : 64,
+          "clock" : 1010065408,
+          "configuration" : {
+            "cores" : "14",
+            "enabledcores" : "14",
+            "threads" : "28"
+          },
+          "capabilities" : {
+            "x86-64" : "64bits extensions (x86-64)",
+            "fpu" : "mathematical co-processor",
+            "fpu_exception" : "FPU exceptions reporting",
+            "wp" : true,
+            "vme" : "virtual mode extensions",
+            "de" : "debugging extensions",
+            "pse" : "page size extensions",
+            "tsc" : "time stamp counter",
+            "msr" : "model-specific registers",
+            "pae" : "4GB+ memory addressing (Physical Address Extension)",
+            "mce" : "machine check exceptions",
+            "cx8" : "compare and exchange 8-byte",
+            "apic" : "on-chip advanced programmable interrupt controller (APIC)",
+            "sep" : "fast system calls",
+            "mtrr" : "memory type range registers",
+            "pge" : "page global enable",
+            "mca" : "machine check architecture",
+            "cmov" : "conditional move instruction",
+            "pat" : "page attribute table",
+            "pse36" : "36-bit page size extensions",
+            "clflush" : true,
+            "dts" : "debug trace and EMON store MSRs",
+            "acpi" : "thermal control (ACPI)",
+            "mmx" : "multimedia extensions (MMX)",
+            "fxsr" : "fast floating point save/restore",
+            "sse" : "streaming SIMD extensions (SSE)",
+            "sse2" : "streaming SIMD extensions (SSE2)",
+            "ss" : "self-snoop",
+            "ht" : "HyperThreading",
+            "tm" : "thermal interrupt and status",
+            "pbe" : "pending break event",
+            "syscall" : "fast system calls",
+            "nx" : "no-execute bit (NX)",
+            "pdpe1gb" : true,
+            "rdtscp" : true,
+            "constant_tsc" : true,
+            "arch_perfmon" : true,
+            "pebs" : true,
+            "bts" : true,
+            "rep_good" : true,
+            "nopl" : true,
+            "xtopology" : true,
+            "nonstop_tsc" : true,
+            "cpuid" : true,
+            "aperfmperf" : true,
+            "pni" : true,
+            "pclmulqdq" : true,
+            "dtes64" : true,
+            "monitor" : true,
+            "ds_cpl" : true,
+            "vmx" : true,
+            "smx" : true,
+            "est" : true,
+            "tm2" : true,
+            "ssse3" : true,
+            "sdbg" : true,
+            "fma" : true,
+            "cx16" : true,
+            "xtpr" : true,
+            "pdcm" : true,
+            "pcid" : true,
+            "dca" : true,
+            "sse4_1" : true,
+            "sse4_2" : true,
+            "x2apic" : true,
+            "movbe" : true,
+            "popcnt" : true,
+            "tsc_deadline_timer" : true,
+            "aes" : true,
+            "xsave" : true,
+            "avx" : true,
+            "f16c" : true,
+            "rdrand" : true,
+            "lahf_lm" : true,
+            "abm" : true,
+            "3dnowprefetch" : true,
+            "cpuid_fault" : true,
+            "epb" : true,
+            "cat_l3" : true,
+            "cdp_l3" : true,
+            "invpcid_single" : true,
+            "ssbd" : true,
+            "ibrs" : true,
+            "ibpb" : true,
+            "stibp" : true,
+            "tpr_shadow" : true,
+            "vnmi" : true,
+            "flexpriority" : true,
+            "ept" : true,
+            "vpid" : true,
+            "fsgsbase" : true,
+            "tsc_adjust" : true,
+            "bmi1" : true,
+            "hle" : true,
+            "avx2" : true,
+            "smep" : true,
+            "bmi2" : true,
+            "erms" : true,
+            "invpcid" : true,
+            "rtm" : true,
+            "cqm" : true,
+            "rdt_a" : true,
+            "rdseed" : true,
+            "adx" : true,
+            "smap" : true,
+            "intel_pt" : true,
+            "xsaveopt" : true,
+            "cqm_llc" : true,
+            "cqm_occup_llc" : true,
+            "cqm_mbm_total" : true,
+            "cqm_mbm_local" : true,
+            "dtherm" : true,
+            "ida" : true,
+            "arat" : true,
+            "pln" : true,
+            "pts" : true,
+            "flush_l1d" : true,
+            "cpufreq" : "CPU Frequency scaling"
+          },
+          "children" : [
+            {
+              "id" : "cache:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0703",
+              "description" : "L1 cache",
+              "physid" : "703",
+              "units" : "bytes",
+              "size" : 917504,
+              "capacity" : 917504,
+              "configuration" : {
+                "level" : "1"
+              },
+              "capabilities" : {
+                "internal" : "Internal",
+                "write-back" : "Write-back",
+                "unified" : "Unified cache"
+              }
+            },
+            {
+              "id" : "cache:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0704",
+              "description" : "L2 cache",
+              "physid" : "704",
+              "units" : "bytes",
+              "size" : 3670016,
+              "capacity" : 3670016,
+              "configuration" : {
+                "level" : "2"
+              },
+              "capabilities" : {
+                "internal" : "Internal",
+                "write-back" : "Write-back",
+                "unified" : "Unified cache"
+              }
+            },
+            {
+              "id" : "cache:2",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0705",
+              "description" : "L3 cache",
+              "physid" : "705",
+              "units" : "bytes",
+              "size" : 36700160,
+              "capacity" : 36700160,
+              "configuration" : {
+                "level" : "3"
+              },
+              "capabilities" : {
+                "internal" : "Internal",
+                "write-back" : "Write-back",
+                "unified" : "Unified cache"
+              }
+            }
+          ]
+        },
+        {
+          "id" : "memory",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:1000",
+          "description" : "System Memory",
+          "physid" : "1000",
+          "slot" : "System board or motherboard",
+          "units" : "bytes",
+          "size" : 549739036672,
+          "children" : [
+            {
+              "id" : "bank:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1100",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "0",
+              "serial" : "2038CC6A",
+              "slot" : "A1",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1101",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "1",
+              "serial" : "2038CE57",
+              "slot" : "A2",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:2",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1102",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "2",
+              "serial" : "2038CD80",
+              "slot" : "A3",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:3",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1103",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "3",
+              "serial" : "2038CD7C",
+              "slot" : "A4",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:4",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1104",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "4",
+              "serial" : "2038CEF0",
+              "slot" : "A5",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:5",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1105",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "5",
+              "serial" : "2038CD77",
+              "slot" : "A6",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:6",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1106",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "6",
+              "serial" : "2038CCC8",
+              "slot" : "A7",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:7",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1107",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "7",
+              "serial" : "2038CCC0",
+              "slot" : "A8",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:8",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1108",
+              "description" : "[empty]",
+              "physid" : "8",
+              "slot" : "A9"
+            },
+            {
+              "id" : "bank:9",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1109",
+              "description" : "[empty]",
+              "physid" : "9",
+              "slot" : "A10"
+            },
+            {
+              "id" : "bank:10",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:110A",
+              "description" : "[empty]",
+              "physid" : "a",
+              "slot" : "A11"
+            },
+            {
+              "id" : "bank:11",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:110B",
+              "description" : "[empty]",
+              "physid" : "b",
+              "slot" : "A12"
+            },
+            {
+              "id" : "bank:12",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:110C",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "c",
+              "serial" : "2038D3A9",
+              "slot" : "B1",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:13",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:110D",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "d",
+              "serial" : "2038E044",
+              "slot" : "B2",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:14",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:110E",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "e",
+              "serial" : "202F7560",
+              "slot" : "B3",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:15",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:110F",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "f",
+              "serial" : "2038D0C5",
+              "slot" : "B4",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:16",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1110",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "10",
+              "serial" : "2038D1AC",
+              "slot" : "B5",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:17",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1111",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "11",
+              "serial" : "2038DB97",
+              "slot" : "B6",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:18",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1112",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "12",
+              "serial" : "202F77AA",
+              "slot" : "B7",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:19",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1113",
+              "description" : "DIMM Synchronous 2400 MHz (0.4 ns)",
+              "product" : "M393A4K40BB1-CRC",
+              "vendor" : "00CE00B300CE",
+              "physid" : "13",
+              "serial" : "2038D01F",
+              "slot" : "B8",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:20",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1114",
+              "description" : "[empty]",
+              "physid" : "14",
+              "slot" : "B9"
+            },
+            {
+              "id" : "bank:21",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1115",
+              "description" : "[empty]",
+              "physid" : "15",
+              "slot" : "B10"
+            },
+            {
+              "id" : "bank:22",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1116",
+              "description" : "[empty]",
+              "physid" : "16",
+              "slot" : "B11"
+            },
+            {
+              "id" : "bank:23",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:1117",
+              "description" : "[empty]",
+              "physid" : "17",
+              "slot" : "B12"
+            }
+          ]
+        },
+        {
+          "id" : "pci:0",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:00",
+          "description" : "Host bridge",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DMI2",
+          "vendor" : "Intel Corporation",
+          "physid" : "100",
+          "businfo" : "pci@0000:00:00.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "children" : [
+            {
+              "id" : "pci:0",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:03",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1",
+              "businfo" : "pci@0000:00:01.0",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "storage",
+                  "class" : "storage",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:03:00.0",
+                  "description" : "RAID bus controller",
+                  "product" : "MegaRAID SAS-3 3108 [Invader]",
+                  "vendor" : "LSI Logic / Symbios Logic",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:03:00.0",
+                  "logicalname" : "scsi0",
+                  "version" : "02",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "megaraid_sas",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "storage" : true,
+                    "pm" : "Power Management",
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  },
+                  "children" : [
+                    {
+                      "id" : "disk:0",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "GUID:f8e4a6c5-dc3b-4dc1-8696-2cdd2419c0a9",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.0.0",
+                      "businfo" : "scsi@0:2.0.0",
+                      "logicalname" : "/dev/sda",
+                      "dev" : "8:0",
+                      "version" : "4.27",
+                      "serial" : "00174c7006cbabeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "guid" : "f8e4a6c5-dc3b-4dc1-8696-2cdd2419c0a9",
+                        "logicalsectorsize" : "512",
+                        "sectorsize" : "512"
+                      },
+                      "capabilities" : {
+                        "gpt-1.00" : "GUID Partition Table version 1.00",
+                        "partitioned" : "Partitioned disk",
+                        "partitioned:gpt" : "GUID partition table"
+                      },
+                      "children" : [
+                        {
+                          "id" : "volume:0",
+                          "class" : "volume",
+                          "handle" : "GUID:1c4e27d3-fad4-43b6-971a-02acc42ddcc5",
+                          "description" : "Windows FAT volume",
+                          "vendor" : "mkfs.fat",
+                          "physid" : "1",
+                          "businfo" : "scsi@0:2.0.0,1",
+                          "version" : "FAT32",
+                          "serial" : "5bbe-f4eb",
+                          "size" : 535805952,
+                          "capacity" : 536870400,
+                          "configuration" : {
+                            "FATs" : "2",
+                            "filesystem" : "fat",
+                            "label" : "efi"
+                          },
+                          "capabilities" : {
+                            "boot" : "Contains boot code",
+                            "fat" : "Windows FAT",
+                            "initialized" : "initialized volume"
+                          }
+                        },
+                        {
+                          "id" : "volume:1",
+                          "class" : "volume",
+                          "claimed" : true,
+                          "handle" : "GUID:2a1e1dc2-cc0b-4289-942a-3ca7d32d0bc0",
+                          "description" : "EXT4 volume",
+                          "vendor" : "Linux",
+                          "physid" : "2",
+                          "businfo" : "scsi@0:2.0.0,2",
+                          "logicalname" : ["/dev/sda2", "/"],
+                          "dev" : "8:2",
+                          "version" : "1.0",
+                          "serial" : "0eb8eb4b-1695-491a-8c43-c3c45cee6f10",
+                          "size" : 1800975417344,
+                          "configuration" : {
+                            "created" : "2019-02-27 17:15:40",
+                            "filesystem" : "ext4",
+                            "label" : "rootfs",
+                            "lastmountpoint" : "/",
+                            "modified" : "2019-02-27 17:17:44",
+                            "mount.fstype" : "ext4",
+                            "mount.options" : "rw,relatime,data=ordered",
+                            "mounted" : "2019-02-27 17:39:27",
+                            "state" : "mounted"
+                          },
+                          "capabilities" : {
+                            "journaled" : true,
+                            "extended_attributes" : "Extended Attributes",
+                            "large_files" : "4GB+ files",
+                            "huge_files" : "16TB+ files",
+                            "dir_nlink" : "directories with 65000+ subdirs",
+                            "recover" : "needs recovery",
+                            "extents" : "extent-based allocation",
+                            "ext4" : true,
+                            "ext2" : "EXT2/EXT3",
+                            "initialized" : "initialized volume"
+                          }
+                        },
+                        {
+                          "id" : "volume:2",
+                          "class" : "volume",
+                          "claimed" : true,
+                          "handle" : "GUID:9d9a4bb1-0a23-44b9-9af3-f79567967b42",
+                          "description" : "EFI partition",
+                          "physid" : "3",
+                          "businfo" : "scsi@0:2.0.0,3",
+                          "logicalname" : "/dev/sda3",
+                          "dev" : "8:3",
+                          "serial" : "9d9a4bb1-0a23-44b9-9af3-f79567967b42",
+                          "capacity" : 2198704487936
+                        }
+                      ]
+                    },
+                    {
+                      "id" : "disk:1",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "SCSI:00:02:01:00",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.1.0",
+                      "businfo" : "scsi@0:2.1.0",
+                      "logicalname" : "/dev/sdb",
+                      "dev" : "8:16",
+                      "version" : "4.27",
+                      "serial" : "00f7e28406ccabeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "logicalsectorsize" : "512",
+                        "sectorsize" : "512"
+                      }
+                    },
+                    {
+                      "id" : "disk:2",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "SCSI:00:02:02:00",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.2.0",
+                      "businfo" : "scsi@0:2.2.0",
+                      "logicalname" : "/dev/sdc",
+                      "dev" : "8:32",
+                      "version" : "4.27",
+                      "serial" : "0024b29406cdabeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "logicalsectorsize" : "512",
+                        "sectorsize" : "512"
+                      }
+                    },
+                    {
+                      "id" : "disk:3",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "SCSI:00:02:03:00",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.3.0",
+                      "businfo" : "scsi@0:2.3.0",
+                      "logicalname" : "/dev/sdd",
+                      "dev" : "8:48",
+                      "version" : "4.27",
+                      "serial" : "007a79a506ceabeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "logicalsectorsize" : "512",
+                        "sectorsize" : "512"
+                      }
+                    },
+                    {
+                      "id" : "disk:4",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "SCSI:00:02:04:00",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.4.0",
+                      "businfo" : "scsi@0:2.4.0",
+                      "logicalname" : ["/dev/sde", "/srv/node/sde"],
+                      "dev" : "8:64",
+                      "version" : "4.27",
+                      "serial" : "0005ebba06cfabeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "logicalsectorsize" : "512",
+                        "mount.fstype" : "xfs",
+                        "mount.options" : "rw,relatime,attr2,inode64,noquota",
+                        "sectorsize" : "512",
+                        "state" : "mounted"
+                      }
+                    },
+                    {
+                      "id" : "disk:5",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "SCSI:00:02:05:00",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.5.0",
+                      "businfo" : "scsi@0:2.5.0",
+                      "logicalname" : ["/dev/sdf", "/srv/node/sdf"],
+                      "dev" : "8:80",
+                      "version" : "4.27",
+                      "serial" : "005c35cc06d1abeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "logicalsectorsize" : "512",
+                        "mount.fstype" : "xfs",
+                        "mount.options" : "rw,relatime,attr2,inode64,noquota",
+                        "sectorsize" : "512",
+                        "state" : "mounted"
+                      }
+                    },
+                    {
+                      "id" : "disk:6",
+                      "class" : "disk",
+                      "claimed" : true,
+                      "handle" : "SCSI:00:02:06:00",
+                      "description" : "SCSI Disk",
+                      "product" : "PERC H730P Mini",
+                      "vendor" : "DELL",
+                      "physid" : "2.6.0",
+                      "businfo" : "scsi@0:2.6.0",
+                      "logicalname" : ["/dev/sdg", "/srv/node/sdg"],
+                      "dev" : "8:96",
+                      "version" : "4.27",
+                      "serial" : "00e046dd06d2abeb2100aa7515604609",
+                      "units" : "bytes",
+                      "size" : 4000225165312,
+                      "configuration" : {
+                        "ansiversion" : "5",
+                        "logicalsectorsize" : "512",
+                        "mount.fstype" : "xfs",
+                        "mount.options" : "rw,relatime,attr2,inode64,noquota",
+                        "sectorsize" : "512",
+                        "state" : "mounted"
+                      }
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "pci:1",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:04",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "2",
+              "businfo" : "pci@0000:00:02.0",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:2",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:05",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "2.2",
+              "businfo" : "pci@0000:00:02.2",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:3",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:01",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "3",
+              "businfo" : "pci@0000:00:03.0",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "network:0",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:00.0",
+                  "description" : "Ethernet interface",
+                  "product" : "MT27710 Family [ConnectX-4 Lx]",
+                  "vendor" : "Mellanox Technologies",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:01:00.0",
+                  "logicalname" : "eno1",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "duplex" : "full",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "yes",
+                    "multicast" : "yes",
+                    "slave" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "msix" : "MSI-X",
+                    "pm" : "Power Management",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:1",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:00.1",
+                  "description" : "Ethernet interface",
+                  "product" : "MT27710 Family [ConnectX-4 Lx]",
+                  "vendor" : "Mellanox Technologies",
+                  "physid" : "0.1",
+                  "businfo" : "pci@0000:01:00.1",
+                  "logicalname" : "eno2",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "duplex" : "full",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "yes",
+                    "multicast" : "yes",
+                    "slave" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "msix" : "MSI-X",
+                    "pm" : "Power Management",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:2",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:02.6",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "2.6",
+                  "businfo" : "pci@0000:01:02.6",
+                  "logicalname" : "enp1s2f6",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:3",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:02.7",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "2.7",
+                  "businfo" : "pci@0000:01:02.7",
+                  "logicalname" : "enp1s2f7",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:4",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.0",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3",
+                  "businfo" : "pci@0000:01:03.0",
+                  "logicalname" : "enp1s3",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:5",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.1",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.1",
+                  "businfo" : "pci@0000:01:03.1",
+                  "logicalname" : "enp1s3f1",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:6",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.2",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.2",
+                  "businfo" : "pci@0000:01:03.2",
+                  "logicalname" : "enp1s3f2",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:7",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.3",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.3",
+                  "businfo" : "pci@0000:01:03.3",
+                  "logicalname" : "enp1s3f3",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:8",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.4",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.4",
+                  "businfo" : "pci@0000:01:03.4",
+                  "logicalname" : "enp1s3f4",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:9",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.5",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.5",
+                  "businfo" : "pci@0000:01:03.5",
+                  "logicalname" : "enp1s3f5",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:10",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.6",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.6",
+                  "businfo" : "pci@0000:01:03.6",
+                  "logicalname" : "enp1s3f6",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:11",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:03.7",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "3.7",
+                  "businfo" : "pci@0000:01:03.7",
+                  "logicalname" : "enp1s3f7",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:12",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.0",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4",
+                  "businfo" : "pci@0000:01:04.0",
+                  "logicalname" : "enp1s4",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:13",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.1",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.1",
+                  "businfo" : "pci@0000:01:04.1",
+                  "logicalname" : "enp1s4f1",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:14",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.2",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.2",
+                  "businfo" : "pci@0000:01:04.2",
+                  "logicalname" : "enp1s4f2",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:15",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.3",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.3",
+                  "businfo" : "pci@0000:01:04.3",
+                  "logicalname" : "enp1s4f3",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:16",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.4",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.4",
+                  "businfo" : "pci@0000:01:04.4",
+                  "logicalname" : "enp1s4f4",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:17",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.5",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.5",
+                  "businfo" : "pci@0000:01:04.5",
+                  "logicalname" : "enp1s4f5",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:18",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.6",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.6",
+                  "businfo" : "pci@0000:01:04.6",
+                  "logicalname" : "enp1s4f6",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:19",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:04.7",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "4.7",
+                  "businfo" : "pci@0000:01:04.7",
+                  "logicalname" : "enp1s4f7",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:20",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:05.0",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "5",
+                  "businfo" : "pci@0000:01:05.0",
+                  "logicalname" : "enp1s5",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:21",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:05.1",
+                  "description" : "Ethernet interface",
+                  "product" : "Illegal Vendor ID",
+                  "vendor" : "Illegal Vendor ID",
+                  "physid" : "5.1",
+                  "businfo" : "pci@0000:01:05.1",
+                  "logicalname" : "enp1s5f1",
+                  "version" : "00",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "mlx5_core",
+                    "driverversion" : "5.0-0",
+                    "firmware" : "14.21.3012 (DEL2810000034)",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes"
+                  },
+                  "capabilities" : {
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:4",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:06",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "3.2",
+              "businfo" : "pci@0000:00:03.2",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:0",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.0",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management",
+              "vendor" : "Intel Corporation",
+              "physid" : "5",
+              "businfo" : "pci@0000:00:05.0",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:1",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.1",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug",
+              "vendor" : "Intel Corporation",
+              "physid" : "5.1",
+              "businfo" : "pci@0000:00:05.1",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:2",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.2",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors",
+              "vendor" : "Intel Corporation",
+              "physid" : "5.2",
+              "businfo" : "pci@0000:00:05.2",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:3",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.4",
+              "description" : "PIC",
+              "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D I/O APIC",
+              "vendor" : "Intel Corporation",
+              "physid" : "5.4",
+              "businfo" : "pci@0000:00:05.4",
+              "version" : "01",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "io_x_-apic" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:4",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:11.0",
+              "description" : "Unassigned class",
+              "product" : "C610/X99 series chipset SPSR",
+              "vendor" : "Intel Corporation",
+              "physid" : "11",
+              "businfo" : "pci@0000:00:11.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "storage:0",
+              "class" : "storage",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:11.4",
+              "description" : "SATA controller",
+              "product" : "C610/X99 series chipset sSATA Controller [AHCI mode]",
+              "vendor" : "Intel Corporation",
+              "physid" : "11.4",
+              "businfo" : "pci@0000:00:11.4",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 66000000,
+              "configuration" : {
+                "driver" : "ahci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "storage" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "ahci_1.0" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "communication:0",
+              "class" : "communication",
+              "handle" : "PCI:0000:00:16.0",
+              "description" : "Communication controller",
+              "product" : "C610/X99 series chipset MEI Controller #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "16",
+              "businfo" : "pci@0000:00:16.0",
+              "version" : "05",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "communication:1",
+              "class" : "communication",
+              "handle" : "PCI:0000:00:16.1",
+              "description" : "Communication controller",
+              "product" : "C610/X99 series chipset MEI Controller #2",
+              "vendor" : "Intel Corporation",
+              "physid" : "16.1",
+              "businfo" : "pci@0000:00:16.1",
+              "version" : "05",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "usb:0",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1a.0",
+              "description" : "USB controller",
+              "product" : "C610/X99 series chipset USB Enhanced Host Controller #2",
+              "vendor" : "Intel Corporation",
+              "physid" : "1a",
+              "businfo" : "pci@0000:00:1a.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ehci-pci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "debug" : "Debug port",
+                "ehci" : "Enhanced Host Controller Interface (USB2)",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "usbhost",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:1:1",
+                  "product" : "EHCI Host Controller",
+                  "vendor" : "Linux 4.15.0-38-generic ehci_hcd",
+                  "physid" : "1",
+                  "businfo" : "usb@1",
+                  "logicalname" : "usb1",
+                  "version" : "4.15",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "2",
+                    "speed" : "480Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-2.00" : "USB 2.0"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usb",
+                      "class" : "bus",
+                      "claimed" : true,
+                      "handle" : "USB:1:2",
+                      "description" : "USB hub",
+                      "vendor" : "Intel Corp.",
+                      "physid" : "1",
+                      "businfo" : "usb@1:1",
+                      "version" : "0.05",
+                      "configuration" : {
+                        "driver" : "hub",
+                        "slots" : "6",
+                        "speed" : "480Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      },
+                      "children" : [
+                        {
+                          "id" : "usb",
+                          "class" : "bus",
+                          "claimed" : true,
+                          "handle" : "USB:1:3",
+                          "description" : "USB hub",
+                          "product" : "Gadget USB HUB",
+                          "vendor" : "no manufacturer",
+                          "physid" : "6",
+                          "businfo" : "usb@1:1.6",
+                          "version" : "0.00",
+                          "serial" : "0123456789",
+                          "configuration" : {
+                            "driver" : "hub",
+                            "maxpower" : "100mA",
+                            "slots" : "6",
+                            "speed" : "480Mbit/s"
+                          },
+                          "capabilities" : {
+                            "usb-2.00" : "USB 2.0"
+                          }
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "pci:5",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:07",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c",
+              "businfo" : "pci@0000:00:1c.0",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:6",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:08",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #8",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.7",
+              "businfo" : "pci@0000:00:1c.7",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "pci",
+                  "class" : "bridge",
+                  "claimed" : true,
+                  "handle" : "PCIBUS:0000:09",
+                  "description" : "PCI bridge",
+                  "product" : "SH7758 PCIe Switch [PS]",
+                  "vendor" : "Renesas Technology Corp.",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:08:00.0",
+                  "version" : "00",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "pcieport"
+                  },
+                  "capabilities" : {
+                    "pci" : true,
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "normal_decode" : true,
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  },
+                  "children" : [
+                    {
+                      "id" : "pci",
+                      "class" : "bridge",
+                      "claimed" : true,
+                      "handle" : "PCIBUS:0000:0a",
+                      "description" : "PCI bridge",
+                      "product" : "SH7758 PCIe Switch [PS]",
+                      "vendor" : "Renesas Technology Corp.",
+                      "physid" : "0",
+                      "businfo" : "pci@0000:09:00.0",
+                      "version" : "00",
+                      "width" : 32,
+                      "clock" : 33000000,
+                      "configuration" : {
+                        "driver" : "pcieport"
+                      },
+                      "capabilities" : {
+                        "pci" : true,
+                        "pm" : "Power Management",
+                        "msi" : "Message Signalled Interrupts",
+                        "pciexpress" : "PCI Express",
+                        "normal_decode" : true,
+                        "bus_master" : "bus mastering",
+                        "cap_list" : "PCI capabilities listing"
+                      },
+                      "children" : [
+                        {
+                          "id" : "pci",
+                          "class" : "bridge",
+                          "claimed" : true,
+                          "handle" : "PCIBUS:0000:0b",
+                          "description" : "PCI bridge",
+                          "product" : "SH7758 PCIe-PCI Bridge [PPB]",
+                          "vendor" : "Renesas Technology Corp.",
+                          "physid" : "0",
+                          "businfo" : "pci@0000:0a:00.0",
+                          "version" : "00",
+                          "width" : 32,
+                          "clock" : 33000000,
+                          "capabilities" : {
+                            "pci" : true,
+                            "pm" : "Power Management",
+                            "msi" : "Message Signalled Interrupts",
+                            "pciexpress" : "PCI Express",
+                            "normal_decode" : true,
+                            "bus_master" : "bus mastering",
+                            "cap_list" : "PCI capabilities listing"
+                          },
+                          "children" : [
+                            {
+                              "id" : "display",
+                              "class" : "display",
+                              "claimed" : true,
+                              "handle" : "PCI:0000:0b:00.0",
+                              "description" : "VGA compatible controller",
+                              "product" : "G200eR2",
+                              "vendor" : "Matrox Electronics Systems Ltd.",
+                              "physid" : "0",
+                              "businfo" : "pci@0000:0b:00.0",
+                              "version" : "01",
+                              "width" : 32,
+                              "clock" : 33000000,
+                              "configuration" : {
+                                "driver" : "mgag200",
+                                "latency" : "64",
+                                "maxlatency" : "32",
+                                "mingnt" : "16"
+                              },
+                              "capabilities" : {
+                                "pm" : "Power Management",
+                                "vga_controller" : true,
+                                "bus_master" : "bus mastering",
+                                "cap_list" : "PCI capabilities listing",
+                                "rom" : "extension ROM"
+                              }
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "usb:1",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1d.0",
+              "description" : "USB controller",
+              "product" : "C610/X99 series chipset USB Enhanced Host Controller #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1d",
+              "businfo" : "pci@0000:00:1d.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ehci-pci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "debug" : "Debug port",
+                "ehci" : "Enhanced Host Controller Interface (USB2)",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "usbhost",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:2:1",
+                  "product" : "EHCI Host Controller",
+                  "vendor" : "Linux 4.15.0-38-generic ehci_hcd",
+                  "physid" : "1",
+                  "businfo" : "usb@2",
+                  "logicalname" : "usb2",
+                  "version" : "4.15",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "2",
+                    "speed" : "480Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-2.00" : "USB 2.0"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usb",
+                      "class" : "bus",
+                      "claimed" : true,
+                      "handle" : "USB:2:2",
+                      "description" : "USB hub",
+                      "vendor" : "Intel Corp.",
+                      "physid" : "1",
+                      "businfo" : "usb@2:1",
+                      "version" : "0.05",
+                      "configuration" : {
+                        "driver" : "hub",
+                        "slots" : "8",
+                        "speed" : "480Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      }
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "isa",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.0",
+              "description" : "ISA bridge",
+              "product" : "C610/X99 series chipset LPC Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f",
+              "businfo" : "pci@0000:00:1f.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "lpc_ich",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "isa" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "storage:1",
+              "class" : "storage",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.2",
+              "description" : "SATA controller",
+              "product" : "C610/X99 series chipset 6-Port SATA Controller [AHCI mode]",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f.2",
+              "businfo" : "pci@0000:00:1f.2",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 66000000,
+              "configuration" : {
+                "driver" : "ahci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "storage" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "ahci_1.0" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            }
+          ]
+        },
+        {
+          "id" : "generic:0",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:08.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "4",
+          "businfo" : "pci@0000:7f:08.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:1",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:08.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "6",
+          "businfo" : "pci@0000:7f:08.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:2",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:08.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "7",
+          "businfo" : "pci@0000:7f:08.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:3",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:09.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "8",
+          "businfo" : "pci@0000:7f:09.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:4",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:09.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "9",
+          "businfo" : "pci@0000:7f:09.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:5",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:09.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "a",
+          "businfo" : "pci@0000:7f:09.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:6",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0b.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1",
+          "vendor" : "Intel Corporation",
+          "physid" : "b",
+          "businfo" : "pci@0000:7f:0b.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:7",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:0b.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1",
+          "vendor" : "Intel Corporation",
+          "physid" : "c",
+          "businfo" : "pci@0000:7f:0b.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:8",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:0b.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1",
+          "vendor" : "Intel Corporation",
+          "physid" : "d",
+          "businfo" : "pci@0000:7f:0b.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:9",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0b.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "e",
+          "businfo" : "pci@0000:7f:0b.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:10",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "f",
+          "businfo" : "pci@0000:7f:0c.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:11",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "10",
+          "businfo" : "pci@0000:7f:0c.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:12",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "11",
+          "businfo" : "pci@0000:7f:0c.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:13",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "12",
+          "businfo" : "pci@0000:7f:0c.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:14",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "13",
+          "businfo" : "pci@0000:7f:0c.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:15",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "14",
+          "businfo" : "pci@0000:7f:0c.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:16",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "15",
+          "businfo" : "pci@0000:7f:0c.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:17",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "16",
+          "businfo" : "pci@0000:7f:0c.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:18",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "17",
+          "businfo" : "pci@0000:7f:0d.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:19",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "18",
+          "businfo" : "pci@0000:7f:0d.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:20",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "19",
+          "businfo" : "pci@0000:7f:0d.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:21",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "1a",
+          "businfo" : "pci@0000:7f:0d.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:22",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "1b",
+          "businfo" : "pci@0000:7f:0d.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:23",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "1c",
+          "businfo" : "pci@0000:7f:0d.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:24",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "1d",
+          "businfo" : "pci@0000:7f:0f.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:25",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "1e",
+          "businfo" : "pci@0000:7f:0f.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:26",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "1f",
+          "businfo" : "pci@0000:7f:0f.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:27",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "20",
+          "businfo" : "pci@0000:7f:0f.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:28",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "21",
+          "businfo" : "pci@0000:7f:0f.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:29",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "22",
+          "businfo" : "pci@0000:7f:0f.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:30",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "23",
+          "businfo" : "pci@0000:7f:0f.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:31",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "24",
+          "businfo" : "pci@0000:7f:10.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:32",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:10.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "25",
+          "businfo" : "pci@0000:7f:10.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:33",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox",
+          "vendor" : "Intel Corporation",
+          "physid" : "26",
+          "businfo" : "pci@0000:7f:10.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:34",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.6",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox",
+          "vendor" : "Intel Corporation",
+          "physid" : "27",
+          "businfo" : "pci@0000:7f:10.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:35",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox",
+          "vendor" : "Intel Corporation",
+          "physid" : "28",
+          "businfo" : "pci@0000:7f:10.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:36",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "29",
+          "businfo" : "pci@0000:7f:12.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:37",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:12.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "2a",
+          "businfo" : "pci@0000:7f:12.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:38",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "2b",
+          "businfo" : "pci@0000:7f:12.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:39",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "2c",
+          "businfo" : "pci@0000:7f:12.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:40",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:12.5",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "2d",
+          "businfo" : "pci@0000:7f:12.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:41",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "2e",
+          "businfo" : "pci@0000:7f:12.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:42",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "2f",
+          "businfo" : "pci@0000:7f:13.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:43",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "30",
+          "businfo" : "pci@0000:7f:13.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:44",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "31",
+          "businfo" : "pci@0000:7f:13.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:45",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "32",
+          "businfo" : "pci@0000:7f:13.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:46",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "33",
+          "businfo" : "pci@0000:7f:13.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:47",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "34",
+          "businfo" : "pci@0000:7f:13.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:48",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:14.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "35",
+          "businfo" : "pci@0000:7f:14.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:49",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:14.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "36",
+          "businfo" : "pci@0000:7f:14.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:50",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "37",
+          "businfo" : "pci@0000:7f:14.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:51",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "38",
+          "businfo" : "pci@0000:7f:14.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:52",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "39",
+          "businfo" : "pci@0000:7f:14.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:53",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "3a",
+          "businfo" : "pci@0000:7f:14.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:54",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "3b",
+          "businfo" : "pci@0000:7f:14.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:55",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "3c",
+          "businfo" : "pci@0000:7f:14.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:56",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "3d",
+          "businfo" : "pci@0000:7f:16.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:57",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "3e",
+          "businfo" : "pci@0000:7f:16.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:58",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "3f",
+          "businfo" : "pci@0000:7f:16.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:59",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "40",
+          "businfo" : "pci@0000:7f:16.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:60",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "41",
+          "businfo" : "pci@0000:7f:16.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:61",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "42",
+          "businfo" : "pci@0000:7f:16.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:62",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:17.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "43",
+          "businfo" : "pci@0000:7f:17.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:63",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:17.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "44",
+          "businfo" : "pci@0000:7f:17.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:64",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "45",
+          "businfo" : "pci@0000:7f:17.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:65",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "46",
+          "businfo" : "pci@0000:7f:17.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:66",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "47",
+          "businfo" : "pci@0000:7f:17.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:67",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "48",
+          "businfo" : "pci@0000:7f:17.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:68",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "49",
+          "businfo" : "pci@0000:7f:17.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:69",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "4a",
+          "businfo" : "pci@0000:7f:17.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:70",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "4b",
+          "businfo" : "pci@0000:7f:1e.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:71",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "4c",
+          "businfo" : "pci@0000:7f:1e.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:72",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "4d",
+          "businfo" : "pci@0000:7f:1e.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:73",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "4e",
+          "businfo" : "pci@0000:7f:1e.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:74",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "4f",
+          "businfo" : "pci@0000:7f:1e.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:75",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "50",
+          "businfo" : "pci@0000:7f:1f.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:76",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "51",
+          "businfo" : "pci@0000:7f:1f.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "pci:1",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:81",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "1",
+          "businfo" : "pci@0000:80:01.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:2",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:82",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2",
+          "vendor" : "Intel Corporation",
+          "physid" : "2",
+          "businfo" : "pci@0000:80:02.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          },
+          "children" : [
+            {
+              "id" : "storage",
+              "class" : "storage",
+              "claimed" : true,
+              "handle" : "PCI:0000:82:00.0",
+              "description" : "Non-Volatile memory controller",
+              "product" : "PCIe Data Center SSD",
+              "vendor" : "Intel Corporation",
+              "physid" : "0",
+              "businfo" : "pci@0000:82:00.0",
+              "version" : "01",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "nvme",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "storage" : true,
+                "pm" : "Power Management",
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "nvm_express" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "rom" : "extension ROM"
+              }
+            }
+          ]
+        },
+        {
+          "id" : "pci:3",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:83",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "3",
+          "businfo" : "pci@0000:80:03.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          },
+          "children" : [
+            {
+              "id" : "network:0",
+              "class" : "network",
+              "claimed" : true,
+              "handle" : "PCI:0000:83:00.0",
+              "description" : "Ethernet interface",
+              "product" : "MT27710 Family [ConnectX-4 Lx]",
+              "vendor" : "Mellanox Technologies",
+              "physid" : "0",
+              "businfo" : "pci@0000:83:00.0",
+              "logicalname" : "enp131s0f0",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "duplex" : "full",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "yes",
+                "multicast" : "yes",
+                "slave" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "vpd" : "Vital Product Data",
+                "msix" : "MSI-X",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "rom" : "extension ROM",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:1",
+              "class" : "network",
+              "claimed" : true,
+              "handle" : "PCI:0000:83:00.1",
+              "description" : "Ethernet interface",
+              "product" : "MT27710 Family [ConnectX-4 Lx]",
+              "vendor" : "Mellanox Technologies",
+              "physid" : "0.1",
+              "businfo" : "pci@0000:83:00.1",
+              "logicalname" : "enp131s0f1",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "duplex" : "full",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "yes",
+                "multicast" : "yes",
+                "slave" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "vpd" : "Vital Product Data",
+                "msix" : "MSI-X",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "rom" : "extension ROM",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:2",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:02.6",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "2.6",
+              "businfo" : "pci@0000:83:02.6",
+              "logicalname" : "enp131s2f6",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:3",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:02.7",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "2.7",
+              "businfo" : "pci@0000:83:02.7",
+              "logicalname" : "enp131s2f7",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:4",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.0",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3",
+              "businfo" : "pci@0000:83:03.0",
+              "logicalname" : "enp131s3",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:5",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.1",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.1",
+              "businfo" : "pci@0000:83:03.1",
+              "logicalname" : "enp131s3f1",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:6",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.2",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.2",
+              "businfo" : "pci@0000:83:03.2",
+              "logicalname" : "enp131s3f2",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:7",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.3",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.3",
+              "businfo" : "pci@0000:83:03.3",
+              "logicalname" : "enp131s3f3",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:8",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.4",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.4",
+              "businfo" : "pci@0000:83:03.4",
+              "logicalname" : "enp131s3f4",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:9",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.5",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.5",
+              "businfo" : "pci@0000:83:03.5",
+              "logicalname" : "enp131s3f5",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:10",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.6",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.6",
+              "businfo" : "pci@0000:83:03.6",
+              "logicalname" : "enp131s3f6",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:11",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:03.7",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "3.7",
+              "businfo" : "pci@0000:83:03.7",
+              "logicalname" : "enp131s3f7",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:12",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.0",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4",
+              "businfo" : "pci@0000:83:04.0",
+              "logicalname" : "enp131s4",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:13",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.1",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.1",
+              "businfo" : "pci@0000:83:04.1",
+              "logicalname" : "enp131s4f1",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:14",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.2",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.2",
+              "businfo" : "pci@0000:83:04.2",
+              "logicalname" : "enp131s4f2",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:15",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.3",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.3",
+              "businfo" : "pci@0000:83:04.3",
+              "logicalname" : "enp131s4f3",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:16",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.4",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.4",
+              "businfo" : "pci@0000:83:04.4",
+              "logicalname" : "enp131s4f4",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:17",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.5",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.5",
+              "businfo" : "pci@0000:83:04.5",
+              "logicalname" : "enp131s4f5",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:18",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.6",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.6",
+              "businfo" : "pci@0000:83:04.6",
+              "logicalname" : "enp131s4f6",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:19",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:04.7",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "4.7",
+              "businfo" : "pci@0000:83:04.7",
+              "logicalname" : "enp131s4f7",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:20",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:05.0",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "5",
+              "businfo" : "pci@0000:83:05.0",
+              "logicalname" : "enp131s5",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            },
+            {
+              "id" : "network:21",
+              "class" : "network",
+              "disabled" : true,
+              "claimed" : true,
+              "handle" : "PCI:0000:83:05.1",
+              "description" : "Ethernet interface",
+              "product" : "Illegal Vendor ID",
+              "vendor" : "Illegal Vendor ID",
+              "physid" : "5.1",
+              "businfo" : "pci@0000:83:05.1",
+              "logicalname" : "enp131s5f1",
+              "version" : "00",
+              "serial" : "de:ad:be:ef:00:ef",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "mlx5_core",
+                "driverversion" : "5.0-0",
+                "firmware" : "14.21.3012 (DEL2420110034)",
+                "latency" : "0",
+                "link" : "no",
+                "multicast" : "yes"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msix" : "MSI-X",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            }
+          ]
+        },
+        {
+          "id" : "pci:4",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:85",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "3.2",
+          "businfo" : "pci@0000:80:03.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:77",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management",
+          "vendor" : "Intel Corporation",
+          "physid" : "5",
+          "businfo" : "pci@0000:80:05.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:78",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug",
+          "vendor" : "Intel Corporation",
+          "physid" : "5.1",
+          "businfo" : "pci@0000:80:05.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "msi" : "Message Signalled Interrupts",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:79",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors",
+          "vendor" : "Intel Corporation",
+          "physid" : "5.2",
+          "businfo" : "pci@0000:80:05.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:80",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.4",
+          "description" : "PIC",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D I/O APIC",
+          "vendor" : "Intel Corporation",
+          "physid" : "5.4",
+          "businfo" : "pci@0000:80:05.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "io_x_-apic" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:81",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:08.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "52",
+          "businfo" : "pci@0000:ff:08.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:82",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:08.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "53",
+          "businfo" : "pci@0000:ff:08.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:83",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:08.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "54",
+          "businfo" : "pci@0000:ff:08.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:84",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:09.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "55",
+          "businfo" : "pci@0000:ff:09.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:85",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:09.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "56",
+          "businfo" : "pci@0000:ff:09.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:86",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:09.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "57",
+          "businfo" : "pci@0000:ff:09.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:87",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0b.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1",
+          "vendor" : "Intel Corporation",
+          "physid" : "58",
+          "businfo" : "pci@0000:ff:0b.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:88",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:0b.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1",
+          "vendor" : "Intel Corporation",
+          "physid" : "59",
+          "businfo" : "pci@0000:ff:0b.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:89",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:0b.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1",
+          "vendor" : "Intel Corporation",
+          "physid" : "5a",
+          "businfo" : "pci@0000:ff:0b.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:90",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0b.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "5b",
+          "businfo" : "pci@0000:ff:0b.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:91",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "5c",
+          "businfo" : "pci@0000:ff:0c.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:92",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "5d",
+          "businfo" : "pci@0000:ff:0c.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:93",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "5e",
+          "businfo" : "pci@0000:ff:0c.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:94",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "5f",
+          "businfo" : "pci@0000:ff:0c.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:95",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "60",
+          "businfo" : "pci@0000:ff:0c.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:96",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "61",
+          "businfo" : "pci@0000:ff:0c.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:97",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "62",
+          "businfo" : "pci@0000:ff:0c.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:98",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "63",
+          "businfo" : "pci@0000:ff:0c.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:99",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "64",
+          "businfo" : "pci@0000:ff:0d.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:100",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "65",
+          "businfo" : "pci@0000:ff:0d.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:101",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "66",
+          "businfo" : "pci@0000:ff:0d.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:102",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "67",
+          "businfo" : "pci@0000:ff:0d.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:103",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "68",
+          "businfo" : "pci@0000:ff:0d.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:104",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "69",
+          "businfo" : "pci@0000:ff:0d.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:105",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6a",
+          "businfo" : "pci@0000:ff:0f.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:106",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6b",
+          "businfo" : "pci@0000:ff:0f.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:107",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6c",
+          "businfo" : "pci@0000:ff:0f.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:108",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6d",
+          "businfo" : "pci@0000:ff:0f.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:109",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6e",
+          "businfo" : "pci@0000:ff:0f.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:110",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6f",
+          "businfo" : "pci@0000:ff:0f.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:111",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "70",
+          "businfo" : "pci@0000:ff:0f.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:112",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "71",
+          "businfo" : "pci@0000:ff:10.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:113",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:10.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "72",
+          "businfo" : "pci@0000:ff:10.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:114",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox",
+          "vendor" : "Intel Corporation",
+          "physid" : "73",
+          "businfo" : "pci@0000:ff:10.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:115",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.6",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox",
+          "vendor" : "Intel Corporation",
+          "physid" : "74",
+          "businfo" : "pci@0000:ff:10.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:116",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox",
+          "vendor" : "Intel Corporation",
+          "physid" : "75",
+          "businfo" : "pci@0000:ff:10.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:117",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "76",
+          "businfo" : "pci@0000:ff:12.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:118",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:12.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "77",
+          "businfo" : "pci@0000:ff:12.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:119",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "78",
+          "businfo" : "pci@0000:ff:12.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:120",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "79",
+          "businfo" : "pci@0000:ff:12.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:121",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:12.5",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "7a",
+          "businfo" : "pci@0000:ff:12.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:122",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 1 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "7b",
+          "businfo" : "pci@0000:ff:12.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:123",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "7c",
+          "businfo" : "pci@0000:ff:13.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:124",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "7d",
+          "businfo" : "pci@0000:ff:13.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:125",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "7e",
+          "businfo" : "pci@0000:ff:13.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:126",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "7f",
+          "businfo" : "pci@0000:ff:13.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:127",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "80",
+          "businfo" : "pci@0000:ff:13.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:128",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "81",
+          "businfo" : "pci@0000:ff:13.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:129",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:14.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "82",
+          "businfo" : "pci@0000:ff:14.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:130",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:14.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "83",
+          "businfo" : "pci@0000:ff:14.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:131",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "84",
+          "businfo" : "pci@0000:ff:14.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:132",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "85",
+          "businfo" : "pci@0000:ff:14.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:133",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "86",
+          "businfo" : "pci@0000:ff:14.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:134",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "87",
+          "businfo" : "pci@0000:ff:14.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:135",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "88",
+          "businfo" : "pci@0000:ff:14.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:136",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "89",
+          "businfo" : "pci@0000:ff:14.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:137",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "8a",
+          "businfo" : "pci@0000:ff:16.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:138",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS",
+          "vendor" : "Intel Corporation",
+          "physid" : "8b",
+          "businfo" : "pci@0000:ff:16.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:139",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "8c",
+          "businfo" : "pci@0000:ff:16.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:140",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "8d",
+          "businfo" : "pci@0000:ff:16.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:141",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "8e",
+          "businfo" : "pci@0000:ff:16.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:142",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "8f",
+          "businfo" : "pci@0000:ff:16.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:143",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:17.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "90",
+          "businfo" : "pci@0000:ff:17.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:144",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:17.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "91",
+          "businfo" : "pci@0000:ff:17.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "bdx_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:145",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "92",
+          "businfo" : "pci@0000:ff:17.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:146",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 1 Error",
+          "vendor" : "Intel Corporation",
+          "physid" : "93",
+          "businfo" : "pci@0000:ff:17.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:147",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "94",
+          "businfo" : "pci@0000:ff:17.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:148",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "95",
+          "businfo" : "pci@0000:ff:17.5",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:149",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "96",
+          "businfo" : "pci@0000:ff:17.6",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:150",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "97",
+          "businfo" : "pci@0000:ff:17.7",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:151",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "98",
+          "businfo" : "pci@0000:ff:1e.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:152",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "99",
+          "businfo" : "pci@0000:ff:1e.1",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:153",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9a",
+          "businfo" : "pci@0000:ff:1e.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:154",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9b",
+          "businfo" : "pci@0000:ff:1e.3",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:155",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9c",
+          "businfo" : "pci@0000:ff:1e.4",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:156",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9d",
+          "businfo" : "pci@0000:ff:1f.0",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:157",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9e",
+          "businfo" : "pci@0000:ff:1f.2",
+          "version" : "01",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        }
+      ]
+    },
+    {
+      "id" : "power:0",
+      "class" : "power",
+      "description" : "PWR SPLY,750W,RDNT,LTON",
+      "product" : "0W8R3CA00",
+      "vendor" : "DELL",
+      "physid" : "1",
+      "serial" : "CNLOD0076F26A3",
+      "units" : "mWh",
+      "capacity" : 750
+    },
+    {
+      "id" : "power:1",
+      "class" : "power",
+      "description" : "PWR SPLY,750W,RDNT,LTON",
+      "product" : "0W8R3CA00",
+      "vendor" : "DELL",
+      "physid" : "2",
+      "serial" : "CNLOD0076H3642",
+      "units" : "mWh",
+      "capacity" : 750
+    },
+    {
+      "id" : "network:0",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "3",
+      "logicalname" : "gre_sys",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:1",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "4",
+      "logicalname" : "vethJE0WT6",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:2",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "5",
+      "logicalname" : "vxlan_sys_4789",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "vxlan",
+        "driverversion" : "0.1",
+        "link" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:3",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "6",
+      "logicalname" : "br-int",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:4",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "7",
+      "logicalname" : "vethRL13C7",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:5",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "8",
+      "logicalname" : "ovs-system",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:6",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "9",
+      "logicalname" : "br-data2",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:7",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "a",
+      "logicalname" : "virbr0-nic",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "tun",
+        "driverversion" : "1.6",
+        "duplex" : "full",
+        "link" : "no",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Mbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:8",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "b",
+      "logicalname" : "gretap0",
+      "configuration" : {
+        "broadcast" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:9",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "c",
+      "logicalname" : "bond0.23",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "link" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:10",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "d",
+      "logicalname" : "vethNQHARW",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:11",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "e",
+      "logicalname" : "bond1",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "bonding",
+        "driverversion" : "3.7.1",
+        "duplex" : "full",
+        "firmware" : "2",
+        "link" : "yes",
+        "master" : "yes",
+        "multicast" : "yes",
+        "promiscuous" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:12",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "f",
+      "logicalname" : "vethX828RO",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:13",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "10",
+      "logicalname" : "br-ex",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:14",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "11",
+      "logicalname" : "br-data1",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:15",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "12",
+      "logicalname" : "erspan0",
+      "configuration" : {
+        "broadcast" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:16",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "13",
+      "logicalname" : "veth0D2798",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:17",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "14",
+      "logicalname" : "bond0.24",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "ip" : "10.116.200.18",
+        "link" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:18",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "15",
+      "logicalname" : "br-data",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:19",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "16",
+      "logicalname" : "bond0",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "bonding",
+        "driverversion" : "3.7.1",
+        "duplex" : "full",
+        "firmware" : "2",
+        "link" : "yes",
+        "master" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:20",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "17",
+      "logicalname" : "br-tun",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:21",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "18",
+      "logicalname" : "bond0.25",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "link" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    }
+  ]
+}
diff --git a/src/tests/hw-health-samples/lshw.dell.02.json b/src/tests/hw-health-samples/lshw.dell.02.json
new file mode 100644
index 0000000..26734e5
--- /dev/null
+++ b/src/tests/hw-health-samples/lshw.dell.02.json
@@ -0,0 +1,1141 @@
+{
+  "id" : "pluto",
+  "class" : "system",
+  "claimed" : true,
+  "handle" : "DMI:0001",
+  "description" : "Notebook",
+  "product" : "Precision 7520 (07B0)",
+  "vendor" : "Dell Inc.",
+  "serial" : "1N79PH2",
+  "width" : 64,
+  "configuration" : {
+    "boot" : "normal",
+    "chassis" : "notebook",
+    "family" : "Precision",
+    "sku" : "07B0",
+    "uuid" : "44454C4C-4E00-1037-8039-B1C04F504832"
+  },
+  "capabilities" : {
+    "smbios-3.0" : "SMBIOS version 3.0",
+    "dmi-3.0" : "DMI version 3.0",
+    "smp" : "Symmetric Multi-Processing",
+    "vsyscall32" : "32-bit processes"
+  },
+  "children" : [
+    {
+      "id" : "core",
+      "class" : "bus",
+      "claimed" : true,
+      "handle" : "DMI:0002",
+      "description" : "Motherboard",
+      "product" : "04FCWT",
+      "vendor" : "Dell Inc.",
+      "physid" : "0",
+      "version" : "A00",
+      "serial" : "/1N79PH2/CN129637BG002D/",
+      "children" : [
+        {
+          "id" : "firmware",
+          "class" : "memory",
+          "claimed" : true,
+          "description" : "BIOS",
+          "vendor" : "Dell Inc.",
+          "physid" : "0",
+          "version" : "1.7.1",
+          "date" : "09/07/2017",
+          "units" : "bytes",
+          "size" : 65536,
+          "capacity" : 16711680,
+          "capabilities" : {
+            "pci" : "PCI bus",
+            "pnp" : "Plug-and-Play",
+            "upgrade" : "BIOS EEPROM can be upgraded",
+            "shadowing" : "BIOS shadowing",
+            "cdboot" : "Booting from CD-ROM/DVD",
+            "bootselect" : "Selectable boot path",
+            "edd" : "Enhanced Disk Drive extensions",
+            "int13floppynec" : "NEC 9800 floppy",
+            "int13floppy1200" : "5.25\" 1.2MB floppy",
+            "int13floppy720" : "3.5\" 720KB floppy",
+            "int13floppy2880" : "3.5\" 2.88MB floppy",
+            "int5printscreen" : "Print Screen key",
+            "int9keyboard" : "i8042 keyboard controller",
+            "int14serial" : "INT14 serial line control",
+            "int17printer" : "INT17 printer control",
+            "acpi" : "ACPI",
+            "usb" : "USB legacy emulation",
+            "smartbattery" : "Smart battery",
+            "biosbootspecification" : "BIOS boot specification",
+            "netboot" : "Function-key initiated network service boot",
+            "uefi" : "UEFI specification is supported"
+          }
+        },
+        {
+          "id" : "memory",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0046",
+          "description" : "System Memory",
+          "physid" : "46",
+          "slot" : "System board or motherboard",
+          "units" : "bytes",
+          "size" : 34359738368,
+          "children" : [
+            {
+              "id" : "bank:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0047",
+              "description" : "SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2400 MHz (0,4 ns)",
+              "product" : "HMA82GS6AFR8N-UH",
+              "vendor" : "Hynix Semiconductor (Hyundai Electronics)",
+              "physid" : "0",
+              "serial" : "71DE0E44",
+              "slot" : "ChannelA-DIMM0",
+              "units" : "bytes",
+              "size" : 17179869184,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0048",
+              "description" : "DIMM [empty]",
+              "physid" : "1",
+              "slot" : "ChannelA-DIMM1"
+            },
+            {
+              "id" : "bank:2",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0049",
+              "description" : "SODIMM DDR4 Synchronous Unbuffered (Unregistered) 2400 MHz (0,4 ns)",
+              "product" : "HMA82GS6AFR8N-UH",
+              "vendor" : "Hynix Semiconductor (Hyundai Electronics)",
+              "physid" : "2",
+              "serial" : "71DE0DBD",
+              "slot" : "ChannelB-DIMM0",
+              "units" : "bytes",
+              "size" : 17179869184,
+              "width" : 64,
+              "clock" : 2400000000
+            },
+            {
+              "id" : "bank:3",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:004A",
+              "description" : "DIMM [empty]",
+              "physid" : "3",
+              "slot" : "ChannelB-DIMM1"
+            }
+          ]
+        },
+        {
+          "id" : "cache:0",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:004C",
+          "description" : "L1 cache",
+          "physid" : "4c",
+          "slot" : "L1 Cache",
+          "units" : "bytes",
+          "size" : 262144,
+          "capacity" : 262144,
+          "configuration" : {
+            "level" : "1"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "write-back" : "Write-back",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cache:1",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:004D",
+          "description" : "L2 cache",
+          "physid" : "4d",
+          "slot" : "L2 Cache",
+          "units" : "bytes",
+          "size" : 1048576,
+          "capacity" : 1048576,
+          "configuration" : {
+            "level" : "2"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "write-back" : "Write-back",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cache:2",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:004E",
+          "description" : "L3 cache",
+          "physid" : "4e",
+          "slot" : "L3 Cache",
+          "units" : "bytes",
+          "size" : 6291456,
+          "capacity" : 6291456,
+          "configuration" : {
+            "level" : "3"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "write-back" : "Write-back",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cpu",
+          "class" : "processor",
+          "claimed" : true,
+          "handle" : "DMI:004F",
+          "description" : "CPU",
+          "product" : "Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz",
+          "vendor" : "Intel Corp.",
+          "physid" : "4f",
+          "businfo" : "cpu@0",
+          "version" : "Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz",
+          "serial" : "To Be Filled By O.E.M.",
+          "slot" : "U3E1",
+          "units" : "Hz",
+          "size" : 3587082000,
+          "capacity" : 3800000000,
+          "width" : 64,
+          "clock" : 100000000,
+          "configuration" : {
+            "cores" : "4",
+            "enabledcores" : "4",
+            "threads" : "8"
+          },
+          "capabilities" : {
+            "x86-64" : "64bits extensions (x86-64)",
+            "fpu" : "mathematical co-processor",
+            "fpu_exception" : "FPU exceptions reporting",
+            "wp" : true,
+            "vme" : "virtual mode extensions",
+            "de" : "debugging extensions",
+            "pse" : "page size extensions",
+            "tsc" : "time stamp counter",
+            "msr" : "model-specific registers",
+            "pae" : "4GB+ memory addressing (Physical Address Extension)",
+            "mce" : "machine check exceptions",
+            "cx8" : "compare and exchange 8-byte",
+            "apic" : "on-chip advanced programmable interrupt controller (APIC)",
+            "sep" : "fast system calls",
+            "mtrr" : "memory type range registers",
+            "pge" : "page global enable",
+            "mca" : "machine check architecture",
+            "cmov" : "conditional move instruction",
+            "pat" : "page attribute table",
+            "pse36" : "36-bit page size extensions",
+            "clflush" : true,
+            "dts" : "debug trace and EMON store MSRs",
+            "acpi" : "thermal control (ACPI)",
+            "mmx" : "multimedia extensions (MMX)",
+            "fxsr" : "fast floating point save/restore",
+            "sse" : "streaming SIMD extensions (SSE)",
+            "sse2" : "streaming SIMD extensions (SSE2)",
+            "ss" : "self-snoop",
+            "ht" : "HyperThreading",
+            "tm" : "thermal interrupt and status",
+            "pbe" : "pending break event",
+            "syscall" : "fast system calls",
+            "nx" : "no-execute bit (NX)",
+            "pdpe1gb" : true,
+            "rdtscp" : true,
+            "constant_tsc" : true,
+            "art" : true,
+            "arch_perfmon" : true,
+            "pebs" : true,
+            "bts" : true,
+            "rep_good" : true,
+            "nopl" : true,
+            "xtopology" : true,
+            "nonstop_tsc" : true,
+            "cpuid" : true,
+            "aperfmperf" : true,
+            "tsc_known_freq" : true,
+            "pni" : true,
+            "pclmulqdq" : true,
+            "dtes64" : true,
+            "monitor" : true,
+            "ds_cpl" : true,
+            "vmx" : true,
+            "est" : true,
+            "tm2" : true,
+            "ssse3" : true,
+            "sdbg" : true,
+            "fma" : true,
+            "cx16" : true,
+            "xtpr" : true,
+            "pdcm" : true,
+            "pcid" : true,
+            "sse4_1" : true,
+            "sse4_2" : true,
+            "x2apic" : true,
+            "movbe" : true,
+            "popcnt" : true,
+            "tsc_deadline_timer" : true,
+            "aes" : true,
+            "xsave" : true,
+            "avx" : true,
+            "f16c" : true,
+            "rdrand" : true,
+            "lahf_lm" : true,
+            "abm" : true,
+            "3dnowprefetch" : true,
+            "cpuid_fault" : true,
+            "epb" : true,
+            "invpcid_single" : true,
+            "pti" : true,
+            "ssbd" : true,
+            "ibrs" : true,
+            "ibpb" : true,
+            "stibp" : true,
+            "tpr_shadow" : true,
+            "vnmi" : true,
+            "flexpriority" : true,
+            "ept" : true,
+            "vpid" : true,
+            "fsgsbase" : true,
+            "tsc_adjust" : true,
+            "bmi1" : true,
+            "avx2" : true,
+            "smep" : true,
+            "bmi2" : true,
+            "erms" : true,
+            "invpcid" : true,
+            "mpx" : true,
+            "rdseed" : true,
+            "adx" : true,
+            "smap" : true,
+            "clflushopt" : true,
+            "intel_pt" : true,
+            "xsaveopt" : true,
+            "xsavec" : true,
+            "xgetbv1" : true,
+            "xsaves" : true,
+            "dtherm" : true,
+            "ida" : true,
+            "arat" : true,
+            "pln" : true,
+            "pts" : true,
+            "hwp" : true,
+            "hwp_notify" : true,
+            "hwp_act_window" : true,
+            "hwp_epp" : true,
+            "flush_l1d" : true,
+            "cpufreq" : "CPU Frequency scaling"
+          }
+        },
+        {
+          "id" : "pci",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:00",
+          "description" : "Host bridge",
+          "product" : "Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "100",
+          "businfo" : "pci@0000:00:00.0",
+          "version" : "05",
+          "width" : 32,
+          "clock" : 33000000,
+          "children" : [
+            {
+              "id" : "display",
+              "class" : "display",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:02.0",
+              "description" : "VGA compatible controller",
+              "product" : "Intel Corporation",
+              "vendor" : "Intel Corporation",
+              "physid" : "2",
+              "businfo" : "pci@0000:00:02.0",
+              "version" : "04",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "i915",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "vga_controller" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "rom" : "extension ROM"
+              }
+            },
+            {
+              "id" : "generic:0",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.0",
+              "description" : "Signal processing controller",
+              "product" : "Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem",
+              "vendor" : "Intel Corporation",
+              "physid" : "4",
+              "businfo" : "pci@0000:00:04.0",
+              "version" : "05",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "proc_thermal",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "usb",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:14.0",
+              "description" : "USB controller",
+              "product" : "100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "14",
+              "businfo" : "pci@0000:00:14.0",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "xhci_hcd",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "xhci" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "usbhost:0",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:1:1",
+                  "product" : "xHCI Host Controller",
+                  "vendor" : "Linux 4.15.0-46-generic xhci-hcd",
+                  "physid" : "0",
+                  "businfo" : "usb@1",
+                  "logicalname" : "usb1",
+                  "version" : "4.15",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "16",
+                    "speed" : "480Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-2.00" : "USB 2.0"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usb:0",
+                      "class" : "input",
+                      "claimed" : true,
+                      "handle" : "USB:1:2",
+                      "description" : "Keyboard",
+                      "product" : "USB Keyboard",
+                      "vendor" : "Logitech",
+                      "physid" : "1",
+                      "businfo" : "usb@1:1",
+                      "version" : "87.00",
+                      "configuration" : {
+                        "driver" : "usbhid",
+                        "maxpower" : "98mA",
+                        "speed" : "1Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-1.10" : "USB 1.1"
+                      }
+                    },
+                    {
+                      "id" : "usb:1",
+                      "class" : "multimedia",
+                      "claimed" : true,
+                      "handle" : "USB:1:3",
+                      "description" : "Audio device",
+                      "product" : "Plantronics C320-M",
+                      "vendor" : "Plantronics",
+                      "physid" : "2",
+                      "businfo" : "usb@1:2",
+                      "version" : "1.28",
+                      "serial" : "02A3D4B2801E3A428A66BA3C8CAAEE74",
+                      "configuration" : {
+                        "driver" : "usbhid",
+                        "maxpower" : "100mA",
+                        "speed" : "12Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0",
+                        "audio-control" : "Control device"
+                      }
+                    },
+                    {
+                      "id" : "usb:2",
+                      "class" : "input",
+                      "claimed" : true,
+                      "handle" : "USB:1:4",
+                      "description" : "Mouse",
+                      "product" : "Kensington Eagle Trackball",
+                      "vendor" : "Primax",
+                      "physid" : "3",
+                      "businfo" : "usb@1:3",
+                      "version" : "6.00",
+                      "configuration" : {
+                        "driver" : "usbhid",
+                        "maxpower" : "100mA",
+                        "speed" : "1Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      }
+                    },
+                    {
+                      "id" : "usb:3",
+                      "class" : "generic",
+                      "handle" : "USB:1:5",
+                      "description" : "Generic USB device",
+                      "product" : "5880",
+                      "vendor" : "Broadcom Corp",
+                      "physid" : "a",
+                      "businfo" : "usb@1:a",
+                      "version" : "1.01",
+                      "serial" : "0123456789ABCD",
+                      "configuration" : {
+                        "maxpower" : "100mA",
+                        "speed" : "12Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-1.10" : "USB 1.1"
+                      }
+                    },
+                    {
+                      "id" : "usb:4",
+                      "class" : "multimedia",
+                      "claimed" : true,
+                      "handle" : "USB:1:6",
+                      "description" : "Video",
+                      "product" : "Integrated Webcam_HD",
+                      "vendor" : "CN0K49W1LOG0078TAJMLA01",
+                      "physid" : "b",
+                      "businfo" : "usb@1:b",
+                      "version" : "60.06",
+                      "serial" : "200901010001",
+                      "configuration" : {
+                        "driver" : "uvcvideo",
+                        "maxpower" : "500mA",
+                        "speed" : "480Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      }
+                    }
+                  ]
+                },
+                {
+                  "id" : "usbhost:1",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:2:1",
+                  "product" : "xHCI Host Controller",
+                  "vendor" : "Linux 4.15.0-46-generic xhci-hcd",
+                  "physid" : "1",
+                  "businfo" : "usb@2",
+                  "logicalname" : "usb2",
+                  "version" : "4.15",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "10",
+                    "speed" : "5000Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-3.00" : true
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "generic:1",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:14.2",
+              "description" : "Signal processing controller",
+              "product" : "100 Series/C230 Series Chipset Family Thermal Subsystem",
+              "vendor" : "Intel Corporation",
+              "physid" : "14.2",
+              "businfo" : "pci@0000:00:14.2",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "intel_pch_thermal",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:2",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:15.0",
+              "description" : "Signal processing controller",
+              "product" : "100 Series/C230 Series Chipset Family Serial IO I2C Controller #0",
+              "vendor" : "Intel Corporation",
+              "physid" : "15",
+              "businfo" : "pci@0000:00:15.0",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "intel-lpss",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:3",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:15.1",
+              "description" : "Signal processing controller",
+              "product" : "100 Series/C230 Series Chipset Family Serial IO I2C Controller #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "15.1",
+              "businfo" : "pci@0000:00:15.1",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "intel-lpss",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "communication",
+              "class" : "communication",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:16.0",
+              "description" : "Communication controller",
+              "product" : "100 Series/C230 Series Chipset Family MEI Controller #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "16",
+              "businfo" : "pci@0000:00:16.0",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "mei_me",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "storage",
+              "class" : "storage",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:17.0",
+              "description" : "SATA controller",
+              "product" : "Q170/Q150/B150/H170/H110/Z170/CM236 Chipset SATA Controller [AHCI Mode]",
+              "vendor" : "Intel Corporation",
+              "physid" : "17",
+              "businfo" : "pci@0000:00:17.0",
+              "version" : "31",
+              "width" : 32,
+              "clock" : 66000000,
+              "configuration" : {
+                "driver" : "ahci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "storage" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "ahci_1.0" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:0",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:01",
+              "description" : "PCI bridge",
+              "product" : "100 Series/C230 Series Chipset Family PCI Express Root Port #2",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c",
+              "businfo" : "pci@0000:00:1c.0",
+              "version" : "f1",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "network",
+                  "class" : "network",
+                  "disabled" : true,
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:00.0",
+                  "description" : "Wireless interface",
+                  "product" : "Wireless 8265 / 8275",
+                  "vendor" : "Intel Corporation",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:01:00.0",
+                  "logicalname" : "wlp1s0",
+                  "version" : "78",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "broadcast" : "yes",
+                    "driver" : "iwlwifi",
+                    "driverversion" : "4.15.0-46-generic",
+                    "firmware" : "34.0.1",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes",
+                    "wireless" : "IEEE 802.11"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "wireless" : "Wireless-LAN"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:1",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:02",
+              "description" : "PCI bridge",
+              "product" : "100 Series/C230 Series Chipset Family PCI Express Root Port #3",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.2",
+              "businfo" : "pci@0000:00:1c.2",
+              "version" : "f1",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "generic",
+                  "class" : "generic",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:02:00.0",
+                  "description" : "Unassigned class",
+                  "product" : "RTS525A PCI Express Card Reader",
+                  "vendor" : "Realtek Semiconductor Co., Ltd.",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:02:00.0",
+                  "version" : "01",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "rtsx_pci",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:2",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:03",
+              "description" : "PCI bridge",
+              "product" : "100 Series/C230 Series Chipset Family PCI Express Root Port #5",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.4",
+              "businfo" : "pci@0000:00:1c.4",
+              "version" : "f1",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:3",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:3c",
+              "description" : "PCI bridge",
+              "product" : "100 Series/C230 Series Chipset Family PCI Express Root Port #9",
+              "vendor" : "Intel Corporation",
+              "physid" : "1d",
+              "businfo" : "pci@0000:00:1d.0",
+              "version" : "f1",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "storage",
+                  "class" : "storage",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:3c:00.0",
+                  "description" : "Non-Volatile memory controller",
+                  "product" : "NVMe SSD Controller SM961/PM961",
+                  "vendor" : "Samsung Electronics Co Ltd",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:3c:00.0",
+                  "version" : "00",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "nvme",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "storage" : true,
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "msix" : "MSI-X",
+                    "nvm_express" : true,
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "isa",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.0",
+              "description" : "ISA bridge",
+              "product" : "CM238 Chipset LPC/eSPI Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f",
+              "businfo" : "pci@0000:00:1f.0",
+              "version" : "31",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "isa" : true,
+                "bus_master" : "bus mastering"
+              }
+            },
+            {
+              "id" : "memory",
+              "class" : "memory",
+              "handle" : "PCI:0000:00:1f.2",
+              "description" : "Memory controller",
+              "product" : "100 Series/C230 Series Chipset Family Power Management Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f.2",
+              "businfo" : "pci@0000:00:1f.2",
+              "version" : "31",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              }
+            },
+            {
+              "id" : "multimedia",
+              "class" : "multimedia",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.3",
+              "description" : "Audio device",
+              "product" : "CM238 HD Audio Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f.3",
+              "businfo" : "pci@0000:00:1f.3",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "snd_hda_intel",
+                "latency" : "32"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "serial",
+              "class" : "bus",
+              "handle" : "PCI:0000:00:1f.4",
+              "description" : "SMBus",
+              "product" : "100 Series/C230 Series Chipset Family SMBus",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f.4",
+              "businfo" : "pci@0000:00:1f.4",
+              "version" : "31",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              }
+            },
+            {
+              "id" : "network",
+              "class" : "network",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.6",
+              "description" : "Ethernet interface",
+              "product" : "Ethernet Connection (5) I219-LM",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f.6",
+              "businfo" : "pci@0000:00:1f.6",
+              "logicalname" : "enp0s31f6",
+              "version" : "31",
+              "serial" : "de:ad:be:ef:00:ef",
+              "units" : "bit/s",
+              "size" : 1000000000,
+              "capacity" : 1000000000,
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "autonegotiation" : "on",
+                "broadcast" : "yes",
+                "driver" : "e1000e",
+                "driverversion" : "3.2.6-k",
+                "duplex" : "full",
+                "firmware" : "0.1-3",
+                "ip" : "192.168.1.134",
+                "latency" : "0",
+                "link" : "yes",
+                "multicast" : "yes",
+                "port" : "twisted pair",
+                "speed" : "1Gbit/s"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "msi" : "Message Signalled Interrupts",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing",
+                "ethernet" : true,
+                "physical" : "Physical interface",
+                "tp" : "twisted pair",
+                "10bt" : "10Mbit/s",
+                "10bt-fd" : "10Mbit/s (full duplex)",
+                "100bt" : "100Mbit/s",
+                "100bt-fd" : "100Mbit/s (full duplex)",
+                "1000bt-fd" : "1Gbit/s (full duplex)",
+                "autonegotiation" : "Auto-negotiation"
+              }
+            }
+          ]
+        }
+      ]
+    },
+    {
+      "id" : "battery",
+      "class" : "power",
+      "claimed" : true,
+      "handle" : "DMI:1600",
+      "product" : "DELL TWCPG79",
+      "vendor" : "Samsung SDI",
+      "physid" : "1",
+      "version" : "09/06/2017",
+      "serial" : "B85F",
+      "slot" : "Sys. Battery Bay",
+      "units" : "mWh",
+      "capacity" : 90990,
+      "configuration" : {
+        "voltage" : "11,4V"
+      }
+    },
+    {
+      "id" : "network:0",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "2",
+      "logicalname" : "virbr0-nic",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "tun",
+        "driverversion" : "1.6",
+        "duplex" : "full",
+        "link" : "no",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Mbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:1",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "3",
+      "logicalname" : "vethWX1VFV",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:2",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "4",
+      "logicalname" : "lxdbr0",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "bridge",
+        "driverversion" : "2.3",
+        "firmware" : "N/A",
+        "ip" : "10.205.6.1",
+        "link" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:3",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "5",
+      "logicalname" : "virbr0",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "bridge",
+        "driverversion" : "2.3",
+        "firmware" : "N/A",
+        "ip" : "192.168.122.1",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    }
+  ]
+}
diff --git a/src/tests/hw-health-samples/lshw.hp.json b/src/tests/hw-health-samples/lshw.hp.json
new file mode 100644
index 0000000..9126f2a
--- /dev/null
+++ b/src/tests/hw-health-samples/lshw.hp.json
@@ -0,0 +1,6190 @@
+{
+  "id" : "hpmachine",
+  "class" : "system",
+  "claimed" : true,
+  "handle" : "DMI:0009",
+  "description" : "Rack Mount Chassis",
+  "product" : "ProLiant DL380 Gen9 (719061-B21)",
+  "vendor" : "HP",
+  "serial" : "MXQ53804X4",
+  "width" : 64,
+  "configuration" : {
+    "boot" : "normal",
+    "chassis" : "rackmount",
+    "family" : "ProLiant",
+    "sku" : "719061-B21",
+    "uuid" : "37313930-3631-4D58-5135-333830345834"
+  },
+  "capabilities" : {
+    "smbios-2.8" : "SMBIOS version 2.8",
+    "dmi-2.8" : "DMI version 2.8",
+    "vsyscall32" : "32-bit processes"
+  },
+  "children" : [
+    {
+      "id" : "core",
+      "class" : "bus",
+      "claimed" : true,
+      "description" : "Motherboard",
+      "physid" : "0",
+      "children" : [
+        {
+          "id" : "cache:0",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0000",
+          "description" : "L1 cache",
+          "physid" : "0",
+          "slot" : "L1-Cache",
+          "units" : "bytes",
+          "size" : 786432,
+          "capacity" : 786432,
+          "configuration" : {
+            "level" : "1"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "write-back" : "Write-back",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cache:1",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0001",
+          "description" : "L2 cache",
+          "physid" : "1",
+          "slot" : "L2-Cache",
+          "units" : "bytes",
+          "size" : 3145728,
+          "capacity" : 3145728,
+          "configuration" : {
+            "level" : "2"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "varies" : "Varies With Memory Address",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cache:2",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0002",
+          "description" : "L3 cache",
+          "physid" : "2",
+          "slot" : "L3-Cache",
+          "units" : "bytes",
+          "size" : 31457280,
+          "capacity" : 31457280,
+          "configuration" : {
+            "level" : "3"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "varies" : "Varies With Memory Address",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cpu:0",
+          "class" : "processor",
+          "claimed" : true,
+          "handle" : "DMI:0003",
+          "description" : "CPU",
+          "product" : "Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz",
+          "vendor" : "Intel Corp.",
+          "physid" : "3",
+          "businfo" : "cpu@0",
+          "version" : "Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz",
+          "slot" : "Proc 1",
+          "units" : "Hz",
+          "size" : 1226000000,
+          "capacity" : 4000000000,
+          "width" : 64,
+          "clock" : 100000000,
+          "configuration" : {
+            "cores" : "12",
+            "enabledcores" : "12",
+            "threads" : "24"
+          },
+          "capabilities" : {
+            "x86-64" : "64bits extensions (x86-64)",
+            "fpu" : "mathematical co-processor",
+            "fpu_exception" : "FPU exceptions reporting",
+            "wp" : true,
+            "vme" : "virtual mode extensions",
+            "de" : "debugging extensions",
+            "pse" : "page size extensions",
+            "tsc" : "time stamp counter",
+            "msr" : "model-specific registers",
+            "pae" : "4GB+ memory addressing (Physical Address Extension)",
+            "mce" : "machine check exceptions",
+            "cx8" : "compare and exchange 8-byte",
+            "apic" : "on-chip advanced programmable interrupt controller (APIC)",
+            "sep" : "fast system calls",
+            "mtrr" : "memory type range registers",
+            "pge" : "page global enable",
+            "mca" : "machine check architecture",
+            "cmov" : "conditional move instruction",
+            "pat" : "page attribute table",
+            "pse36" : "36-bit page size extensions",
+            "clflush" : true,
+            "dts" : "debug trace and EMON store MSRs",
+            "acpi" : "thermal control (ACPI)",
+            "mmx" : "multimedia extensions (MMX)",
+            "fxsr" : "fast floating point save/restore",
+            "sse" : "streaming SIMD extensions (SSE)",
+            "sse2" : "streaming SIMD extensions (SSE2)",
+            "ss" : "self-snoop",
+            "ht" : "HyperThreading",
+            "tm" : "thermal interrupt and status",
+            "pbe" : "pending break event",
+            "syscall" : "fast system calls",
+            "nx" : "no-execute bit (NX)",
+            "pdpe1gb" : true,
+            "rdtscp" : true,
+            "constant_tsc" : true,
+            "arch_perfmon" : true,
+            "pebs" : true,
+            "bts" : true,
+            "rep_good" : true,
+            "nopl" : true,
+            "xtopology" : true,
+            "nonstop_tsc" : true,
+            "aperfmperf" : true,
+            "pni" : true,
+            "pclmulqdq" : true,
+            "dtes64" : true,
+            "monitor" : true,
+            "ds_cpl" : true,
+            "vmx" : true,
+            "smx" : true,
+            "est" : true,
+            "tm2" : true,
+            "ssse3" : true,
+            "sdbg" : true,
+            "fma" : true,
+            "cx16" : true,
+            "xtpr" : true,
+            "pdcm" : true,
+            "pcid" : true,
+            "dca" : true,
+            "sse4_1" : true,
+            "sse4_2" : true,
+            "x2apic" : true,
+            "movbe" : true,
+            "popcnt" : true,
+            "tsc_deadline_timer" : true,
+            "aes" : true,
+            "xsave" : true,
+            "avx" : true,
+            "f16c" : true,
+            "rdrand" : true,
+            "lahf_lm" : true,
+            "abm" : true,
+            "epb" : true,
+            "invpcid_single" : true,
+            "ssbd" : true,
+            "ibrs" : true,
+            "ibpb" : true,
+            "stibp" : true,
+            "kaiser" : true,
+            "tpr_shadow" : true,
+            "vnmi" : true,
+            "flexpriority" : true,
+            "ept" : true,
+            "vpid" : true,
+            "fsgsbase" : true,
+            "tsc_adjust" : true,
+            "bmi1" : true,
+            "avx2" : true,
+            "smep" : true,
+            "bmi2" : true,
+            "erms" : true,
+            "invpcid" : true,
+            "cqm" : true,
+            "xsaveopt" : true,
+            "cqm_llc" : true,
+            "cqm_occup_llc" : true,
+            "dtherm" : true,
+            "ida" : true,
+            "arat" : true,
+            "pln" : true,
+            "pts" : true,
+            "flush_l1d" : true,
+            "cpufreq" : "CPU Frequency scaling"
+          }
+        },
+        {
+          "id" : "cache:3",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0004",
+          "description" : "L1 cache",
+          "physid" : "4",
+          "slot" : "L1-Cache",
+          "units" : "bytes",
+          "size" : 786432,
+          "capacity" : 786432,
+          "configuration" : {
+            "level" : "1"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "write-back" : "Write-back",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cache:4",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0005",
+          "description" : "L2 cache",
+          "physid" : "5",
+          "slot" : "L2-Cache",
+          "units" : "bytes",
+          "size" : 3145728,
+          "capacity" : 3145728,
+          "configuration" : {
+            "level" : "2"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "varies" : "Varies With Memory Address",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cache:5",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:0006",
+          "description" : "L3 cache",
+          "physid" : "6",
+          "slot" : "L3-Cache",
+          "units" : "bytes",
+          "size" : 31457280,
+          "capacity" : 31457280,
+          "configuration" : {
+            "level" : "3"
+          },
+          "capabilities" : {
+            "synchronous" : "Synchronous",
+            "internal" : "Internal",
+            "varies" : "Varies With Memory Address",
+            "unified" : "Unified cache"
+          }
+        },
+        {
+          "id" : "cpu:1",
+          "class" : "processor",
+          "claimed" : true,
+          "handle" : "DMI:0007",
+          "description" : "CPU",
+          "product" : "Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz",
+          "vendor" : "Intel Corp.",
+          "physid" : "7",
+          "businfo" : "cpu@1",
+          "version" : "Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz",
+          "slot" : "Proc 2",
+          "units" : "Hz",
+          "size" : 1213000000,
+          "capacity" : 4000000000,
+          "width" : 64,
+          "clock" : 100000000,
+          "configuration" : {
+            "cores" : "12",
+            "enabledcores" : "12",
+            "threads" : "24"
+          },
+          "capabilities" : {
+            "x86-64" : "64bits extensions (x86-64)",
+            "fpu" : "mathematical co-processor",
+            "fpu_exception" : "FPU exceptions reporting",
+            "wp" : true,
+            "vme" : "virtual mode extensions",
+            "de" : "debugging extensions",
+            "pse" : "page size extensions",
+            "tsc" : "time stamp counter",
+            "msr" : "model-specific registers",
+            "pae" : "4GB+ memory addressing (Physical Address Extension)",
+            "mce" : "machine check exceptions",
+            "cx8" : "compare and exchange 8-byte",
+            "apic" : "on-chip advanced programmable interrupt controller (APIC)",
+            "sep" : "fast system calls",
+            "mtrr" : "memory type range registers",
+            "pge" : "page global enable",
+            "mca" : "machine check architecture",
+            "cmov" : "conditional move instruction",
+            "pat" : "page attribute table",
+            "pse36" : "36-bit page size extensions",
+            "clflush" : true,
+            "dts" : "debug trace and EMON store MSRs",
+            "acpi" : "thermal control (ACPI)",
+            "mmx" : "multimedia extensions (MMX)",
+            "fxsr" : "fast floating point save/restore",
+            "sse" : "streaming SIMD extensions (SSE)",
+            "sse2" : "streaming SIMD extensions (SSE2)",
+            "ss" : "self-snoop",
+            "ht" : "HyperThreading",
+            "tm" : "thermal interrupt and status",
+            "pbe" : "pending break event",
+            "syscall" : "fast system calls",
+            "nx" : "no-execute bit (NX)",
+            "pdpe1gb" : true,
+            "rdtscp" : true,
+            "constant_tsc" : true,
+            "arch_perfmon" : true,
+            "pebs" : true,
+            "bts" : true,
+            "rep_good" : true,
+            "nopl" : true,
+            "xtopology" : true,
+            "nonstop_tsc" : true,
+            "aperfmperf" : true,
+            "pni" : true,
+            "pclmulqdq" : true,
+            "dtes64" : true,
+            "monitor" : true,
+            "ds_cpl" : true,
+            "vmx" : true,
+            "smx" : true,
+            "est" : true,
+            "tm2" : true,
+            "ssse3" : true,
+            "sdbg" : true,
+            "fma" : true,
+            "cx16" : true,
+            "xtpr" : true,
+            "pdcm" : true,
+            "pcid" : true,
+            "dca" : true,
+            "sse4_1" : true,
+            "sse4_2" : true,
+            "x2apic" : true,
+            "movbe" : true,
+            "popcnt" : true,
+            "tsc_deadline_timer" : true,
+            "aes" : true,
+            "xsave" : true,
+            "avx" : true,
+            "f16c" : true,
+            "rdrand" : true,
+            "lahf_lm" : true,
+            "abm" : true,
+            "epb" : true,
+            "invpcid_single" : true,
+            "ssbd" : true,
+            "ibrs" : true,
+            "ibpb" : true,
+            "stibp" : true,
+            "kaiser" : true,
+            "tpr_shadow" : true,
+            "vnmi" : true,
+            "flexpriority" : true,
+            "ept" : true,
+            "vpid" : true,
+            "fsgsbase" : true,
+            "tsc_adjust" : true,
+            "bmi1" : true,
+            "avx2" : true,
+            "smep" : true,
+            "bmi2" : true,
+            "erms" : true,
+            "invpcid" : true,
+            "cqm" : true,
+            "xsaveopt" : true,
+            "cqm_llc" : true,
+            "cqm_occup_llc" : true,
+            "dtherm" : true,
+            "ida" : true,
+            "arat" : true,
+            "pln" : true,
+            "pts" : true,
+            "flush_l1d" : true,
+            "cpufreq" : "CPU Frequency scaling"
+          }
+        },
+        {
+          "id" : "firmware",
+          "class" : "memory",
+          "claimed" : true,
+          "description" : "BIOS",
+          "vendor" : "HP",
+          "physid" : "9",
+          "version" : "P89",
+          "date" : "07/20/2015",
+          "units" : "bytes",
+          "size" : 65536,
+          "capacity" : 16711680,
+          "capabilities" : {
+            "pci" : "PCI bus",
+            "pnp" : "Plug-and-Play",
+            "upgrade" : "BIOS EEPROM can be upgraded",
+            "shadowing" : "BIOS shadowing",
+            "escd" : "ESCD",
+            "cdboot" : "Booting from CD-ROM/DVD",
+            "bootselect" : "Selectable boot path",
+            "edd" : "Enhanced Disk Drive extensions",
+            "int13floppy360" : "5.25\" 360KB floppy",
+            "int13floppy1200" : "5.25\" 1.2MB floppy",
+            "int13floppy720" : "3.5\" 720KB floppy",
+            "int5printscreen" : "Print Screen key",
+            "int9keyboard" : "i8042 keyboard controller",
+            "int14serial" : "INT14 serial line control",
+            "int17printer" : "INT17 printer control",
+            "int10video" : "INT10 CGA/Mono video",
+            "acpi" : "ACPI",
+            "usb" : "USB legacy emulation",
+            "biosbootspecification" : "BIOS boot specification",
+            "netboot" : "Function-key initiated network service boot",
+            "uefi" : "UEFI specification is supported"
+          }
+        },
+        {
+          "id" : "memory:0",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:000A",
+          "description" : "System Memory",
+          "physid" : "a",
+          "slot" : "System board or motherboard",
+          "children" : [
+            {
+              "id" : "bank:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:000C",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "0",
+              "slot" : "PROC 1 DIMM 1",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            },
+            {
+              "id" : "bank:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:000D",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "1",
+              "slot" : "PROC 1 DIMM 2",
+              "width" : 64
+            },
+            {
+              "id" : "bank:2",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:000E",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "2",
+              "slot" : "PROC 1 DIMM 3",
+              "width" : 64
+            },
+            {
+              "id" : "bank:3",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:000F",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "3",
+              "slot" : "PROC 1 DIMM 4",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            },
+            {
+              "id" : "bank:4",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0010",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "4",
+              "slot" : "PROC 1 DIMM 5",
+              "width" : 64
+            },
+            {
+              "id" : "bank:5",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0011",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "5",
+              "slot" : "PROC 1 DIMM 6",
+              "width" : 64
+            },
+            {
+              "id" : "bank:6",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0012",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "6",
+              "slot" : "PROC 1 DIMM 7",
+              "width" : 64
+            },
+            {
+              "id" : "bank:7",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0013",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "7",
+              "slot" : "PROC 1 DIMM 8",
+              "width" : 64
+            },
+            {
+              "id" : "bank:8",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0014",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "8",
+              "slot" : "PROC 1 DIMM 9",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            },
+            {
+              "id" : "bank:9",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0015",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "9",
+              "slot" : "PROC 1 DIMM 10",
+              "width" : 64
+            },
+            {
+              "id" : "bank:10",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0016",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "a",
+              "slot" : "PROC 1 DIMM 11",
+              "width" : 64
+            },
+            {
+              "id" : "bank:11",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0017",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "b",
+              "slot" : "PROC 1 DIMM 12",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            }
+          ]
+        },
+        {
+          "id" : "memory:1",
+          "class" : "memory",
+          "claimed" : true,
+          "handle" : "DMI:000B",
+          "description" : "System Memory",
+          "physid" : "c",
+          "slot" : "System board or motherboard",
+          "children" : [
+            {
+              "id" : "bank:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0018",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "0",
+              "slot" : "PROC 2 DIMM 1",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            },
+            {
+              "id" : "bank:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0019",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "1",
+              "slot" : "PROC 2 DIMM 2",
+              "width" : 64
+            },
+            {
+              "id" : "bank:2",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001A",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "2",
+              "slot" : "PROC 2 DIMM 3",
+              "width" : 64
+            },
+            {
+              "id" : "bank:3",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001B",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "3",
+              "slot" : "PROC 2 DIMM 4",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            },
+            {
+              "id" : "bank:4",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001C",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "4",
+              "slot" : "PROC 2 DIMM 5",
+              "width" : 64
+            },
+            {
+              "id" : "bank:5",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001D",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "5",
+              "slot" : "PROC 2 DIMM 6",
+              "width" : 64
+            },
+            {
+              "id" : "bank:6",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001E",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "6",
+              "slot" : "PROC 2 DIMM 7",
+              "width" : 64
+            },
+            {
+              "id" : "bank:7",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001F",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "7",
+              "slot" : "PROC 2 DIMM 8",
+              "width" : 64
+            },
+            {
+              "id" : "bank:8",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0020",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "8",
+              "slot" : "PROC 2 DIMM 9",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            },
+            {
+              "id" : "bank:9",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0021",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "9",
+              "slot" : "PROC 2 DIMM 10",
+              "width" : 64
+            },
+            {
+              "id" : "bank:10",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0022",
+              "description" : "DIMM Synchronous [empty]",
+              "product" : "NOT AVAILABLE",
+              "vendor" : "UNKNOWN",
+              "physid" : "a",
+              "slot" : "PROC 2 DIMM 11",
+              "width" : 64
+            },
+            {
+              "id" : "bank:11",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:0023",
+              "description" : "DIMM Synchronous 2133 MHz (0.5 ns)",
+              "product" : "752372-081",
+              "vendor" : "HP",
+              "physid" : "b",
+              "slot" : "PROC 2 DIMM 12",
+              "units" : "bytes",
+              "size" : 34358689792,
+              "width" : 64,
+              "clock" : 2133000000
+            }
+          ]
+        },
+        {
+          "id" : "memory:2",
+          "class" : "memory",
+          "physid" : "d"
+        },
+        {
+          "id" : "memory:3",
+          "class" : "memory",
+          "physid" : "e"
+        },
+        {
+          "id" : "pci:0",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:00",
+          "description" : "Host bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMI2",
+          "vendor" : "Intel Corporation",
+          "physid" : "100",
+          "businfo" : "pci@0000:00:00.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "children" : [
+            {
+              "id" : "pci:0",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:03",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1",
+              "businfo" : "pci@0000:00:01.0",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:1",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:0e",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1.1",
+              "businfo" : "pci@0000:00:01.1",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:2",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:05",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "2",
+              "businfo" : "pci@0000:00:02.0",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "network:0",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:05:00.0",
+                  "description" : "Ethernet interface",
+                  "product" : "Ethernet Controller 10-Gigabit X540-AT2",
+                  "vendor" : "Intel Corporation",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:05:00.0",
+                  "logicalname" : "ens1f0",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "size" : 10000000000,
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "ixgbe",
+                    "driverversion" : "4.2.1-k",
+                    "duplex" : "full",
+                    "firmware" : "0x800005ab",
+                    "latency" : "0",
+                    "link" : "yes",
+                    "multicast" : "yes",
+                    "port" : "twisted pair",
+                    "speed" : "10Gbit/s"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:1",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:05:00.1",
+                  "description" : "Ethernet interface",
+                  "product" : "Ethernet Controller 10-Gigabit X540-AT2",
+                  "vendor" : "Intel Corporation",
+                  "physid" : "0.1",
+                  "businfo" : "pci@0000:05:00.1",
+                  "logicalname" : "ens1f1",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "size" : 10000000000,
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "ixgbe",
+                    "driverversion" : "4.2.1-k",
+                    "duplex" : "full",
+                    "firmware" : "0x800005ab",
+                    "latency" : "0",
+                    "link" : "yes",
+                    "multicast" : "yes",
+                    "port" : "twisted pair",
+                    "speed" : "10Gbit/s"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:3",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:0f",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "2.1",
+              "businfo" : "pci@0000:00:02.1",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:4",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:04",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "2.2",
+              "businfo" : "pci@0000:00:02.2",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "network:0",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:04:00.0",
+                  "description" : "Ethernet interface",
+                  "product" : "Ethernet Controller 10-Gigabit X540-AT2",
+                  "vendor" : "Intel Corporation",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:04:00.0",
+                  "logicalname" : "eno49",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "size" : 10000000000,
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "ixgbe",
+                    "driverversion" : "4.2.1-k",
+                    "duplex" : "full",
+                    "firmware" : "0x800005ac",
+                    "latency" : "0",
+                    "link" : "yes",
+                    "multicast" : "yes",
+                    "port" : "twisted pair",
+                    "slave" : "yes",
+                    "speed" : "10Gbit/s"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:1",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:04:00.1",
+                  "description" : "Ethernet interface",
+                  "product" : "Ethernet Controller 10-Gigabit X540-AT2",
+                  "vendor" : "Intel Corporation",
+                  "physid" : "0.1",
+                  "businfo" : "pci@0000:04:00.1",
+                  "logicalname" : "eno50",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "size" : 10000000000,
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "ixgbe",
+                    "driverversion" : "4.2.1-k",
+                    "duplex" : "full",
+                    "firmware" : "0x800005ac",
+                    "latency" : "0",
+                    "link" : "yes",
+                    "multicast" : "yes",
+                    "port" : "twisted pair",
+                    "slave" : "yes",
+                    "speed" : "10Gbit/s"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "vpd" : "Vital Product Data",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:5",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:10",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "2.3",
+              "businfo" : "pci@0000:00:02.3",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:6",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:08",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "3",
+              "businfo" : "pci@0000:00:03.0",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "storage",
+                  "class" : "storage",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:08:00.0",
+                  "description" : "RAID bus controller",
+                  "product" : "Smart Array Gen9 Controllers",
+                  "vendor" : "Hewlett-Packard Company",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:08:00.0",
+                  "logicalname" : "scsi1",
+                  "version" : "01",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "hpsa",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "storage" : true,
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM"
+                  },
+                  "children" : [
+                    {
+                      "id" : "generic",
+                      "class" : "generic",
+                      "handle" : "SCSI:01:00:00:00",
+                      "description" : "SCSI",
+                      "product" : "P840",
+                      "vendor" : "HP",
+                      "physid" : "0.0.0",
+                      "businfo" : "scsi@1:0.0.0",
+                      "version" : "3.00",
+                      "serial" : "PDNNF0ARH9C1PB",
+                      "configuration" : {
+                        "ansiversion" : "5"
+                      }
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "pci:7",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:11",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "3.1",
+              "businfo" : "pci@0000:00:03.1",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:8",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:0b",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "3.2",
+              "businfo" : "pci@0000:00:03.2",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "storage",
+                  "class" : "storage",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:0b:00.0",
+                  "description" : "Non-Volatile memory controller",
+                  "product" : "PCIe Data Center SSD",
+                  "vendor" : "Intel Corporation",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:0b:00.0",
+                  "version" : "01",
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "nvme",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "storage" : true,
+                    "pm" : "Power Management",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "nvm_express" : true,
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:9",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:12",
+              "description" : "PCI bridge",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "3.3",
+              "businfo" : "pci@0000:00:03.3",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "msi" : "Message Signalled Interrupts",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:0",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.0",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 0",
+              "vendor" : "Intel Corporation",
+              "physid" : "4",
+              "businfo" : "pci@0000:00:04.0",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:1",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.1",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 1",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.1",
+              "businfo" : "pci@0000:00:04.1",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:2",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.2",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 2",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.2",
+              "businfo" : "pci@0000:00:04.2",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:3",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.3",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 3",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.3",
+              "businfo" : "pci@0000:00:04.3",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:4",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.4",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 4",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.4",
+              "businfo" : "pci@0000:00:04.4",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:5",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.5",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 5",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.5",
+              "businfo" : "pci@0000:00:04.5",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:6",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.6",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 6",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.6",
+              "businfo" : "pci@0000:00:04.6",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:7",
+              "class" : "generic",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:04.7",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 7",
+              "vendor" : "Intel Corporation",
+              "physid" : "4.7",
+              "businfo" : "pci@0000:00:04.7",
+              "version" : "02",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ioatdma",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "msix" : "MSI-X",
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:8",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.0",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Address Map, VTd_Misc, System Management",
+              "vendor" : "Intel Corporation",
+              "physid" : "5",
+              "businfo" : "pci@0000:00:05.0",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:9",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.1",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Hot Plug",
+              "vendor" : "Intel Corporation",
+              "physid" : "5.1",
+              "businfo" : "pci@0000:00:05.1",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:10",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.2",
+              "description" : "System peripheral",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 RAS, Control Status and Global Errors",
+              "vendor" : "Intel Corporation",
+              "physid" : "5.2",
+              "businfo" : "pci@0000:00:05.2",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:11",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:05.4",
+              "description" : "PIC",
+              "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 I/O APIC",
+              "vendor" : "Intel Corporation",
+              "physid" : "5.4",
+              "businfo" : "pci@0000:00:05.4",
+              "version" : "02",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "io_x_-apic" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "generic:12",
+              "class" : "generic",
+              "handle" : "PCI:0000:00:11.0",
+              "description" : "Unassigned class",
+              "product" : "C610/X99 series chipset SPSR",
+              "vendor" : "Intel Corporation",
+              "physid" : "11",
+              "businfo" : "pci@0000:00:11.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pciexpress" : "PCI Express",
+                "pm" : "Power Management",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "usb:0",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:14.0",
+              "description" : "USB controller",
+              "product" : "C610/X99 series chipset USB xHCI Host Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "14",
+              "businfo" : "pci@0000:00:14.0",
+              "version" : "05",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "xhci_hcd",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "xhci" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "usbhost:0",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:5:1",
+                  "product" : "xHCI Host Controller",
+                  "vendor" : "Linux 4.4.0-139-generic xhci-hcd",
+                  "physid" : "0",
+                  "businfo" : "usb@5",
+                  "logicalname" : "usb5",
+                  "version" : "4.04",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "6",
+                    "speed" : "5000Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-3.00" : true
+                  }
+                },
+                {
+                  "id" : "usbhost:1",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:4:1",
+                  "product" : "xHCI Host Controller",
+                  "vendor" : "Linux 4.4.0-139-generic xhci-hcd",
+                  "physid" : "1",
+                  "businfo" : "usb@4",
+                  "logicalname" : "usb4",
+                  "version" : "4.04",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "15",
+                    "speed" : "480Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-2.00" : "USB 2.0"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usb",
+                      "class" : "bus",
+                      "claimed" : true,
+                      "handle" : "USB:4:2",
+                      "description" : "USB hub",
+                      "product" : "Hub",
+                      "vendor" : "Standard Microsystems Corp.",
+                      "physid" : "3",
+                      "businfo" : "usb@4:3",
+                      "version" : "8.01",
+                      "configuration" : {
+                        "driver" : "hub",
+                        "maxpower" : "2mA",
+                        "slots" : "2",
+                        "speed" : "480Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      },
+                      "children" : [
+                        {
+                          "id" : "usb",
+                          "class" : "storage",
+                          "claimed" : true,
+                          "handle" : "SCSI:00",
+                          "description" : "Mass storage device",
+                          "product" : "Ultra Fast Media Reader",
+                          "vendor" : "Generic",
+                          "physid" : "1",
+                          "businfo" : "usb@4:3.1",
+                          "logicalname" : "scsi0",
+                          "version" : "2.10",
+                          "serial" : "000002660A01",
+                          "configuration" : {
+                            "driver" : "usb-storage",
+                            "maxpower" : "96mA",
+                            "speed" : "480Mbit/s"
+                          },
+                          "capabilities" : {
+                            "usb-2.00" : "USB 2.0",
+                            "scsi" : "SCSI",
+                            "emulated" : "Emulated device",
+                            "scsi-host" : "SCSI host adapter"
+                          },
+                          "children" : [
+                            {
+                              "id" : "disk",
+                              "class" : "disk",
+                              "claimed" : true,
+                              "handle" : "GUID:6988c5b9-96eb-4a06-a889-f79814cd07d1",
+                              "description" : "SCSI Disk",
+                              "physid" : "0.0.0",
+                              "businfo" : "scsi@0:0.0.0",
+                              "logicalname" : "/dev/sda",
+                              "dev" : "8:0",
+                              "units" : "bytes",
+                              "size" : 1073741824,
+                              "configuration" : {
+                                "guid" : "6988c5b9-96eb-4a06-a889-f79814cd07d1",
+                                "logicalsectorsize" : "512",
+                                "sectorsize" : "512"
+                              },
+                              "capabilities" : {
+                                "gpt-1.00" : "GUID Partition Table version 1.00",
+                                "partitioned" : "Partitioned disk",
+                                "partitioned:gpt" : "GUID partition table"
+                              },
+                              "children" : [
+                                {
+                                  "id" : "volume:0",
+                                  "class" : "volume",
+                                  "claimed" : true,
+                                  "handle" : "GUID:c8bed39e-0079-4ff9-8ae9-7a6e872c8eec",
+                                  "description" : "Windows FAT volume",
+                                  "vendor" : "mkfs.fat",
+                                  "physid" : "1",
+                                  "businfo" : "scsi@0:0.0.0,1",
+                                  "logicalname" : ["/dev/sda1", "/boot/efi"],
+                                  "dev" : "8:1",
+                                  "version" : "FAT32",
+                                  "serial" : "eff0-ec5e",
+                                  "size" : 535805952,
+                                  "capacity" : 536870400,
+                                  "configuration" : {
+                                    "FATs" : "2",
+                                    "filesystem" : "fat",
+                                    "label" : "efi",
+                                    "mount.fstype" : "vfat",
+                                    "mount.options" : "rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro",
+                                    "state" : "mounted"
+                                  },
+                                  "capabilities" : {
+                                    "boot" : "Contains boot code",
+                                    "fat" : "Windows FAT",
+                                    "initialized" : "initialized volume"
+                                  }
+                                },
+                                {
+                                  "id" : "volume:1",
+                                  "class" : "volume",
+                                  "claimed" : true,
+                                  "handle" : "GUID:e8ef80dc-ccb8-46bc-9ad8-51723779466f",
+                                  "description" : "EXT4 volume",
+                                  "vendor" : "Linux",
+                                  "physid" : "2",
+                                  "businfo" : "scsi@0:0.0.0,2",
+                                  "logicalname" : ["/dev/sda2", "/boot"],
+                                  "dev" : "8:2",
+                                  "version" : "1.0",
+                                  "serial" : "7a2cfee2-3b87-453c-8837-b762c1abbaaf",
+                                  "size" : 528482304,
+                                  "configuration" : {
+                                    "created" : "2018-11-26 22:09:05",
+                                    "filesystem" : "ext4",
+                                    "label" : "root",
+                                    "lastmountpoint" : "/boot",
+                                    "modified" : "2018-11-26 22:20:05",
+                                    "mount.fstype" : "ext4",
+                                    "mount.options" : "rw,relatime,data=ordered",
+                                    "mounted" : "2018-11-26 22:20:05",
+                                    "state" : "mounted"
+                                  },
+                                  "capabilities" : {
+                                    "journaled" : true,
+                                    "extended_attributes" : "Extended Attributes",
+                                    "large_files" : "4GB+ files",
+                                    "huge_files" : "16TB+ files",
+                                    "dir_nlink" : "directories with 65000+ subdirs",
+                                    "recover" : "needs recovery",
+                                    "extents" : "extent-based allocation",
+                                    "ext4" : true,
+                                    "ext2" : "EXT2/EXT3",
+                                    "initialized" : "initialized volume"
+                                  }
+                                }
+                              ]
+                            }
+                          ]
+                        }
+                      ]
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "usb:1",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1a.0",
+              "description" : "USB controller",
+              "product" : "C610/X99 series chipset USB Enhanced Host Controller #2",
+              "vendor" : "Intel Corporation",
+              "physid" : "1a",
+              "businfo" : "pci@0000:00:1a.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ehci-pci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "debug" : "Debug port",
+                "ehci" : "Enhanced Host Controller Interface (USB2)",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "usbhost",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:1:1",
+                  "product" : "EHCI Host Controller",
+                  "vendor" : "Linux 4.4.0-139-generic ehci_hcd",
+                  "physid" : "1",
+                  "businfo" : "usb@1",
+                  "logicalname" : "usb1",
+                  "version" : "4.04",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "2",
+                    "speed" : "480Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-2.00" : "USB 2.0"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usb",
+                      "class" : "bus",
+                      "claimed" : true,
+                      "handle" : "USB:1:2",
+                      "description" : "USB hub",
+                      "vendor" : "Intel Corp.",
+                      "physid" : "1",
+                      "businfo" : "usb@1:1",
+                      "version" : "0.05",
+                      "configuration" : {
+                        "driver" : "hub",
+                        "slots" : "6",
+                        "speed" : "480Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      }
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "pci:10",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:13",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c",
+              "businfo" : "pci@0000:00:1c.0",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:11",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:01",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #3",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.2",
+              "businfo" : "pci@0000:00:1c.2",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "generic:0",
+                  "class" : "generic",
+                  "handle" : "PCI:0000:01:00.0",
+                  "description" : "System peripheral",
+                  "product" : "Integrated Lights-Out Standard Slave Instrumentation & System Support",
+                  "vendor" : "Hewlett-Packard Company",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:01:00.0",
+                  "version" : "06",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  }
+                },
+                {
+                  "id" : "display",
+                  "class" : "display",
+                  "handle" : "PCI:0000:01:00.1",
+                  "description" : "VGA compatible controller",
+                  "product" : "MGA G200EH",
+                  "vendor" : "Matrox Electronics Systems Ltd.",
+                  "physid" : "0.1",
+                  "businfo" : "pci@0000:01:00.1",
+                  "version" : "01",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "vga_controller" : true,
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  }
+                },
+                {
+                  "id" : "generic:1",
+                  "class" : "generic",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:00.2",
+                  "description" : "System peripheral",
+                  "product" : "Integrated Lights-Out Standard Management Processor Support and Messaging",
+                  "vendor" : "Hewlett-Packard Company",
+                  "physid" : "0.2",
+                  "businfo" : "pci@0000:01:00.2",
+                  "version" : "06",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "hpilo",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM"
+                  }
+                },
+                {
+                  "id" : "usb",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:01:00.4",
+                  "description" : "USB controller",
+                  "product" : "Integrated Lights-Out Standard Virtual USB Controller",
+                  "vendor" : "Hewlett-Packard Company",
+                  "physid" : "0.4",
+                  "businfo" : "pci@0000:01:00.4",
+                  "version" : "03",
+                  "width" : 32,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "driver" : "uhci_hcd",
+                    "latency" : "0"
+                  },
+                  "capabilities" : {
+                    "msi" : "Message Signalled Interrupts",
+                    "pciexpress" : "PCI Express",
+                    "pm" : "Power Management",
+                    "uhci" : "Universal Host Controller Interface (USB1)",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usbhost",
+                      "class" : "bus",
+                      "claimed" : true,
+                      "handle" : "USB:3:1",
+                      "product" : "UHCI Host Controller",
+                      "vendor" : "Linux 4.4.0-139-generic uhci_hcd",
+                      "physid" : "1",
+                      "businfo" : "usb@3",
+                      "logicalname" : "usb3",
+                      "version" : "4.04",
+                      "configuration" : {
+                        "driver" : "hub",
+                        "slots" : "2",
+                        "speed" : "12Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-1.10" : "USB 1.1"
+                      }
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "pci:12",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:02",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #5",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.4",
+              "businfo" : "pci@0000:00:1c.4",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "network:0",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:02:00.0",
+                  "description" : "Ethernet interface",
+                  "product" : "NetXtreme BCM5719 Gigabit Ethernet PCIe",
+                  "vendor" : "Broadcom Corporation",
+                  "physid" : "0",
+                  "businfo" : "pci@0000:02:00.0",
+                  "logicalname" : "eno1",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "capacity" : 1000000000,
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "tg3",
+                    "driverversion" : "3.137",
+                    "firmware" : "5719-v1.41 NCSI v1.3.7.0",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes",
+                    "port" : "twisted pair"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "vpd" : "Vital Product Data",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "10bt" : "10Mbit/s",
+                    "10bt-fd" : "10Mbit/s (full duplex)",
+                    "100bt" : "100Mbit/s",
+                    "100bt-fd" : "100Mbit/s (full duplex)",
+                    "1000bt" : "1Gbit/s",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:1",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:02:00.1",
+                  "description" : "Ethernet interface",
+                  "product" : "NetXtreme BCM5719 Gigabit Ethernet PCIe",
+                  "vendor" : "Broadcom Corporation",
+                  "physid" : "0.1",
+                  "businfo" : "pci@0000:02:00.1",
+                  "logicalname" : "eno2",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "capacity" : 1000000000,
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "tg3",
+                    "driverversion" : "3.137",
+                    "firmware" : "5719-v1.41 NCSI v1.3.7.0",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes",
+                    "port" : "twisted pair"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "vpd" : "Vital Product Data",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "10bt" : "10Mbit/s",
+                    "10bt-fd" : "10Mbit/s (full duplex)",
+                    "100bt" : "100Mbit/s",
+                    "100bt-fd" : "100Mbit/s (full duplex)",
+                    "1000bt" : "1Gbit/s",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:2",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:02:00.2",
+                  "description" : "Ethernet interface",
+                  "product" : "NetXtreme BCM5719 Gigabit Ethernet PCIe",
+                  "vendor" : "Broadcom Corporation",
+                  "physid" : "0.2",
+                  "businfo" : "pci@0000:02:00.2",
+                  "logicalname" : "eno3",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "capacity" : 1000000000,
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "tg3",
+                    "driverversion" : "3.137",
+                    "firmware" : "5719-v1.41 NCSI v1.3.7.0",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes",
+                    "port" : "twisted pair"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "vpd" : "Vital Product Data",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "10bt" : "10Mbit/s",
+                    "10bt-fd" : "10Mbit/s (full duplex)",
+                    "100bt" : "100Mbit/s",
+                    "100bt-fd" : "100Mbit/s (full duplex)",
+                    "1000bt" : "1Gbit/s",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                },
+                {
+                  "id" : "network:3",
+                  "class" : "network",
+                  "claimed" : true,
+                  "handle" : "PCI:0000:02:00.3",
+                  "description" : "Ethernet interface",
+                  "product" : "NetXtreme BCM5719 Gigabit Ethernet PCIe",
+                  "vendor" : "Broadcom Corporation",
+                  "physid" : "0.3",
+                  "businfo" : "pci@0000:02:00.3",
+                  "logicalname" : "eno4",
+                  "version" : "01",
+                  "serial" : "de:ad:be:ef:00:ef",
+                  "units" : "bit/s",
+                  "capacity" : 1000000000,
+                  "width" : 64,
+                  "clock" : 33000000,
+                  "configuration" : {
+                    "autonegotiation" : "on",
+                    "broadcast" : "yes",
+                    "driver" : "tg3",
+                    "driverversion" : "3.137",
+                    "firmware" : "5719-v1.41 NCSI v1.3.7.0",
+                    "latency" : "0",
+                    "link" : "no",
+                    "multicast" : "yes",
+                    "port" : "twisted pair"
+                  },
+                  "capabilities" : {
+                    "pm" : "Power Management",
+                    "vpd" : "Vital Product Data",
+                    "msi" : "Message Signalled Interrupts",
+                    "msix" : "MSI-X",
+                    "pciexpress" : "PCI Express",
+                    "bus_master" : "bus mastering",
+                    "cap_list" : "PCI capabilities listing",
+                    "rom" : "extension ROM",
+                    "ethernet" : true,
+                    "physical" : "Physical interface",
+                    "tp" : "twisted pair",
+                    "10bt" : "10Mbit/s",
+                    "10bt-fd" : "10Mbit/s (full duplex)",
+                    "100bt" : "100Mbit/s",
+                    "100bt-fd" : "100Mbit/s (full duplex)",
+                    "1000bt" : "1Gbit/s",
+                    "1000bt-fd" : "1Gbit/s (full duplex)",
+                    "autonegotiation" : "Auto-negotiation"
+                  }
+                }
+              ]
+            },
+            {
+              "id" : "pci:13",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:14",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #7",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.6",
+              "businfo" : "pci@0000:00:1c.6",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "pci:14",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCIBUS:0000:15",
+              "description" : "PCI bridge",
+              "product" : "C610/X99 series chipset PCI Express Root Port #8",
+              "vendor" : "Intel Corporation",
+              "physid" : "1c.7",
+              "businfo" : "pci@0000:00:1c.7",
+              "version" : "d5",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "pcieport"
+              },
+              "capabilities" : {
+                "pci" : true,
+                "pciexpress" : "PCI Express",
+                "msi" : "Message Signalled Interrupts",
+                "pm" : "Power Management",
+                "normal_decode" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "usb:2",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1d.0",
+              "description" : "USB controller",
+              "product" : "C610/X99 series chipset USB Enhanced Host Controller #1",
+              "vendor" : "Intel Corporation",
+              "physid" : "1d",
+              "businfo" : "pci@0000:00:1d.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "ehci-pci",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "pm" : "Power Management",
+                "debug" : "Debug port",
+                "ehci" : "Enhanced Host Controller Interface (USB2)",
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              },
+              "children" : [
+                {
+                  "id" : "usbhost",
+                  "class" : "bus",
+                  "claimed" : true,
+                  "handle" : "USB:2:1",
+                  "product" : "EHCI Host Controller",
+                  "vendor" : "Linux 4.4.0-139-generic ehci_hcd",
+                  "physid" : "1",
+                  "businfo" : "usb@2",
+                  "logicalname" : "usb2",
+                  "version" : "4.04",
+                  "configuration" : {
+                    "driver" : "hub",
+                    "slots" : "2",
+                    "speed" : "480Mbit/s"
+                  },
+                  "capabilities" : {
+                    "usb-2.00" : "USB 2.0"
+                  },
+                  "children" : [
+                    {
+                      "id" : "usb",
+                      "class" : "bus",
+                      "claimed" : true,
+                      "handle" : "USB:2:2",
+                      "description" : "USB hub",
+                      "vendor" : "Intel Corp.",
+                      "physid" : "1",
+                      "businfo" : "usb@2:1",
+                      "version" : "0.05",
+                      "configuration" : {
+                        "driver" : "hub",
+                        "slots" : "8",
+                        "speed" : "480Mbit/s"
+                      },
+                      "capabilities" : {
+                        "usb-2.00" : "USB 2.0"
+                      }
+                    }
+                  ]
+                }
+              ]
+            },
+            {
+              "id" : "isa",
+              "class" : "bridge",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.0",
+              "description" : "ISA bridge",
+              "product" : "C610/X99 series chipset LPC Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f",
+              "businfo" : "pci@0000:00:1f.0",
+              "version" : "05",
+              "width" : 32,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "lpc_ich",
+                "latency" : "0"
+              },
+              "capabilities" : {
+                "isa" : true,
+                "bus_master" : "bus mastering",
+                "cap_list" : "PCI capabilities listing"
+              }
+            },
+            {
+              "id" : "serial",
+              "class" : "bus",
+              "claimed" : true,
+              "handle" : "PCI:0000:00:1f.3",
+              "description" : "SMBus",
+              "product" : "C610/X99 series chipset SMBus Controller",
+              "vendor" : "Intel Corporation",
+              "physid" : "1f.3",
+              "businfo" : "pci@0000:00:1f.3",
+              "version" : "05",
+              "width" : 64,
+              "clock" : 33000000,
+              "configuration" : {
+                "driver" : "i801_smbus",
+                "latency" : "0"
+              }
+            }
+          ]
+        },
+        {
+          "id" : "generic:0",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:08.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "f",
+          "businfo" : "pci@0000:7f:08.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:1",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:08.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "10",
+          "businfo" : "pci@0000:7f:08.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:2",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:09.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "11",
+          "businfo" : "pci@0000:7f:09.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:3",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:09.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "12",
+          "businfo" : "pci@0000:7f:09.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:4",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0b.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring",
+          "vendor" : "Intel Corporation",
+          "physid" : "13",
+          "businfo" : "pci@0000:7f:0b.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:5",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:0b.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring",
+          "vendor" : "Intel Corporation",
+          "physid" : "14",
+          "businfo" : "pci@0000:7f:0b.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:6",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:0b.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring",
+          "vendor" : "Intel Corporation",
+          "physid" : "15",
+          "businfo" : "pci@0000:7f:0b.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:7",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "16",
+          "businfo" : "pci@0000:7f:0c.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:8",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "17",
+          "businfo" : "pci@0000:7f:0c.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:9",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "18",
+          "businfo" : "pci@0000:7f:0c.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:10",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "19",
+          "businfo" : "pci@0000:7f:0c.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:11",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "1a",
+          "businfo" : "pci@0000:7f:0c.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:12",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "1b",
+          "businfo" : "pci@0000:7f:0c.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:13",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "1c",
+          "businfo" : "pci@0000:7f:0c.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:14",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0c.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "1d",
+          "businfo" : "pci@0000:7f:0c.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:15",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "1e",
+          "businfo" : "pci@0000:7f:0d.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:16",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "1f",
+          "businfo" : "pci@0000:7f:0d.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:17",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "20",
+          "businfo" : "pci@0000:7f:0d.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:18",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0d.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "21",
+          "businfo" : "pci@0000:7f:0d.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:19",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "22",
+          "businfo" : "pci@0000:7f:0f.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:20",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "23",
+          "businfo" : "pci@0000:7f:0f.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:21",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "24",
+          "businfo" : "pci@0000:7f:0f.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:22",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "25",
+          "businfo" : "pci@0000:7f:0f.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:23",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "26",
+          "businfo" : "pci@0000:7f:0f.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:24",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "27",
+          "businfo" : "pci@0000:7f:0f.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:25",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:0f.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "28",
+          "businfo" : "pci@0000:7f:0f.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:26",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "29",
+          "businfo" : "pci@0000:7f:10.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:27",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:10.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "2a",
+          "businfo" : "pci@0000:7f:10.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:28",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "2b",
+          "businfo" : "pci@0000:7f:10.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:29",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.6",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "2c",
+          "businfo" : "pci@0000:7f:10.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:30",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:10.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "2d",
+          "businfo" : "pci@0000:7f:10.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:31",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:12.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "2e",
+          "businfo" : "pci@0000:7f:12.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "sbridge_edac",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:32",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:12.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "2f",
+          "businfo" : "pci@0000:7f:12.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:33",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "30",
+          "businfo" : "pci@0000:7f:12.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:34",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "31",
+          "businfo" : "pci@0000:7f:12.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:35",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:12.5",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "32",
+          "businfo" : "pci@0000:7f:12.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:36",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:12.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "33",
+          "businfo" : "pci@0000:7f:12.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:37",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "34",
+          "businfo" : "pci@0000:7f:13.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:38",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "35",
+          "businfo" : "pci@0000:7f:13.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:39",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "36",
+          "businfo" : "pci@0000:7f:13.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:40",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "37",
+          "businfo" : "pci@0000:7f:13.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:41",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 0/1 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "38",
+          "businfo" : "pci@0000:7f:13.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:42",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:13.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "39",
+          "businfo" : "pci@0000:7f:13.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:43",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:14.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "3a",
+          "businfo" : "pci@0000:7f:14.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:44",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:14.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "3b",
+          "businfo" : "pci@0000:7f:14.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:45",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "3c",
+          "businfo" : "pci@0000:7f:14.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:46",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "3d",
+          "businfo" : "pci@0000:7f:14.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:47",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "3e",
+          "businfo" : "pci@0000:7f:14.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:48",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "3f",
+          "businfo" : "pci@0000:7f:14.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:49",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "40",
+          "businfo" : "pci@0000:7f:14.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:50",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:14.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "41",
+          "businfo" : "pci@0000:7f:14.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:51",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "42",
+          "businfo" : "pci@0000:7f:16.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:52",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "43",
+          "businfo" : "pci@0000:7f:16.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:53",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "44",
+          "businfo" : "pci@0000:7f:16.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:54",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "45",
+          "businfo" : "pci@0000:7f:16.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:55",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 2/3 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "46",
+          "businfo" : "pci@0000:7f:16.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:56",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:16.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "47",
+          "businfo" : "pci@0000:7f:16.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:57",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:17.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "48",
+          "businfo" : "pci@0000:7f:17.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:58",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:17.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "49",
+          "businfo" : "pci@0000:7f:17.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:59",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "4a",
+          "businfo" : "pci@0000:7f:17.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:60",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "4b",
+          "businfo" : "pci@0000:7f:17.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:61",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "4c",
+          "businfo" : "pci@0000:7f:17.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:62",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "4d",
+          "businfo" : "pci@0000:7f:17.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:63",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "4e",
+          "businfo" : "pci@0000:7f:17.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:64",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:17.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "4f",
+          "businfo" : "pci@0000:7f:17.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:65",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "50",
+          "businfo" : "pci@0000:7f:1e.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:66",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "51",
+          "businfo" : "pci@0000:7f:1e.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:67",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "52",
+          "businfo" : "pci@0000:7f:1e.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:68",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:7f:1e.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "53",
+          "businfo" : "pci@0000:7f:1e.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:69",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1e.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "54",
+          "businfo" : "pci@0000:7f:1e.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:70",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 VCU",
+          "vendor" : "Intel Corporation",
+          "physid" : "55",
+          "businfo" : "pci@0000:7f:1f.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:71",
+          "class" : "generic",
+          "handle" : "PCI:0000:7f:1f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 VCU",
+          "vendor" : "Intel Corporation",
+          "physid" : "56",
+          "businfo" : "pci@0000:7f:1f.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "pci:1",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:91",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "101",
+          "businfo" : "pci@0000:80:00.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:2",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:81",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "102",
+          "businfo" : "pci@0000:80:01.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:3",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:8e",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "1.1",
+          "businfo" : "pci@0000:80:01.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:4",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:84",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+          "vendor" : "Intel Corporation",
+          "physid" : "103",
+          "businfo" : "pci@0000:80:02.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:5",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:8f",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+          "vendor" : "Intel Corporation",
+          "physid" : "2.1",
+          "businfo" : "pci@0000:80:02.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:6",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:87",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+          "vendor" : "Intel Corporation",
+          "physid" : "2.2",
+          "businfo" : "pci@0000:80:02.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:7",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:90",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 2",
+          "vendor" : "Intel Corporation",
+          "physid" : "2.3",
+          "businfo" : "pci@0000:80:02.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:8",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:88",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "104",
+          "businfo" : "pci@0000:80:03.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:9",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:8b",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "3.1",
+          "businfo" : "pci@0000:80:03.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:10",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:8c",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "3.2",
+          "businfo" : "pci@0000:80:03.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "pci:11",
+          "class" : "bridge",
+          "claimed" : true,
+          "handle" : "PCIBUS:0000:8d",
+          "description" : "PCI bridge",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCI Express Root Port 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "3.3",
+          "businfo" : "pci@0000:80:03.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "pcieport"
+          },
+          "capabilities" : {
+            "pci" : true,
+            "msi" : "Message Signalled Interrupts",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "normal_decode" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:72",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "57",
+          "businfo" : "pci@0000:80:04.0",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:73",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.1",
+          "businfo" : "pci@0000:80:04.1",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:74",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 2",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.2",
+          "businfo" : "pci@0000:80:04.2",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:75",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.3",
+          "businfo" : "pci@0000:80:04.3",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:76",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 4",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.4",
+          "businfo" : "pci@0000:80:04.4",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:77",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 5",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.5",
+          "businfo" : "pci@0000:80:04.5",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:78",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 6",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.6",
+          "businfo" : "pci@0000:80:04.6",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:79",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:80:04.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DMA Channel 7",
+          "vendor" : "Intel Corporation",
+          "physid" : "4.7",
+          "businfo" : "pci@0000:80:04.7",
+          "version" : "02",
+          "width" : 64,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "ioatdma",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "msix" : "MSI-X",
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:80",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Address Map, VTd_Misc, System Management",
+          "vendor" : "Intel Corporation",
+          "physid" : "58",
+          "businfo" : "pci@0000:80:05.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:81",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Hot Plug",
+          "vendor" : "Intel Corporation",
+          "physid" : "5.1",
+          "businfo" : "pci@0000:80:05.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "msi" : "Message Signalled Interrupts",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:82",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 RAS, Control Status and Global Errors",
+          "vendor" : "Intel Corporation",
+          "physid" : "5.2",
+          "businfo" : "pci@0000:80:05.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:83",
+          "class" : "generic",
+          "handle" : "PCI:0000:80:05.4",
+          "description" : "PIC",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 I/O APIC",
+          "vendor" : "Intel Corporation",
+          "physid" : "5.4",
+          "businfo" : "pci@0000:80:05.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "pciexpress" : "PCI Express",
+            "pm" : "Power Management",
+            "io_x_-apic" : true,
+            "bus_master" : "bus mastering",
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:84",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:08.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "8",
+          "businfo" : "pci@0000:ff:08.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:85",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:08.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "59",
+          "businfo" : "pci@0000:ff:08.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:86",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:09.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "5a",
+          "businfo" : "pci@0000:ff:09.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:87",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:09.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 QPI Link 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "5b",
+          "businfo" : "pci@0000:ff:09.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:88",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0b.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring",
+          "vendor" : "Intel Corporation",
+          "physid" : "b",
+          "businfo" : "pci@0000:ff:0b.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:89",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:0b.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring",
+          "vendor" : "Intel Corporation",
+          "physid" : "5c",
+          "businfo" : "pci@0000:ff:0b.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:90",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:0b.2",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 R3 QPI Link 0 & 1 Monitoring",
+          "vendor" : "Intel Corporation",
+          "physid" : "5d",
+          "businfo" : "pci@0000:ff:0b.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:91",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "5e",
+          "businfo" : "pci@0000:ff:0c.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:92",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "5f",
+          "businfo" : "pci@0000:ff:0c.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:93",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "60",
+          "businfo" : "pci@0000:ff:0c.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:94",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "61",
+          "businfo" : "pci@0000:ff:0c.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:95",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "62",
+          "businfo" : "pci@0000:ff:0c.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:96",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "63",
+          "businfo" : "pci@0000:ff:0c.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:97",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "64",
+          "businfo" : "pci@0000:ff:0c.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:98",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0c.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "65",
+          "businfo" : "pci@0000:ff:0c.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:99",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "66",
+          "businfo" : "pci@0000:ff:0d.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:100",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "67",
+          "businfo" : "pci@0000:ff:0d.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:101",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "68",
+          "businfo" : "pci@0000:ff:0d.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:102",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0d.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Unicast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "69",
+          "businfo" : "pci@0000:ff:0d.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:103",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6a",
+          "businfo" : "pci@0000:ff:0f.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:104",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6b",
+          "businfo" : "pci@0000:ff:0f.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:105",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6c",
+          "businfo" : "pci@0000:ff:0f.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:106",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Buffered Ring Agent",
+          "vendor" : "Intel Corporation",
+          "physid" : "6d",
+          "businfo" : "pci@0000:ff:0f.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:107",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "6e",
+          "businfo" : "pci@0000:ff:0f.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:108",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "6f",
+          "businfo" : "pci@0000:ff:0f.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:109",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:0f.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 System Address Decoder & Broadcast Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "70",
+          "businfo" : "pci@0000:ff:0f.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:110",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "71",
+          "businfo" : "pci@0000:ff:10.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:111",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:10.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 PCIe Ring Interface",
+          "vendor" : "Intel Corporation",
+          "physid" : "72",
+          "businfo" : "pci@0000:ff:10.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:112",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "73",
+          "businfo" : "pci@0000:ff:10.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:113",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.6",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "74",
+          "businfo" : "pci@0000:ff:10.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:114",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:10.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Scratchpad & Semaphore Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "75",
+          "businfo" : "pci@0000:ff:10.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:115",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "76",
+          "businfo" : "pci@0000:ff:12.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:116",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:12.1",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0",
+          "vendor" : "Intel Corporation",
+          "physid" : "77",
+          "businfo" : "pci@0000:ff:12.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:117",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 0 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "78",
+          "businfo" : "pci@0000:ff:12.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:118",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "79",
+          "businfo" : "pci@0000:ff:12.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:119",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:12.5",
+          "description" : "Performance counters",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "7a",
+          "businfo" : "pci@0000:ff:12.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:120",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:12.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Home Agent 1 Debug",
+          "vendor" : "Intel Corporation",
+          "physid" : "7b",
+          "businfo" : "pci@0000:ff:12.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:121",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "7c",
+          "businfo" : "pci@0000:ff:13.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:122",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "7d",
+          "businfo" : "pci@0000:ff:13.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:123",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "7e",
+          "businfo" : "pci@0000:ff:13.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:124",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "7f",
+          "businfo" : "pci@0000:ff:13.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:125",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 0/1 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "80",
+          "businfo" : "pci@0000:ff:13.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:126",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:13.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "81",
+          "businfo" : "pci@0000:ff:13.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:127",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:14.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "82",
+          "businfo" : "pci@0000:ff:14.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:128",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:14.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "83",
+          "businfo" : "pci@0000:ff:14.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:129",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 0 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "84",
+          "businfo" : "pci@0000:ff:14.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:130",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel 1 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "85",
+          "businfo" : "pci@0000:ff:14.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:131",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "86",
+          "businfo" : "pci@0000:ff:14.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:132",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "87",
+          "businfo" : "pci@0000:ff:14.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:133",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "88",
+          "businfo" : "pci@0000:ff:14.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:134",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:14.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 0 & 1",
+          "vendor" : "Intel Corporation",
+          "physid" : "89",
+          "businfo" : "pci@0000:ff:14.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:135",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "8a",
+          "businfo" : "pci@0000:ff:16.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:136",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Target Address, Thermal & RAS Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "8b",
+          "businfo" : "pci@0000:ff:16.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:137",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "8c",
+          "businfo" : "pci@0000:ff:16.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:138",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel Target Address Decoder",
+          "vendor" : "Intel Corporation",
+          "physid" : "8d",
+          "businfo" : "pci@0000:ff:16.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:139",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Channel 2/3 Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "8e",
+          "businfo" : "pci@0000:ff:16.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:140",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:16.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO Global Broadcast",
+          "vendor" : "Intel Corporation",
+          "physid" : "8f",
+          "businfo" : "pci@0000:ff:16.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:141",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:17.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "90",
+          "businfo" : "pci@0000:ff:17.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:142",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:17.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 Thermal Control",
+          "vendor" : "Intel Corporation",
+          "physid" : "91",
+          "businfo" : "pci@0000:ff:17.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:143",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 0 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "92",
+          "businfo" : "pci@0000:ff:17.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:144",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 1 Channel 1 ERROR Registers",
+          "vendor" : "Intel Corporation",
+          "physid" : "93",
+          "businfo" : "pci@0000:ff:17.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          },
+          "capabilities" : {
+            "cap_list" : "PCI capabilities listing"
+          }
+        },
+        {
+          "id" : "generic:145",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "94",
+          "businfo" : "pci@0000:ff:17.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:146",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.5",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "95",
+          "businfo" : "pci@0000:ff:17.5",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:147",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.6",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "96",
+          "businfo" : "pci@0000:ff:17.6",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:148",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:17.7",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 DDRIO (VMSE) 2 & 3",
+          "vendor" : "Intel Corporation",
+          "physid" : "97",
+          "businfo" : "pci@0000:ff:17.7",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:149",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "98",
+          "businfo" : "pci@0000:ff:1e.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:150",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.1",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "99",
+          "businfo" : "pci@0000:ff:1e.1",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:151",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9a",
+          "businfo" : "pci@0000:ff:1e.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:152",
+          "class" : "generic",
+          "claimed" : true,
+          "handle" : "PCI:0000:ff:1e.3",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9b",
+          "businfo" : "pci@0000:ff:1e.3",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "driver" : "hswep_uncore",
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:153",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1e.4",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 Power Control Unit",
+          "vendor" : "Intel Corporation",
+          "physid" : "9c",
+          "businfo" : "pci@0000:ff:1e.4",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:154",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1f.0",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 VCU",
+          "vendor" : "Intel Corporation",
+          "physid" : "9d",
+          "businfo" : "pci@0000:ff:1f.0",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        },
+        {
+          "id" : "generic:155",
+          "class" : "generic",
+          "handle" : "PCI:0000:ff:1f.2",
+          "description" : "System peripheral",
+          "product" : "Xeon E7 v3/Xeon E5 v3/Core i7 VCU",
+          "vendor" : "Intel Corporation",
+          "physid" : "9e",
+          "businfo" : "pci@0000:ff:1f.2",
+          "version" : "02",
+          "width" : 32,
+          "clock" : 33000000,
+          "configuration" : {
+            "latency" : "0"
+          }
+        }
+      ]
+    },
+    {
+      "id" : "power:0",
+      "class" : "power",
+      "description" : "Power Supply 1",
+      "product" : "720479-B21",
+      "vendor" : "HP",
+      "physid" : "1",
+      "serial" : "5DLVD0CLL9B4MB",
+      "units" : "mWh",
+      "capacity" : 800
+    },
+    {
+      "id" : "power:1",
+      "class" : "power",
+      "description" : "Power Supply 2",
+      "product" : "720479-B21",
+      "vendor" : "HP",
+      "physid" : "2",
+      "serial" : "5DLVD0CLL9B4OL",
+      "units" : "mWh",
+      "capacity" : 800
+    },
+    {
+      "id" : "network:0",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "3",
+      "logicalname" : "tap28ee8957-bc",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:1",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "4",
+      "logicalname" : "veth-br-bond0",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:2",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "5",
+      "logicalname" : "veth2OQRR8",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:3",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "6",
+      "logicalname" : "vethJO1XF2",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:4",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "7",
+      "logicalname" : "gre_sys",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:5",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "8",
+      "logicalname" : "vethOE10M8",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:6",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "9",
+      "logicalname" : "bond0.2843",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "ip" : "10.245.90.3",
+        "link" : "yes",
+        "multicast" : "yes",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:7",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "a",
+      "logicalname" : "bond0.2846",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "ip" : "10.245.95.253",
+        "link" : "yes",
+        "multicast" : "yes",
+        "promiscuous" : "yes",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:8",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "b",
+      "logicalname" : "br-int",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:9",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "c",
+      "logicalname" : "ovs-system",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:10",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "d",
+      "logicalname" : "bond0",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "bonding",
+        "driverversion" : "3.7.1",
+        "duplex" : "full",
+        "firmware" : "2",
+        "link" : "yes",
+        "master" : "yes",
+        "multicast" : "yes",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:11",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "e",
+      "logicalname" : "vethLEVA37",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:12",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "f",
+      "logicalname" : "tap781cd4c8-b1",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:13",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "10",
+      "logicalname" : "vethVCI1FF",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:14",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "11",
+      "logicalname" : "br-data",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:15",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "12",
+      "logicalname" : "bond0.2845",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "link" : "yes",
+        "multicast" : "yes",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:16",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "13",
+      "logicalname" : "bond0.2844",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "802.1Q VLAN Support",
+        "driverversion" : "1.8",
+        "duplex" : "full",
+        "firmware" : "N/A",
+        "ip" : "10.245.92.3",
+        "link" : "yes",
+        "multicast" : "yes",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:17",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "14",
+      "logicalname" : "br-tun",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:18",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "15",
+      "logicalname" : "veth-br-data",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:19",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "16",
+      "logicalname" : "tapde7f95c0-35",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:20",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "17",
+      "logicalname" : "br-ex",
+      "serial" : "de:ad:be:ef:00:ef",
+      "configuration" : {
+        "broadcast" : "yes",
+        "driver" : "openvswitch",
+        "link" : "no",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:21",
+      "class" : "network",
+      "disabled" : true,
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "18",
+      "logicalname" : "gretap0",
+      "configuration" : {
+        "broadcast" : "yes",
+        "multicast" : "yes"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:22",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "19",
+      "logicalname" : "vethTL9TDX",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:23",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "1a",
+      "logicalname" : "veth5XK676",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:24",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "1b",
+      "logicalname" : "vethVUL7PH",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:25",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "1c",
+      "logicalname" : "tapefba2b9a-b1",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    },
+    {
+      "id" : "network:26",
+      "class" : "network",
+      "claimed" : true,
+      "description" : "Ethernet interface",
+      "physid" : "1d",
+      "logicalname" : "vethSVPKFW",
+      "serial" : "de:ad:be:ef:00:ef",
+      "units" : "bit/s",
+      "size" : 10000000000,
+      "configuration" : {
+        "autonegotiation" : "off",
+        "broadcast" : "yes",
+        "driver" : "veth",
+        "driverversion" : "1.0",
+        "duplex" : "full",
+        "link" : "yes",
+        "multicast" : "yes",
+        "port" : "twisted pair",
+        "speed" : "10Gbit/s"
+      },
+      "capabilities" : {
+        "ethernet" : true,
+        "physical" : "Physical interface"
+      }
+    }
+  ]
+}
diff --git a/src/tests/hw-health-samples/lshw.huawei.json b/src/tests/hw-health-samples/lshw.huawei.json
new file mode 100644
index 0000000..5d70339
--- /dev/null
+++ b/src/tests/hw-health-samples/lshw.huawei.json
@@ -0,0 +1,4804 @@
+{
+  "id" : "huaweimachine",
+  "class" : "system",
+  "claimed" : true,
+  "handle" : "DMI:0026",
+  "description" : "System",
+  "product" : "RH2288H V3 (Type1Sku0)",
+  "vendor" : "Huawei",
+  "version" : "V100R003",
+  "serial" : "2102311GHG10G2000031",
+  "width" : 64,
+  "configuration" : {
+    "boot" : "normal",
+    "chassis" : "server",
+    "family" : "Type1Family",
+    "sku" : "Type1Sku0",
+    "uuid" : "A09DD129-D21D-B211-9FE3-0018E1C5D866"
+  },
+  "capabilities" : {
+    "smbios-2.8" : "SMBIOS version 2.8",
+    "dmi-2.8" : "DMI version 2.8",
+    "vsyscall32" : "32-bit processes"
+  },
+  "children" : [
+    {
+      "id" : "core",
+      "class" : "bus",
+      "claimed" : true,
+      "handle" : "DMI:0028",
+      "description" : "Motherboard",
+      "product" : "BC11HGSA0",
+      "vendor" : "Huawei",
+      "physid" : "0",
+      "version" : "V100R003",
+      "serial" : "022HLVCNFB004121",
+      "slot" : "'",
+      "children" : [
+        {
+          "id" : "firmware",
+          "class" : "memory",
+          "claimed" : true,
+          "description" : "BIOS",
+          "vendor" : "Insyde Corp.",
+          "physid" : "25",
+          "version" : "1.69",
+          "date" : "10/31/2015",
+          "units" : "bytes",
+          "size" : 131072,
+          "capacity" : 16711680,
+          "capabilities" : {
+            "pci" : "PCI bus",
+            "upgrade" : "BIOS EEPROM can be upgraded",
+            "shadowing" : "BIOS shadowing",
+            "cdboot" : "Booting from CD-ROM/DVD",
+            "bootselect" : "Selectable boot path",
+            "edd" : "Enhanced Disk Drive extensions",
+            "int13floppynec" : "NEC 9800 floppy",
+            "int13floppytoshiba" : "Toshiba floppy",
+            "int13floppy360" : "5.25\" 360KB floppy",
+            "int13floppy1200" : "5.25\" 1.2MB floppy",
+            "int13floppy720" : "3.5\" 720KB floppy",
+            "int13floppy2880" : "3.5\" 2.88MB floppy",
+            "int9keyboard" : "i8042 keyboard controller",
+            "int10video" : "INT10 CGA/Mono video",
+            "acpi" : "ACPI",
+            "usb" : "USB legacy emulation",
+            "biosbootspecification" : "BIOS boot specification",
+            "uefi" : "UEFI specification is supported"
+          }
+        },
+        {
+          "id" : "cpu:0",
+          "class" : "processor",
+          "claimed" : true,
+          "handle" : "DMI:001E",
+          "description" : "CPU",
+          "product" : "Intel(R) Xeon(R) CPU E5-2697 v3 @ 2.60GHz",
+          "vendor" : "Intel Corp.",
+          "physid" : "1",
+          "businfo" : "cpu@0",
+          "version" : "Intel(R) Xeon(R) CPU E5-2697 v3 @ 2.60GHz",
+          "slot" : "CPU01",
+          "units" : "Hz",
+          "size" : 2597151000,
+          "capacity" : 3500000000,
+          "width" : 64,
+          "clock" : 100000000,
+          "configuration" : {
+            "cores" : "14",
+            "enabledcores" : "14",
+            "threads" : "28"
+          },
+          "capabilities" : {
+            "x86-64" : "64bits extensions (x86-64)",
+            "fpu" : "mathematical co-processor",
+            "fpu_exception" : "FPU exceptions reporting",
+            "wp" : true,
+            "vme" : "virtual mode extensions",
+            "de" : "debugging extensions",
+            "pse" : "page size extensions",
+            "tsc" : "time stamp counter",
+            "msr" : "model-specific registers",
+            "pae" : "4GB+ memory addressing (Physical Address Extension)",
+            "mce" : "machine check exceptions",
+            "cx8" : "compare and exchange 8-byte",
+            "apic" : "on-chip advanced programmable interrupt controller (APIC)",
+            "sep" : "fast system calls",
+            "mtrr" : "memory type range registers",
+            "pge" : "page global enable",
+            "mca" : "machine check architecture",
+            "cmov" : "conditional move instruction",
+            "pat" : "page attribute table",
+            "pse36" : "36-bit page size extensions",
+            "clflush" : true,
+            "dts" : "debug trace and EMON store MSRs",
+            "acpi" : "thermal control (ACPI)",
+            "mmx" : "multimedia extensions (MMX)",
+            "fxsr" : "fast floating point save/restore",
+            "sse" : "streaming SIMD extensions (SSE)",
+            "sse2" : "streaming SIMD extensions (SSE2)",
+            "ss" : "self-snoop",
+            "ht" : "HyperThreading",
+            "tm" : "thermal interrupt and status",
+            "pbe" : "pending break event",
+            "syscall" : "fast system calls",
+            "nx" : "no-execute bit (NX)",
+            "pdpe1gb" : true,
+            "rdtscp" : true,
+            "constant_tsc" : true,
+            "arch_perfmon" : true,
+            "pebs" : true,
+            "bts" : true,
+            "rep_good" : true,
+            "nopl" : true,
+            "xtopology" : true,
+            "nonstop_tsc" : true,
+            "cpuid" : true,
+            "aperfmperf" : true,
+            "pni" : true,
+            "pclmulqdq" : true,
+            "dtes64" : true,
+            "ds_cpl" : true,
+            "vmx" : true,
+            "smx" : true,
+            "est" : true,
+            "tm2" : true,
+            "ssse3" : true,
+            "sdbg" : true,
+            "fma" : true,
+            "cx16" : true,
+            "xtpr" : true,
+            "pdcm" : true,
+            "pcid" : true,
+            "dca" : true,
+            "sse4_1" : true,
+            "sse4_2" : true,
+            "x2apic" : true,
+            "movbe" : true,
+            "popcnt" : true,
+            "tsc_deadline_timer" : true,
+            "aes" : true,
+            "xsave" : true,
+            "avx" : true,
+            "f16c" : true,
+            "rdrand" : true,
+            "lahf_lm" : true,
+            "abm" : true,
+            "cpuid_fault" : true,
+            "epb" : true,
+            "invpcid_single" : true,
+            "pti" : true,
+            "intel_ppin" : true,
+            "ssbd" : true,
+            "ibrs" : true,
+            "ibpb" : true,
+            "stibp" : true,
+            "tpr_shadow" : true,
+            "vnmi" : true,
+            "flexpriority" : true,
+            "ept" : true,
+            "vpid" : true,
+            "fsgsbase" : true,
+            "tsc_adjust" : true,
+            "bmi1" : true,
+            "avx2" : true,
+            "smep" : true,
+            "bmi2" : true,
+            "erms" : true,
+            "invpcid" : true,
+            "cqm" : true,
+            "xsaveopt" : true,
+            "cqm_llc" : true,
+            "cqm_occup_llc" : true,
+            "dtherm" : true,
+            "arat" : true,
+            "pln" : true,
+            "pts" : true,
+            "flush_l1d" : true,
+            "cpufreq" : "CPU Frequency scaling"
+          },
+          "children" : [
+            {
+              "id" : "cache:0",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001B",
+              "description" : "L1 cache",
+              "physid" : "1b",
+              "slot" : "L1 Cache",
+              "units" : "bytes",
+              "size" : 32768,
+              "capacity" : 32768,
+              "configuration" : {
+                "level" : "1"
+              },
+              "capabilities" : {
+                "synchronous" : "Synchronous",
+                "internal" : "Internal",
+                "varies" : "Varies With Memory Address",
+                "instruction" : "Instruction cache"
+              }
+            },
+            {
+              "id" : "cache:1",
+              "class" : "memory",
+              "claimed" : true,
+              "handle" : "DMI:001C",
+              "description" : "L2 cache",
+              "physid" : "1c",
+              "slot" : "L2 Cache",
+              "units" : "bytes",
+              "size" : 262144,
+              "capacity" : 262144,
+              "configuration" : {
+                "level" : "2"
+              },
+        

Follow ups