From ee8f06cbdb03f8254bb6a3c56fa5b8a64ff9ca77 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Wed, 24 Mar 2021 14:13:22 -0500 Subject: [PATCH 01/36] Add windows systeminfo command parser --- jc/parsers/systeminfo.py | 209 ++++++++++++ .../windows/windows-10/systeminfo.json | 35 ++ .../windows/windows-10/systeminfo.out | 47 +++ .../windows/windows-7/systeminfo.json | 34 ++ .../fixtures/windows/windows-7/systeminfo.out | 298 ++++++++++++++++++ tests/test_systeminfo.py | 65 ++++ 6 files changed, 688 insertions(+) create mode 100644 jc/parsers/systeminfo.py create mode 100644 tests/fixtures/windows/windows-10/systeminfo.json create mode 100644 tests/fixtures/windows/windows-10/systeminfo.out create mode 100644 tests/fixtures/windows/windows-7/systeminfo.json create mode 100644 tests/fixtures/windows/windows-7/systeminfo.out create mode 100644 tests/test_systeminfo.py diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py new file mode 100644 index 00000000..735360c4 --- /dev/null +++ b/jc/parsers/systeminfo.py @@ -0,0 +1,209 @@ +"""jc - JSON CLI output utility `systeminfo` command output parser + +Parses Windows "systeminfo" command. Multiline values such as +hotfixes or network cards are unparsed. + +Usage (cli): + + $ systeminfo | jc --systeminfo + +Usage (module): + + import jc.parsers.systeminfo + result = jc.parsers.systeminfo.parse(systeminfo_command_output) + +Compatibility: + + 'win32' + +Examples: + + $ systeminfo | jc --systeminfo -p + { + "host_name": "DESKTOP-WIN01", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.19042 N/A Build 19042", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "User", + "registered_organization": "", + "product_id": "00111-12345-00001-AA111", + "original_install_date": "2/16/2021, 11:20:27 AM", + "system_boot_time": "3/19/2021, 9:25:03 AM", + "system_manufacturer": "VMware, Inc.", + "system_model": "VMware7,1", + "system_type": "x64-based PC", + "processors": "1 Processor(s) Installed.\n [01]: ...", + "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", + "windows_directory": "C:\\Windows", + "system_directory": "C:\\Windows\\system32", + "boot_device": "\\Device\\HarddiskVolume1", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", + "total_physical_memory": "2,047 MB", + "available_physical_memory": "1,417 MB", + "virtual_memory_max_size": "2,687 MB", + "virtual_memory_available": "1,482 MB", + "virtual_memory_in_use": "1,205 MB", + "page_file_locations": "C:\\pagefile.sys", + "domain": "TEST.local", + "logon_server": "\\\\WIN-AA1A1A11AAA", + "hotfixs": "6 Hotfix(s) Installed.\n [01]: KB4578...", + "network_cards": "1 NIC(s) Installed.\n [01]: Int...", + "hyperv_requirements": "A hypervisor has been detected. Features required fo..." + } +""" +import jc.utils + + +class info: + version = "1.0" + description = "Windows systeminfo command parser" + author = "Jon Smith" + author_email = "jon@rebelliondefense.com" + # details = 'enter any other details here' + + # compatible options: linux, darwin, cygwin, win32, aix, freebsd + compatible = ["win32"] + magic_commands = ["systeminfo"] + + +__version__ = info.version + + +def process(proc_data): + """ + Final processing to conform to the schema. + + Parameters: + + proc_data: (List of Dictionaries) raw structured data to process + + Returns: + + List of Dictionaries. Some keys are optional. Example: a non-virtualized server will not have + the "hyperv_requirements" key. Structured data with the following schema: + + [ + { + "host_name": "string", + "os_name": "string", + "os_version": "string", + "os_manufacturer": "string", + "os_configuration": "string", + "os_build_type": "string", + "registered_owner": "string", + "registered_organization": "string", + "product_id": "string", + "original_install_date": "string", + "system_boot_time": "string", + "system_manufacturer": "string", + "system_model": "string", + "system_type": "string", + "processors": "string", + "bios_version": "string", + "windows_directory": "string", + "system_directory": "string", + "boot_device": "string", + "system_locale": "string", + "input_locale": "string", + "time_zone": "string", + "total_physical_memory": "string", + "available_physical_memory": "string", + "virtual_memory_max_size": "string", + "virtual_memory_available": "string", + "virtual_memory_in_use": "string", + "page_file_locations": "string", + "domain": "string", + "logon_server": "string", + "hotfixs": "string", + "network_cards": "string", + "hyperv_requirements": "string" + } + ] + """ + + # rebuild output for added semantic information + return proc_data + + +def parse(data, raw=False, quiet=False): + """ + Main text parsing function + + Parameters: + + data: (string) text data to parse + raw: (boolean) output preprocessed JSON if True + quiet: (boolean) suppress warning messages if True + + Returns: + + List of Dictionaries. Raw or processed structured data. + """ + if not quiet: + jc.utils.compatibility(__name__, info.compatible) + + delim = ":" # k/v delimiter + raw_data = {} # intermediary output + + if jc.utils.has_data(data): + # keepends = True, so that multiline data retains return chars + lines = [line for line in data.splitlines(keepends=True) if line.strip() != ""] + + # find the character position of the value in the k/v pair of the first line + # all subsequent lines of data use the same character position + start_value_pos = get_value_pos(lines[0], delim) + + last_key = None + for line in lines: + key = line[0:start_value_pos] + value = line[start_value_pos:] + + # possible multiline data + if last_key: + # the value data doesn't start where it should + # so this is multiline data + if delim not in key: + raw_data[last_key] += line + continue + + raw_data[key] = value + last_key = key + + # clean up keys; strip values + raw_output = {} + for k, v in raw_data.items(): + # lowercase and replace spaces with underscores + k = k.strip().lower().replace(' ', '_') + + # remove invalid key characters + for c in ';:!@#$%^&*()-': + k = k.replace(c, '') + + # since we split on start_value_pos, the delimiter + # is still in the key field. Remove it. + k = k.rstrip(delim) + + raw_output[k] = v.strip() + + if raw: + return raw_output + else: + return process(raw_output) + + +def get_value_pos(line, delim): + """ + Finds the first non-whitespace character after the delimiter + Parameters: + line: (string) Input string + delim: (string) The data delimiter + """ + fields = line.split(delim, 1) + if not len(fields) == 2: + raise Exception(f"Expected a '{delim}' delimited field. Actual: {line}") + + return len(line) - len(fields[1].lstrip()) diff --git a/tests/fixtures/windows/windows-10/systeminfo.json b/tests/fixtures/windows/windows-10/systeminfo.json new file mode 100644 index 00000000..daa5a62f --- /dev/null +++ b/tests/fixtures/windows/windows-10/systeminfo.json @@ -0,0 +1,35 @@ +{ + "host_name": "DESKTOP-WIN01", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.19042 N/A Build 19042", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "User", + "registered_organization": "", + "product_id": "00111-12345-00001-AA111", + "original_install_date": "2/16/2021, 11:20:27 AM", + "system_boot_time": "3/19/2021, 9:25:03 AM", + "system_manufacturer": "VMware, Inc.", + "system_model": "VMware7,1", + "system_type": "x64-based PC", + "processors": "1 Processor(s) Installed.\n [01]: Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz", + "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", + "windows_directory": "C:\\Windows", + "system_directory": "C:\\Windows\\system32", + "boot_device": "\\Device\\HarddiskVolume1", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", + "total_physical_memory": "2,047 MB", + "available_physical_memory": "1,417 MB", + "virtual_memory_max_size": "2,687 MB", + "virtual_memory_available": "1,482 MB", + "virtual_memory_in_use": "1,205 MB", + "page_file_locations": "C:\\pagefile.sys", + "domain": "TEST.local", + "logon_server": "\\\\WIN-AA1A1A11AAA", + "hotfixs": "6 Hotfix(s) Installed.\n [01]: KB4578968\n [02]: KB4562830\n [03]: KB4570334\n [04]: KB4580325\n [05]: KB4586864\n [06]: KB4594440", + "network_cards": "1 NIC(s) Installed.\n [01]: Intel(R) 82574L Gigabit Network Connection\n Connection Name: Ethernet0\n DHCP Enabled: Yes\n DHCP Server: 192.168.133.250\n IP address(es)\n [01]: 192.168.133.3\n [02]: fe80::192:eb64:1fcf:86eb", + "hyperv_requirements": "A hypervisor has been detected. Features required for Hyper-V will not be displayed." +} diff --git a/tests/fixtures/windows/windows-10/systeminfo.out b/tests/fixtures/windows/windows-10/systeminfo.out new file mode 100644 index 00000000..df4d05d9 --- /dev/null +++ b/tests/fixtures/windows/windows-10/systeminfo.out @@ -0,0 +1,47 @@ +Host Name: DESKTOP-WIN01 +OS Name: Microsoft Windows 10 Enterprise +OS Version: 10.0.19042 N/A Build 19042 +OS Manufacturer: Microsoft Corporation +OS Configuration: Member Workstation +OS Build Type: Multiprocessor Free +Registered Owner: User +Registered Organization: +Product ID: 00111-12345-00001-AA111 +Original Install Date: 2/16/2021, 11:20:27 AM +System Boot Time: 3/19/2021, 9:25:03 AM +System Manufacturer: VMware, Inc. +System Model: VMware7,1 +System Type: x64-based PC +Processor(s): 1 Processor(s) Installed. + [01]: Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz +BIOS Version: VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020 +Windows Directory: C:\Windows +System Directory: C:\Windows\system32 +Boot Device: \Device\HarddiskVolume1 +System Locale: en-us;English (United States) +Input Locale: en-us;English (United States) +Time Zone: (UTC-08:00) Pacific Time (US & Canada) +Total Physical Memory: 2,047 MB +Available Physical Memory: 1,417 MB +Virtual Memory: Max Size: 2,687 MB +Virtual Memory: Available: 1,482 MB +Virtual Memory: In Use: 1,205 MB +Page File Location(s): C:\pagefile.sys +Domain: TEST.local +Logon Server: \\WIN-AA1A1A11AAA +Hotfix(s): 6 Hotfix(s) Installed. + [01]: KB4578968 + [02]: KB4562830 + [03]: KB4570334 + [04]: KB4580325 + [05]: KB4586864 + [06]: KB4594440 +Network Card(s): 1 NIC(s) Installed. + [01]: Intel(R) 82574L Gigabit Network Connection + Connection Name: Ethernet0 + DHCP Enabled: Yes + DHCP Server: 192.168.133.250 + IP address(es) + [01]: 192.168.133.3 + [02]: fe80::192:eb64:1fcf:86eb +Hyper-V Requirements: A hypervisor has been detected. Features required for Hyper-V will not be displayed. diff --git a/tests/fixtures/windows/windows-7/systeminfo.json b/tests/fixtures/windows/windows-7/systeminfo.json new file mode 100644 index 00000000..78c264c0 --- /dev/null +++ b/tests/fixtures/windows/windows-7/systeminfo.json @@ -0,0 +1,34 @@ +{ + "host_name": "TEST", + "os_name": "Microsoft Windows 7 Professional", + "os_version": "6.1.7601 Service Pack 1 Build 7601", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Standalone Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "jdoe", + "registered_organization": "", + "product_id": "00000-111-1111111-11111", + "original_install_date": "01/01/2015, 12:00:00 PM", + "system_boot_time": "3/22/2021, 1:15:51 PM", + "system_manufacturer": "LENOVO", + "system_model": "11111AA", + "system_type": "x64-based PC", + "processors": "1 Processor(s) Installed.\n [01]: Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz", + "bios_version": "LENOVO 83ET67WW (1.37 ), 11/28/2011", + "windows_directory": "C:\\Windows", + "system_directory": "C:\\Windows\\system32", + "boot_device": "\\Device\\HarddiskVolume1", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC-06:00) Central Time (US & Canada)", + "total_physical_memory": "8,075 MB", + "available_physical_memory": "1,620 MB", + "virtual_memory_max_size": "16,149 MB", + "virtual_memory_available": "6,468 MB", + "virtual_memory_in_use": "9,681 MB", + "page_file_locations": "C:\\pagefile.sys", + "domain": "WORKGROUP", + "logon_server": "\\\\TEST", + "hotfixs": "302 Hotfix(s) Installed.\n [01]: KB2849697\n [02]: KB2849696\n [03]: KB2841134\n [04]: KB2670838\n [05]: KB2830477\n [06]: KB2592687\n [07]: KB971033\n [08]: KB2479943\n [09]: KB2491683\n [10]: KB2506014\n [11]: KB2506212\n [12]: KB2506928\n [13]: KB2509553\n [14]: KB2511455\n [15]: KB2515325\n [16]: KB2532531\n [17]: KB2533552\n [18]: KB2533623\n [19]: KB2534366\n [20]: KB2536275\n [21]: KB2536276\n [22]: KB2544893\n [23]: KB2545698\n [24]: KB2547666\n [25]: KB2552343\n [26]: KB2560656\n [27]: KB2562937\n [28]: KB2563227\n [29]: KB2564958\n [30]: KB2570947\n [31]: KB2574819\n [32]: KB2579686\n [33]: KB2585542\n [34]: KB2603229\n [35]: KB2604115\n [36]: KB2619339\n [37]: KB2620704\n [38]: KB2621440\n [39]: KB2631813\n [40]: KB2639308\n [41]: KB2640148\n [42]: KB2647753\n [43]: KB2653956\n [44]: KB2654428\n [45]: KB2656356\n [46]: KB2660075\n [47]: KB2667402\n [48]: KB2676562\n [49]: KB2685811\n [50]: KB2685813\n [51]: KB2685939\n [52]: KB2690533\n [53]: KB2698365\n [54]: KB2705219\n [55]: KB2706045\n [56]: KB2709630\n [57]: KB2712808\n [58]: KB2718704\n [59]: KB2719857\n [60]: KB2726535\n [61]: KB2727528\n [62]: KB2729094\n [63]: KB2729452\n [64]: KB2731771\n [65]: KB2732059\n [66]: KB2732487\n [67]: KB2732500\n [68]: KB2736422\n [69]: KB2742599\n [70]: KB2750841\n [71]: KB2758857\n [72]: KB2761217\n [73]: KB2763523\n [74]: KB2770660\n [75]: KB2773072\n [76]: KB2786081\n [77]: KB2789645\n [78]: KB2791765\n [79]: KB2798162\n [80]: KB2799926\n [81]: KB2800095\n [82]: KB2803821\n [83]: KB2807986\n [84]: KB2808679\n [85]: KB2813347\n [86]: KB2813430\n [87]: KB2820331\n [88]: KB2832414\n [89]: KB2834140\n [90]: KB2836942\n [91]: KB2836943\n [92]: KB2839894\n [93]: KB2840149\n [94]: KB2840631\n [95]: KB2843630\n [96]: KB2846960\n [97]: KB2847077\n [98]: KB2847311\n [99]: KB2847927\n [100]: KB2852386\n [101]: KB2853952\n [102]: KB2855844\n [103]: KB2857650\n [104]: KB2861191\n [105]: KB2861698\n [106]: KB2862152\n [107]: KB2862330\n [108]: KB2862335\n [109]: KB2862966\n [110]: KB2862973\n [111]: KB2864058\n [112]: KB2864202\n [113]: KB2868038\n [114]: KB2868116\n [115]: KB2868626\n [116]: KB2871997\n [117]: KB2872339\n [118]: KB2882822\n [119]: KB2884256\n [120]: KB2887069\n [121]: KB2888049\n [122]: KB2891804\n [123]: KB2892074\n [124]: KB2893294\n [125]: KB2893519\n [126]: KB2894844\n [127]: KB2900986\n [128]: KB2908783\n [129]: KB2911501\n [130]: KB2912390\n [131]: KB2913152\n [132]: KB2918077\n [133]: KB2918614\n [134]: KB2919469\n [135]: KB2922229\n [136]: KB2923545\n [137]: KB2926765\n [138]: KB2928562\n [139]: KB2929733\n [140]: KB2931356\n [141]: KB2937610\n [142]: KB2939576\n [143]: KB2943357\n [144]: KB2952664\n [145]: KB2957189\n [146]: KB2957503\n [147]: KB2957509\n [148]: KB2961072\n [149]: KB2965788\n [150]: KB2966583\n [151]: KB2968294\n [152]: KB2970228\n [153]: KB2971850\n [154]: KB2972100\n [155]: KB2972211\n [156]: KB2972280\n [157]: KB2973112\n [158]: KB2973201\n [159]: KB2973351\n [160]: KB2976627\n [161]: KB2976897\n [162]: KB2977292\n [163]: KB2977728\n [164]: KB2978092\n [165]: KB2978120\n [166]: KB2978668\n [167]: KB2978742\n [168]: KB2979570\n [169]: KB2980245\n [170]: KB2984972\n [171]: KB2984976\n [172]: KB2984981\n [173]: KB2985461\n [174]: KB2991963\n [175]: KB2992611\n [176]: KB2993651\n [177]: KB2993958\n [178]: KB2994023\n [179]: KB2999226\n [180]: KB3001554\n [181]: KB3002885\n [182]: KB3003057\n [183]: KB3003743\n [184]: KB3004361\n [185]: KB3004375\n [186]: KB3005607\n [187]: KB3006121\n [188]: KB3006226\n [189]: KB3006625\n [190]: KB3008627\n [191]: KB3008923\n [192]: KB3009736\n [193]: KB3010788\n [194]: KB3011780\n [195]: KB3012176\n [196]: KB3013126\n [197]: KB3013410\n [198]: KB3014406\n [199]: KB3019215\n [200]: KB3020369\n [201]: KB3020388\n [202]: KB3021674\n [203]: KB3022777\n [204]: KB3023215\n [205]: KB3025390\n [206]: KB3030377\n [207]: KB3031432\n [208]: KB3032655\n [209]: KB3033889\n [210]: KB3033890\n [211]: KB3033929\n [212]: KB3035126\n [213]: KB3035132\n [214]: KB3037574\n [215]: KB3042058\n [216]: KB3042553\n [217]: KB3045685\n [218]: KB3046017\n [219]: KB3046269\n [220]: KB3055642\n [221]: KB3059317\n [222]: KB3060716\n [223]: KB3061518\n [224]: KB3067903\n [225]: KB3069114\n [226]: KB3069392\n [227]: KB3069762\n [228]: KB3071756\n [229]: KB3072305\n [230]: KB3072630\n [231]: KB3072633\n [232]: KB3074543\n [233]: KB3075226\n [234]: KB3076895\n [235]: KB3076949\n [236]: KB3077715\n [237]: KB3078601\n [238]: KB3080446\n [239]: KB3081320\n [240]: KB3083710\n [241]: KB3084135\n [242]: KB3086255\n [243]: KB3087039\n [244]: KB3087918\n [245]: KB3088195\n [246]", + "network_cards": "5 NIC(s) Installed.\n [01]: Bluetooth Device (Personal Area Network)\n Connection Name: Bluetooth Network Connection\n Status: Media disconnected\n [02]: Intel(R) 82579LM Gigabit Network Connection\n Connection Name: Local Area Connection\n Status: Media disconnected\n [03]: Intel(R) Centrino(R) Advanced-N 6205\n Connection Name: Wireless Network Connection\n DHCP Enabled: Yes\n DHCP Server: 192.168.2.1\n IP address(es)\n [01]: 192.168.2.2\n [04]: Microsoft Virtual WiFi Miniport Adapter\n Connection Name: Wireless Network Connection 2\n Status: Hardware not present\n [05]: Microsoft Virtual WiFi Miniport Adapter\n Connection Name: Wireless Network Connection 3\n Status: Hardware not present" +} diff --git a/tests/fixtures/windows/windows-7/systeminfo.out b/tests/fixtures/windows/windows-7/systeminfo.out new file mode 100644 index 00000000..95bc2bdc --- /dev/null +++ b/tests/fixtures/windows/windows-7/systeminfo.out @@ -0,0 +1,298 @@ + +Host Name: TEST +OS Name: Microsoft Windows 7 Professional +OS Version: 6.1.7601 Service Pack 1 Build 7601 +OS Manufacturer: Microsoft Corporation +OS Configuration: Standalone Workstation +OS Build Type: Multiprocessor Free +Registered Owner: jdoe +Registered Organization: +Product ID: 00000-111-1111111-11111 +Original Install Date: 01/01/2015, 12:00:00 PM +System Boot Time: 3/22/2021, 1:15:51 PM +System Manufacturer: LENOVO +System Model: 11111AA +System Type: x64-based PC +Processor(s): 1 Processor(s) Installed. + [01]: Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz +BIOS Version: LENOVO 83ET67WW (1.37 ), 11/28/2011 +Windows Directory: C:\Windows +System Directory: C:\Windows\system32 +Boot Device: \Device\HarddiskVolume1 +System Locale: en-us;English (United States) +Input Locale: en-us;English (United States) +Time Zone: (UTC-06:00) Central Time (US & Canada) +Total Physical Memory: 8,075 MB +Available Physical Memory: 1,620 MB +Virtual Memory: Max Size: 16,149 MB +Virtual Memory: Available: 6,468 MB +Virtual Memory: In Use: 9,681 MB +Page File Location(s): C:\pagefile.sys +Domain: WORKGROUP +Logon Server: \\TEST +Hotfix(s): 302 Hotfix(s) Installed. + [01]: KB2849697 + [02]: KB2849696 + [03]: KB2841134 + [04]: KB2670838 + [05]: KB2830477 + [06]: KB2592687 + [07]: KB971033 + [08]: KB2479943 + [09]: KB2491683 + [10]: KB2506014 + [11]: KB2506212 + [12]: KB2506928 + [13]: KB2509553 + [14]: KB2511455 + [15]: KB2515325 + [16]: KB2532531 + [17]: KB2533552 + [18]: KB2533623 + [19]: KB2534366 + [20]: KB2536275 + [21]: KB2536276 + [22]: KB2544893 + [23]: KB2545698 + [24]: KB2547666 + [25]: KB2552343 + [26]: KB2560656 + [27]: KB2562937 + [28]: KB2563227 + [29]: KB2564958 + [30]: KB2570947 + [31]: KB2574819 + [32]: KB2579686 + [33]: KB2585542 + [34]: KB2603229 + [35]: KB2604115 + [36]: KB2619339 + [37]: KB2620704 + [38]: KB2621440 + [39]: KB2631813 + [40]: KB2639308 + [41]: KB2640148 + [42]: KB2647753 + [43]: KB2653956 + [44]: KB2654428 + [45]: KB2656356 + [46]: KB2660075 + [47]: KB2667402 + [48]: KB2676562 + [49]: KB2685811 + [50]: KB2685813 + [51]: KB2685939 + [52]: KB2690533 + [53]: KB2698365 + [54]: KB2705219 + [55]: KB2706045 + [56]: KB2709630 + [57]: KB2712808 + [58]: KB2718704 + [59]: KB2719857 + [60]: KB2726535 + [61]: KB2727528 + [62]: KB2729094 + [63]: KB2729452 + [64]: KB2731771 + [65]: KB2732059 + [66]: KB2732487 + [67]: KB2732500 + [68]: KB2736422 + [69]: KB2742599 + [70]: KB2750841 + [71]: KB2758857 + [72]: KB2761217 + [73]: KB2763523 + [74]: KB2770660 + [75]: KB2773072 + [76]: KB2786081 + [77]: KB2789645 + [78]: KB2791765 + [79]: KB2798162 + [80]: KB2799926 + [81]: KB2800095 + [82]: KB2803821 + [83]: KB2807986 + [84]: KB2808679 + [85]: KB2813347 + [86]: KB2813430 + [87]: KB2820331 + [88]: KB2832414 + [89]: KB2834140 + [90]: KB2836942 + [91]: KB2836943 + [92]: KB2839894 + [93]: KB2840149 + [94]: KB2840631 + [95]: KB2843630 + [96]: KB2846960 + [97]: KB2847077 + [98]: KB2847311 + [99]: KB2847927 + [100]: KB2852386 + [101]: KB2853952 + [102]: KB2855844 + [103]: KB2857650 + [104]: KB2861191 + [105]: KB2861698 + [106]: KB2862152 + [107]: KB2862330 + [108]: KB2862335 + [109]: KB2862966 + [110]: KB2862973 + [111]: KB2864058 + [112]: KB2864202 + [113]: KB2868038 + [114]: KB2868116 + [115]: KB2868626 + [116]: KB2871997 + [117]: KB2872339 + [118]: KB2882822 + [119]: KB2884256 + [120]: KB2887069 + [121]: KB2888049 + [122]: KB2891804 + [123]: KB2892074 + [124]: KB2893294 + [125]: KB2893519 + [126]: KB2894844 + [127]: KB2900986 + [128]: KB2908783 + [129]: KB2911501 + [130]: KB2912390 + [131]: KB2913152 + [132]: KB2918077 + [133]: KB2918614 + [134]: KB2919469 + [135]: KB2922229 + [136]: KB2923545 + [137]: KB2926765 + [138]: KB2928562 + [139]: KB2929733 + [140]: KB2931356 + [141]: KB2937610 + [142]: KB2939576 + [143]: KB2943357 + [144]: KB2952664 + [145]: KB2957189 + [146]: KB2957503 + [147]: KB2957509 + [148]: KB2961072 + [149]: KB2965788 + [150]: KB2966583 + [151]: KB2968294 + [152]: KB2970228 + [153]: KB2971850 + [154]: KB2972100 + [155]: KB2972211 + [156]: KB2972280 + [157]: KB2973112 + [158]: KB2973201 + [159]: KB2973351 + [160]: KB2976627 + [161]: KB2976897 + [162]: KB2977292 + [163]: KB2977728 + [164]: KB2978092 + [165]: KB2978120 + [166]: KB2978668 + [167]: KB2978742 + [168]: KB2979570 + [169]: KB2980245 + [170]: KB2984972 + [171]: KB2984976 + [172]: KB2984981 + [173]: KB2985461 + [174]: KB2991963 + [175]: KB2992611 + [176]: KB2993651 + [177]: KB2993958 + [178]: KB2994023 + [179]: KB2999226 + [180]: KB3001554 + [181]: KB3002885 + [182]: KB3003057 + [183]: KB3003743 + [184]: KB3004361 + [185]: KB3004375 + [186]: KB3005607 + [187]: KB3006121 + [188]: KB3006226 + [189]: KB3006625 + [190]: KB3008627 + [191]: KB3008923 + [192]: KB3009736 + [193]: KB3010788 + [194]: KB3011780 + [195]: KB3012176 + [196]: KB3013126 + [197]: KB3013410 + [198]: KB3014406 + [199]: KB3019215 + [200]: KB3020369 + [201]: KB3020388 + [202]: KB3021674 + [203]: KB3022777 + [204]: KB3023215 + [205]: KB3025390 + [206]: KB3030377 + [207]: KB3031432 + [208]: KB3032655 + [209]: KB3033889 + [210]: KB3033890 + [211]: KB3033929 + [212]: KB3035126 + [213]: KB3035132 + [214]: KB3037574 + [215]: KB3042058 + [216]: KB3042553 + [217]: KB3045685 + [218]: KB3046017 + [219]: KB3046269 + [220]: KB3055642 + [221]: KB3059317 + [222]: KB3060716 + [223]: KB3061518 + [224]: KB3067903 + [225]: KB3069114 + [226]: KB3069392 + [227]: KB3069762 + [228]: KB3071756 + [229]: KB3072305 + [230]: KB3072630 + [231]: KB3072633 + [232]: KB3074543 + [233]: KB3075226 + [234]: KB3076895 + [235]: KB3076949 + [236]: KB3077715 + [237]: KB3078601 + [238]: KB3080446 + [239]: KB3081320 + [240]: KB3083710 + [241]: KB3084135 + [242]: KB3086255 + [243]: KB3087039 + [244]: KB3087918 + [245]: KB3088195 + [246] +Network Card(s): 5 NIC(s) Installed. + [01]: Bluetooth Device (Personal Area Network) + Connection Name: Bluetooth Network Connection + Status: Media disconnected + [02]: Intel(R) 82579LM Gigabit Network Connection + Connection Name: Local Area Connection + Status: Media disconnected + [03]: Intel(R) Centrino(R) Advanced-N 6205 + Connection Name: Wireless Network Connection + DHCP Enabled: Yes + DHCP Server: 192.168.2.1 + IP address(es) + [01]: 192.168.2.2 + [04]: Microsoft Virtual WiFi Miniport Adapter + Connection Name: Wireless Network Connection 2 + Status: Hardware not present + [05]: Microsoft Virtual WiFi Miniport Adapter + Connection Name: Wireless Network Connection 3 + Status: Hardware not present diff --git a/tests/test_systeminfo.py b/tests/test_systeminfo.py new file mode 100644 index 00000000..a4573d67 --- /dev/null +++ b/tests/test_systeminfo.py @@ -0,0 +1,65 @@ +import json +import os +import unittest +import jc.parsers.systeminfo + +THIS_DIR = os.path.dirname(os.path.abspath(__file__)) + + +class MyTests(unittest.TestCase): + def setUp(self): + # input + with open( + os.path.join( + THIS_DIR, os.pardir, "tests/fixtures/windows/windows-10/systeminfo.out" + ), + "r", + encoding="utf-8", + ) as f: + self.windows_10_systeminfo = f.read() + + with open( + os.path.join( + THIS_DIR, os.pardir, "tests/fixtures/windows/windows-7/systeminfo.out" + ), + "r", + encoding="utf-8", + ) as f: + self.windows_7_systeminfo = f.read() + + # output + with open( + os.path.join( + THIS_DIR, os.pardir, "tests/fixtures/windows/windows-10/systeminfo.json" + ), + "r", + encoding="utf-8", + ) as f: + self.windows_10_systeminfo_json = json.loads(f.read()) + + with open( + os.path.join( + THIS_DIR, os.pardir, "tests/fixtures/windows/windows-7/systeminfo.json" + ), + "r", + encoding="utf-8", + ) as f: + self.windows_7_systeminfo_json = json.loads(f.read()) + + def test_windows_systeminfo(self): + """ + Test a sample Windows "systeminfo" command output + """ + self.assertEqual( + jc.parsers.systeminfo.parse(self.windows_10_systeminfo, quiet=True), + self.windows_10_systeminfo_json, + ) + + self.assertEqual( + jc.parsers.systeminfo.parse(self.windows_7_systeminfo, quiet=True), + self.windows_7_systeminfo_json, + ) + + +if __name__ == "__main__": + unittest.main() From f861cf95b96a224a0a11f2cdc3261b94c02415ef Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Thu, 25 Mar 2021 16:18:14 -0500 Subject: [PATCH 02/36] Change to v0.5; add parser to cli.py; add to docgen --- jc/cli.py | 1 + jc/parsers/systeminfo.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/jc/cli.py b/jc/cli.py index 18bc2a99..2d77b95f 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -97,6 +97,7 @@ parsers = [ 'systemctl-lj', 'systemctl-ls', 'systemctl-luf', + 'systeminfo', 'time', 'timedatectl', 'tracepath', diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 735360c4..4dac9ff0 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -59,7 +59,7 @@ import jc.utils class info: - version = "1.0" + version = "0.5 (beta)" description = "Windows systeminfo command parser" author = "Jon Smith" author_email = "jon@rebelliondefense.com" From 89a88e186ed71d84ea802cf08ab756b49cee3225 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Thu, 25 Mar 2021 16:58:54 -0500 Subject: [PATCH 03/36] Add systeminfo.md file --- docs/parsers/systeminfo.md | 152 +++++++++++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 docs/parsers/systeminfo.md diff --git a/docs/parsers/systeminfo.md b/docs/parsers/systeminfo.md new file mode 100644 index 00000000..b56fca72 --- /dev/null +++ b/docs/parsers/systeminfo.md @@ -0,0 +1,152 @@ + +# jc.parsers.systeminfo +jc - JSON CLI output utility `systeminfo` command output parser + +Parses Windows "systeminfo" command. Multiline values such as +hotfixes or network cards are unparsed. + +Usage (cli): + + $ systeminfo | jc --systeminfo + +Usage (module): + + import jc.parsers.systeminfo + result = jc.parsers.systeminfo.parse(systeminfo_command_output) + +Compatibility: + + 'win32' + +Examples: + + $ systeminfo | jc --systeminfo -p + { + "host_name": "DESKTOP-WIN01", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.19042 N/A Build 19042", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "User", + "registered_organization": "", + "product_id": "00111-12345-00001-AA111", + "original_install_date": "2/16/2021, 11:20:27 AM", + "system_boot_time": "3/19/2021, 9:25:03 AM", + "system_manufacturer": "VMware, Inc.", + "system_model": "VMware7,1", + "system_type": "x64-based PC", + "processors": "1 Processor(s) Installed. + [01]: ...", + "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", + "windows_directory": "C:\Windows", + "system_directory": "C:\Windows\system32", + "boot_device": "\Device\HarddiskVolume1", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", + "total_physical_memory": "2,047 MB", + "available_physical_memory": "1,417 MB", + "virtual_memory_max_size": "2,687 MB", + "virtual_memory_available": "1,482 MB", + "virtual_memory_in_use": "1,205 MB", + "page_file_locations": "C:\pagefile.sys", + "domain": "TEST.local", + "logon_server": "\\WIN-AA1A1A11AAA", + "hotfixs": "6 Hotfix(s) Installed. + [01]: KB4578...", + "network_cards": "1 NIC(s) Installed. + [01]: Int...", + "hyperv_requirements": "A hypervisor has been detected. Features required fo..." + } + + +## info +```python +info() +``` + + +## process +```python +process(proc_data) +``` + +Final processing to conform to the schema. + +Parameters: + + proc_data: (List of Dictionaries) raw structured data to process + +Returns: + + List of Dictionaries. Some keys are optional. Example: a non-virtualized server will not have + the "hyperv_requirements" key. Structured data with the following schema: + + [ + { + "host_name": "string", + "os_name": "string", + "os_version": "string", + "os_manufacturer": "string", + "os_configuration": "string", + "os_build_type": "string", + "registered_owner": "string", + "registered_organization": "string", + "product_id": "string", + "original_install_date": "string", + "system_boot_time": "string", + "system_manufacturer": "string", + "system_model": "string", + "system_type": "string", + "processors": "string", + "bios_version": "string", + "windows_directory": "string", + "system_directory": "string", + "boot_device": "string", + "system_locale": "string", + "input_locale": "string", + "time_zone": "string", + "total_physical_memory": "string", + "available_physical_memory": "string", + "virtual_memory_max_size": "string", + "virtual_memory_available": "string", + "virtual_memory_in_use": "string", + "page_file_locations": "string", + "domain": "string", + "logon_server": "string", + "hotfixs": "string", + "network_cards": "string", + "hyperv_requirements": "string" + } + ] + + +## parse +```python +parse(data, raw=False, quiet=False) +``` + +Main text parsing function + +Parameters: + + data: (string) text data to parse + raw: (boolean) output preprocessed JSON if True + quiet: (boolean) suppress warning messages if True + +Returns: + + List of Dictionaries. Raw or processed structured data. + + +## get_value_pos +```python +get_value_pos(line, delim) +``` + +Finds the first non-whitespace character after the delimiter +Parameters: + line: (string) Input string + delim: (string) The data delimiter + From 660c59129cf4ba7889fb3c6fbafd9dd9b479ccd9 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Mon, 5 Apr 2021 09:29:42 -0500 Subject: [PATCH 04/36] Add parsing of processors/hotfixs --- jc/parsers/systeminfo.py | 42 ++++++++++++++++--- .../windows/windows-10/systeminfo.json | 4 +- .../windows/windows-7/systeminfo.json | 4 +- 3 files changed, 41 insertions(+), 9 deletions(-) diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 4dac9ff0..1ec1a7da 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -146,7 +146,7 @@ def parse(data, raw=False, quiet=False): if not quiet: jc.utils.compatibility(__name__, info.compatible) - delim = ":" # k/v delimiter + delim = ":" # k/v delimiter raw_data = {} # intermediary output if jc.utils.has_data(data): @@ -177,17 +177,20 @@ def parse(data, raw=False, quiet=False): raw_output = {} for k, v in raw_data.items(): # lowercase and replace spaces with underscores - k = k.strip().lower().replace(' ', '_') + k = k.strip().lower().replace(" ", "_") # remove invalid key characters - for c in ';:!@#$%^&*()-': - k = k.replace(c, '') + for c in ";:!@#$%^&*()-": + k = k.replace(c, "") # since we split on start_value_pos, the delimiter # is still in the key field. Remove it. k = k.rstrip(delim) - raw_output[k] = v.strip() + if k in ["hotfixs", "processors"]: + raw_output[k] = parse_hotfixs_or_processors(v) + else: + raw_output[k] = v.strip() if raw: return raw_output @@ -195,6 +198,35 @@ def parse(data, raw=False, quiet=False): return process(raw_output) +def parse_hotfixs_or_processors(data): + """ + Turns a list of return-delimited hotfixes or processors + with [x] as a prefix into an array of hotfixes + + Note that if a high number of items exist, the list may cutoff + and this list may not contain all items installed on the system + + IRL, this likely applies to hotfixes more than processors + + Parameters: + data: (string) Input string + """ + arr_output = [] + for i, l in enumerate(data.splitlines()): + # skip line that says how many are installed + if i == 0: + continue + # we have to make sure this is a complete line + # as data could cutoff. Make sure the delimiter + # exists. Otherwise, skip it. + if ":" in l: + k, v = l.split(":") + # discard the number sequence + arr_output.append(v.strip()) + + return arr_output + + def get_value_pos(line, delim): """ Finds the first non-whitespace character after the delimiter diff --git a/tests/fixtures/windows/windows-10/systeminfo.json b/tests/fixtures/windows/windows-10/systeminfo.json index daa5a62f..385c2858 100644 --- a/tests/fixtures/windows/windows-10/systeminfo.json +++ b/tests/fixtures/windows/windows-10/systeminfo.json @@ -13,7 +13,7 @@ "system_manufacturer": "VMware, Inc.", "system_model": "VMware7,1", "system_type": "x64-based PC", - "processors": "1 Processor(s) Installed.\n [01]: Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz", + "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", "windows_directory": "C:\\Windows", "system_directory": "C:\\Windows\\system32", @@ -29,7 +29,7 @@ "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": "6 Hotfix(s) Installed.\n [01]: KB4578968\n [02]: KB4562830\n [03]: KB4570334\n [04]: KB4580325\n [05]: KB4586864\n [06]: KB4594440", + "hotfixs": ["KB4578968", "KB4562830", "KB4570334", "KB4580325", "KB4586864", "KB4594440"], "network_cards": "1 NIC(s) Installed.\n [01]: Intel(R) 82574L Gigabit Network Connection\n Connection Name: Ethernet0\n DHCP Enabled: Yes\n DHCP Server: 192.168.133.250\n IP address(es)\n [01]: 192.168.133.3\n [02]: fe80::192:eb64:1fcf:86eb", "hyperv_requirements": "A hypervisor has been detected. Features required for Hyper-V will not be displayed." } diff --git a/tests/fixtures/windows/windows-7/systeminfo.json b/tests/fixtures/windows/windows-7/systeminfo.json index 78c264c0..04d2b8ab 100644 --- a/tests/fixtures/windows/windows-7/systeminfo.json +++ b/tests/fixtures/windows/windows-7/systeminfo.json @@ -13,7 +13,7 @@ "system_manufacturer": "LENOVO", "system_model": "11111AA", "system_type": "x64-based PC", - "processors": "1 Processor(s) Installed.\n [01]: Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz", + "processors": ["Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz"], "bios_version": "LENOVO 83ET67WW (1.37 ), 11/28/2011", "windows_directory": "C:\\Windows", "system_directory": "C:\\Windows\\system32", @@ -29,6 +29,6 @@ "page_file_locations": "C:\\pagefile.sys", "domain": "WORKGROUP", "logon_server": "\\\\TEST", - "hotfixs": "302 Hotfix(s) Installed.\n [01]: KB2849697\n [02]: KB2849696\n [03]: KB2841134\n [04]: KB2670838\n [05]: KB2830477\n [06]: KB2592687\n [07]: KB971033\n [08]: KB2479943\n [09]: KB2491683\n [10]: KB2506014\n [11]: KB2506212\n [12]: KB2506928\n [13]: KB2509553\n [14]: KB2511455\n [15]: KB2515325\n [16]: KB2532531\n [17]: KB2533552\n [18]: KB2533623\n [19]: KB2534366\n [20]: KB2536275\n [21]: KB2536276\n [22]: KB2544893\n [23]: KB2545698\n [24]: KB2547666\n [25]: KB2552343\n [26]: KB2560656\n [27]: KB2562937\n [28]: KB2563227\n [29]: KB2564958\n [30]: KB2570947\n [31]: KB2574819\n [32]: KB2579686\n [33]: KB2585542\n [34]: KB2603229\n [35]: KB2604115\n [36]: KB2619339\n [37]: KB2620704\n [38]: KB2621440\n [39]: KB2631813\n [40]: KB2639308\n [41]: KB2640148\n [42]: KB2647753\n [43]: KB2653956\n [44]: KB2654428\n [45]: KB2656356\n [46]: KB2660075\n [47]: KB2667402\n [48]: KB2676562\n [49]: KB2685811\n [50]: KB2685813\n [51]: KB2685939\n [52]: KB2690533\n [53]: KB2698365\n [54]: KB2705219\n [55]: KB2706045\n [56]: KB2709630\n [57]: KB2712808\n [58]: KB2718704\n [59]: KB2719857\n [60]: KB2726535\n [61]: KB2727528\n [62]: KB2729094\n [63]: KB2729452\n [64]: KB2731771\n [65]: KB2732059\n [66]: KB2732487\n [67]: KB2732500\n [68]: KB2736422\n [69]: KB2742599\n [70]: KB2750841\n [71]: KB2758857\n [72]: KB2761217\n [73]: KB2763523\n [74]: KB2770660\n [75]: KB2773072\n [76]: KB2786081\n [77]: KB2789645\n [78]: KB2791765\n [79]: KB2798162\n [80]: KB2799926\n [81]: KB2800095\n [82]: KB2803821\n [83]: KB2807986\n [84]: KB2808679\n [85]: KB2813347\n [86]: KB2813430\n [87]: KB2820331\n [88]: KB2832414\n [89]: KB2834140\n [90]: KB2836942\n [91]: KB2836943\n [92]: KB2839894\n [93]: KB2840149\n [94]: KB2840631\n [95]: KB2843630\n [96]: KB2846960\n [97]: KB2847077\n [98]: KB2847311\n [99]: KB2847927\n [100]: KB2852386\n [101]: KB2853952\n [102]: KB2855844\n [103]: KB2857650\n [104]: KB2861191\n [105]: KB2861698\n [106]: KB2862152\n [107]: KB2862330\n [108]: KB2862335\n [109]: KB2862966\n [110]: KB2862973\n [111]: KB2864058\n [112]: KB2864202\n [113]: KB2868038\n [114]: KB2868116\n [115]: KB2868626\n [116]: KB2871997\n [117]: KB2872339\n [118]: KB2882822\n [119]: KB2884256\n [120]: KB2887069\n [121]: KB2888049\n [122]: KB2891804\n [123]: KB2892074\n [124]: KB2893294\n [125]: KB2893519\n [126]: KB2894844\n [127]: KB2900986\n [128]: KB2908783\n [129]: KB2911501\n [130]: KB2912390\n [131]: KB2913152\n [132]: KB2918077\n [133]: KB2918614\n [134]: KB2919469\n [135]: KB2922229\n [136]: KB2923545\n [137]: KB2926765\n [138]: KB2928562\n [139]: KB2929733\n [140]: KB2931356\n [141]: KB2937610\n [142]: KB2939576\n [143]: KB2943357\n [144]: KB2952664\n [145]: KB2957189\n [146]: KB2957503\n [147]: KB2957509\n [148]: KB2961072\n [149]: KB2965788\n [150]: KB2966583\n [151]: KB2968294\n [152]: KB2970228\n [153]: KB2971850\n [154]: KB2972100\n [155]: KB2972211\n [156]: KB2972280\n [157]: KB2973112\n [158]: KB2973201\n [159]: KB2973351\n [160]: KB2976627\n [161]: KB2976897\n [162]: KB2977292\n [163]: KB2977728\n [164]: KB2978092\n [165]: KB2978120\n [166]: KB2978668\n [167]: KB2978742\n [168]: KB2979570\n [169]: KB2980245\n [170]: KB2984972\n [171]: KB2984976\n [172]: KB2984981\n [173]: KB2985461\n [174]: KB2991963\n [175]: KB2992611\n [176]: KB2993651\n [177]: KB2993958\n [178]: KB2994023\n [179]: KB2999226\n [180]: KB3001554\n [181]: KB3002885\n [182]: KB3003057\n [183]: KB3003743\n [184]: KB3004361\n [185]: KB3004375\n [186]: KB3005607\n [187]: KB3006121\n [188]: KB3006226\n [189]: KB3006625\n [190]: KB3008627\n [191]: KB3008923\n [192]: KB3009736\n [193]: KB3010788\n [194]: KB3011780\n [195]: KB3012176\n [196]: KB3013126\n [197]: KB3013410\n [198]: KB3014406\n [199]: KB3019215\n [200]: KB3020369\n [201]: KB3020388\n [202]: KB3021674\n [203]: KB3022777\n [204]: KB3023215\n [205]: KB3025390\n [206]: KB3030377\n [207]: KB3031432\n [208]: KB3032655\n [209]: KB3033889\n [210]: KB3033890\n [211]: KB3033929\n [212]: KB3035126\n [213]: KB3035132\n [214]: KB3037574\n [215]: KB3042058\n [216]: KB3042553\n [217]: KB3045685\n [218]: KB3046017\n [219]: KB3046269\n [220]: KB3055642\n [221]: KB3059317\n [222]: KB3060716\n [223]: KB3061518\n [224]: KB3067903\n [225]: KB3069114\n [226]: KB3069392\n [227]: KB3069762\n [228]: KB3071756\n [229]: KB3072305\n [230]: KB3072630\n [231]: KB3072633\n [232]: KB3074543\n [233]: KB3075226\n [234]: KB3076895\n [235]: KB3076949\n [236]: KB3077715\n [237]: KB3078601\n [238]: KB3080446\n [239]: KB3081320\n [240]: KB3083710\n [241]: KB3084135\n [242]: KB3086255\n [243]: KB3087039\n [244]: KB3087918\n [245]: KB3088195\n [246]", + "hotfixs": ["KB2849697", "KB2849696", "KB2841134", "KB2670838", "KB2830477", "KB2592687", "KB971033", "KB2479943", "KB2491683", "KB2506014", "KB2506212", "KB2506928", "KB2509553", "KB2511455", "KB2515325", "KB2532531", "KB2533552", "KB2533623", "KB2534366", "KB2536275", "KB2536276", "KB2544893", "KB2545698", "KB2547666", "KB2552343", "KB2560656", "KB2562937", "KB2563227", "KB2564958", "KB2570947", "KB2574819", "KB2579686", "KB2585542", "KB2603229", "KB2604115", "KB2619339", "KB2620704", "KB2621440", "KB2631813", "KB2639308", "KB2640148", "KB2647753", "KB2653956", "KB2654428", "KB2656356", "KB2660075", "KB2667402", "KB2676562", "KB2685811", "KB2685813", "KB2685939", "KB2690533", "KB2698365", "KB2705219", "KB2706045", "KB2709630", "KB2712808", "KB2718704", "KB2719857", "KB2726535", "KB2727528", "KB2729094", "KB2729452", "KB2731771", "KB2732059", "KB2732487", "KB2732500", "KB2736422", "KB2742599", "KB2750841", "KB2758857", "KB2761217", "KB2763523", "KB2770660", "KB2773072", "KB2786081", "KB2789645", "KB2791765", "KB2798162", "KB2799926", "KB2800095", "KB2803821", "KB2807986", "KB2808679", "KB2813347", "KB2813430", "KB2820331", "KB2832414", "KB2834140", "KB2836942", "KB2836943", "KB2839894", "KB2840149", "KB2840631", "KB2843630", "KB2846960", "KB2847077", "KB2847311", "KB2847927", "KB2852386", "KB2853952", "KB2855844", "KB2857650", "KB2861191", "KB2861698", "KB2862152", "KB2862330", "KB2862335", "KB2862966", "KB2862973", "KB2864058", "KB2864202", "KB2868038", "KB2868116", "KB2868626", "KB2871997", "KB2872339", "KB2882822", "KB2884256", "KB2887069", "KB2888049", "KB2891804", "KB2892074", "KB2893294", "KB2893519", "KB2894844", "KB2900986", "KB2908783", "KB2911501", "KB2912390", "KB2913152", "KB2918077", "KB2918614", "KB2919469", "KB2922229", "KB2923545", "KB2926765", "KB2928562", "KB2929733", "KB2931356", "KB2937610", "KB2939576", "KB2943357", "KB2952664", "KB2957189", "KB2957503", "KB2957509", "KB2961072", "KB2965788", "KB2966583", "KB2968294", "KB2970228", "KB2971850", "KB2972100", "KB2972211", "KB2972280", "KB2973112", "KB2973201", "KB2973351", "KB2976627", "KB2976897", "KB2977292", "KB2977728", "KB2978092", "KB2978120", "KB2978668", "KB2978742", "KB2979570", "KB2980245", "KB2984972", "KB2984976", "KB2984981", "KB2985461", "KB2991963", "KB2992611", "KB2993651", "KB2993958", "KB2994023", "KB2999226", "KB3001554", "KB3002885", "KB3003057", "KB3003743", "KB3004361", "KB3004375", "KB3005607", "KB3006121", "KB3006226", "KB3006625", "KB3008627", "KB3008923", "KB3009736", "KB3010788", "KB3011780", "KB3012176", "KB3013126", "KB3013410", "KB3014406", "KB3019215", "KB3020369", "KB3020388", "KB3021674", "KB3022777", "KB3023215", "KB3025390", "KB3030377", "KB3031432", "KB3032655", "KB3033889", "KB3033890", "KB3033929", "KB3035126", "KB3035132", "KB3037574", "KB3042058", "KB3042553", "KB3045685", "KB3046017", "KB3046269", "KB3055642", "KB3059317", "KB3060716", "KB3061518", "KB3067903", "KB3069114", "KB3069392", "KB3069762", "KB3071756", "KB3072305", "KB3072630", "KB3072633", "KB3074543", "KB3075226", "KB3076895", "KB3076949", "KB3077715", "KB3078601", "KB3080446", "KB3081320", "KB3083710", "KB3084135", "KB3086255", "KB3087039", "KB3087918", "KB3088195"], "network_cards": "5 NIC(s) Installed.\n [01]: Bluetooth Device (Personal Area Network)\n Connection Name: Bluetooth Network Connection\n Status: Media disconnected\n [02]: Intel(R) 82579LM Gigabit Network Connection\n Connection Name: Local Area Connection\n Status: Media disconnected\n [03]: Intel(R) Centrino(R) Advanced-N 6205\n Connection Name: Wireless Network Connection\n DHCP Enabled: Yes\n DHCP Server: 192.168.2.1\n IP address(es)\n [01]: 192.168.2.2\n [04]: Microsoft Virtual WiFi Miniport Adapter\n Connection Name: Wireless Network Connection 2\n Status: Hardware not present\n [05]: Microsoft Virtual WiFi Miniport Adapter\n Connection Name: Wireless Network Connection 3\n Status: Hardware not present" } From af74047b81776c2ea32d82f9145ab60c346c8203 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Mon, 5 Apr 2021 09:32:04 -0500 Subject: [PATCH 05/36] update schema based on processor/hotfix changes --- jc/parsers/systeminfo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 1ec1a7da..75792a53 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -34,7 +34,7 @@ Examples: "system_manufacturer": "VMware, Inc.", "system_model": "VMware7,1", "system_type": "x64-based PC", - "processors": "1 Processor(s) Installed.\n [01]: ...", + "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", "windows_directory": "C:\\Windows", "system_directory": "C:\\Windows\\system32", @@ -50,7 +50,7 @@ Examples: "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": "6 Hotfix(s) Installed.\n [01]: KB4578...", + "hotfixs": ["KB4578968", "KB4562830", "KB4570334", "KB4580325", "KB4586864", "KB4594440"], "network_cards": "1 NIC(s) Installed.\n [01]: Int...", "hyperv_requirements": "A hypervisor has been detected. Features required fo..." } @@ -102,7 +102,7 @@ def process(proc_data): "system_manufacturer": "string", "system_model": "string", "system_type": "string", - "processors": "string", + "processors": ["string"], "bios_version": "string", "windows_directory": "string", "system_directory": "string", @@ -118,7 +118,7 @@ def process(proc_data): "page_file_locations": "string", "domain": "string", "logon_server": "string", - "hotfixs": "string", + "hotfixs": ["string"], "network_cards": "string", "hyperv_requirements": "string" } From 14838f7f5d780896f1318cac2c3f34d249a158d4 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Wed, 14 Apr 2021 08:59:17 -0500 Subject: [PATCH 06/36] update schema with nic, hyperv, and process changes --- jc/parsers/systeminfo.py | 355 +++++++++++++++--- jc/utils.py | 1 + .../windows/windows-10/systeminfo-hyperv.json | 111 ++++++ .../windows/windows-10/systeminfo-hyperv.out | 79 ++++ .../windows/windows-10/systeminfo.json | 43 ++- .../windows/windows-2012r2/systeminfo.json | 54 +++ .../windows/windows-2012r2/systeminfo.out | 45 +++ .../windows/windows-7/systeminfo.json | 311 ++++++++++++++- tests/test_systeminfo.py | 67 ++-- 9 files changed, 953 insertions(+), 113 deletions(-) create mode 100644 tests/fixtures/windows/windows-10/systeminfo-hyperv.json create mode 100644 tests/fixtures/windows/windows-10/systeminfo-hyperv.out create mode 100644 tests/fixtures/windows/windows-2012r2/systeminfo.json create mode 100644 tests/fixtures/windows/windows-2012r2/systeminfo.out diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 75792a53..cf5081bf 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -18,7 +18,7 @@ Compatibility: Examples: - $ systeminfo | jc --systeminfo -p + $ systeminfo | jc --systeminfo -p -r { "host_name": "DESKTOP-WIN01", "os_name": "Microsoft Windows 10 Enterprise", @@ -50,11 +50,97 @@ Examples: "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": ["KB4578968", "KB4562830", "KB4570334", "KB4580325", "KB4586864", "KB4594440"], - "network_cards": "1 NIC(s) Installed.\n [01]: Int...", - "hyperv_requirements": "A hypervisor has been detected. Features required fo..." + "hotfixs": [ + "KB4578968", + "KB4562830", + "KB4570334", + "KB4580325", + "KB4586864", + "KB4594440" + ], + "network_cards": [ + { + "name": "Intel(R) 82574L Gigabit Network Connection", + "connection_name": "Ethernet0", + "status": "", + "dhcp_enabled": "Yes", + "dhcp_server": "192.168.133.250", + "ip_addresses": [ + "192.168.133.3", + "fe80::192:eb64:1fcf:86eb" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": "Yes", + "virtualization_enabled_in_firmware": "Yes", + "second_level_address_translation": "No", + "data_execution_prevention_available": "Yes" + } + } + + $ systeminfo | jc --systeminfo -p + { + "host_name": "DESKTOP-WIN01", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.19042 N/A Build 19042", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "User", + "registered_organization": "", + "product_id": "00111-12345-00001-AA111", + "original_install_date": 1613496027, + "system_boot_time": 1616163903, + "system_manufacturer": "VMware, Inc.", + "system_model": "VMware7,1", + "system_type": "x64-based PC", + "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], + "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", + "windows_directory": "C:\\Windows", + "system_directory": "C:\\Windows\\system32", + "boot_device": "\\Device\\HarddiskVolume1", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", + "total_physical_memory": 2047, + "available_physical_memory": 1417, + "virtual_memory_max_size": 2687, + "virtual_memory_available": 1482, + "virtual_memory_in_use": 1205", + "page_file_locations": "C:\\pagefile.sys", + "domain": "TEST.local", + "logon_server": "\\\\WIN-AA1A1A11AAA", + "hotfixs": [ + "KB4578968", + "KB4562830", + "KB4570334", + "KB4580325", + "KB4586864", + "KB4594440" + ], + "network_cards": [ + { + "name": "Intel(R) 82574L Gigabit Network Connection", + "connection_name": "Ethernet0", + "status": "", + "dhcp_enabled": true, + "dhcp_server": "192.168.133.250", + "ip_addresses": [ + "192.168.133.3", + "fe80::192:eb64:1fcf:86eb" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": "Yes", + "virtualization_enabled_in_firmware": "Yes", + "second_level_address_translation": "No", + "data_execution_prevention_available": "Yes" + } } """ +import re import jc.utils @@ -79,53 +165,105 @@ def process(proc_data): Parameters: - proc_data: (List of Dictionaries) raw structured data to process + proc_data: (Dictionary) raw structured data to process Returns: - List of Dictionaries. Some keys are optional. Example: a non-virtualized server will not have - the "hyperv_requirements" key. Structured data with the following schema: + Dictionary. Some keys are optional. Example: a non-virtualized server will an empty + "hyperv_requirements" object. Structured data with the following schema: - [ - { - "host_name": "string", - "os_name": "string", - "os_version": "string", - "os_manufacturer": "string", - "os_configuration": "string", - "os_build_type": "string", - "registered_owner": "string", - "registered_organization": "string", - "product_id": "string", - "original_install_date": "string", - "system_boot_time": "string", - "system_manufacturer": "string", - "system_model": "string", - "system_type": "string", - "processors": ["string"], - "bios_version": "string", - "windows_directory": "string", - "system_directory": "string", - "boot_device": "string", - "system_locale": "string", - "input_locale": "string", - "time_zone": "string", - "total_physical_memory": "string", - "available_physical_memory": "string", - "virtual_memory_max_size": "string", - "virtual_memory_available": "string", - "virtual_memory_in_use": "string", - "page_file_locations": "string", - "domain": "string", - "logon_server": "string", - "hotfixs": ["string"], - "network_cards": "string", - "hyperv_requirements": "string" + { + "host_name": "string", + "os_name": "string", + "os_version": "string", + "os_manufacturer": "string", + "os_configuration": "string", + "os_build_type": "string", + "registered_owner": "string", + "registered_organization": "string", + "product_id": "string", + "original_install_date": integer, # naive timestamp + "system_boot_time": integer, # naive timestamp + "system_manufacturer": "string", + "system_model": "string", + "system_type": "string", + "processors": ["string"], + "bios_version": "string", + "windows_directory": "string", + "system_directory": "string", + "boot_device": "string", + "system_locale": "string", + "input_locale": "string", + "time_zone": "string", + "total_physical_memory": "string", + "available_physical_memory": integer, + "virtual_memory_max_size": integer, + "virtual_memory_available": integer, + "virtual_memory_in_use": integer, + "page_file_locations": "string", + "domain": "string", + "logon_server": "string", + "hotfixs": ["string"], + "network_cards": [ + { + "name": "string", + "connection_name": "string", + "status": "string", + "dhcp_enabled": boolean, + "dhcp_server": "string", + "ip_addresses": ["string"] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": boolean, + "virtualization_enabled_in_firmware": boolean, + "second_level_address_translation": boolean, + "data_execution_prevention_available": boolean } - ] + } """ # rebuild output for added semantic information + for i, nic in enumerate(proc_data["network_cards"]): + proc_data["network_cards"][i]["dhcp_enabled"] = convert_to_boolean( + nic["dhcp_enabled"] + ) + + int_list = [ + "total_physical_memory", + "available_physical_memory", + "virtual_memory_max_size", + "virtual_memory_available", + "virtual_memory_in_use", + ] + for key in int_list: + proc_data[key] = convert_to_int(proc_data.get(key)) + + dt_list = ["original_install_date", "system_boot_time"] + for key in dt_list: + tz = proc_data.get("time_zone", "") + if tz: + # convert + # from: (UTC-08:00) Pacific Time (US & Canada) + # to: (UTC-0800) + tz_fields = tz.split(" ") + tz = " " + tz_fields[0].replace(":", "") + proc_data[key] = jc.utils.timestamp(f"{proc_data.get(key)}{tz}").naive + + hyperv_key = "hyperv_requirements" + hyperv_subkey_list = [ + "vm_monitor_mode_extensions", + "virtualization_enabled_in_firmware", + "second_level_address_translation", + "data_execution_prevention_available", + ] + if hyperv_key in proc_data: + for key in hyperv_subkey_list: + if key in proc_data[hyperv_key]: + proc_data[hyperv_key][key] = convert_to_boolean( + proc_data[hyperv_key][key] + ) + return proc_data @@ -176,12 +314,7 @@ def parse(data, raw=False, quiet=False): # clean up keys; strip values raw_output = {} for k, v in raw_data.items(): - # lowercase and replace spaces with underscores - k = k.strip().lower().replace(" ", "_") - - # remove invalid key characters - for c in ";:!@#$%^&*()-": - k = k.replace(c, "") + k = transform_key(k) # since we split on start_value_pos, the delimiter # is still in the key field. Remove it. @@ -189,6 +322,10 @@ def parse(data, raw=False, quiet=False): if k in ["hotfixs", "processors"]: raw_output[k] = parse_hotfixs_or_processors(v) + elif k in ["network_cards"]: + raw_output[k] = parse_network_cards(v) + elif k in ["hyperv_requirements"]: + raw_output[k] = parse_hyperv_requirements(v) else: raw_output[k] = v.strip() @@ -227,9 +364,113 @@ def parse_hotfixs_or_processors(data): return arr_output +def parse_hyperv_requirements(data): + """ + Turns a list of key/value settings for hyperv + into an object + + Parameters: + data: (string) Input string + """ + output = {} + for i, l in enumerate(data.splitlines()): + if ":" in l: + k, v = l.split(":") + # discard the number sequence + output[transform_key(k)] = v.strip() + + return output + + +def parse_network_cards(data): + """ + Turns a list of network_cards into an array of objects + + Parameters: + data: (string) Input string + """ + delim = ":" + arr_output = [] + cur_nic = None + is_ip = False + nic_value_pos = 0 + + for i, line in enumerate(data.splitlines()): + # skip first line + if i == 0: + continue + + if "IP address(es)" in line: + is_ip = True + continue + + cur_value_pos = len(line) - len(line.lstrip()) + + line = line.strip() + + m = re.match(r"\[(\d+)\]" + delim + "(.+)", line) + if m and is_ip and cur_value_pos > nic_value_pos: + cur_nic["ip_addresses"].append(m.group(2).strip()) + elif m: + if cur_nic: + arr_output.append(cur_nic) + cur_nic = default_nic() + cur_nic["name"] = m.group(2).strip() + nic_value_pos = cur_value_pos + is_ip = False + elif delim in line: + k, v = line.split(delim) + k = transform_key(k) + cur_nic[k] = v.strip() + + if cur_nic: + arr_output.append(cur_nic) + + return arr_output + + +def convert_to_boolean(value): + """ + Converts string input to boolean assuming "Yes/No" inputs + + Parameters: + value: (string) Input value + """ + return value == "Yes" + + +def convert_to_int(value): + """ + Converts string input to integer by stripping all non-numeric characters + + Parameters: + value: (string) Input value + """ + try: + value = int(re.sub("[^0-9]", "", value)) + except ValueError: + pass + return value + + +def default_nic(): + """ + Returns a default network card object + """ + return { + "name": "", + "connection_name": "", + "status": "", + "dhcp_enabled": "No", + "dhcp_server": "", + "ip_addresses": [], + } + + def get_value_pos(line, delim): """ Finds the first non-whitespace character after the delimiter + Parameters: line: (string) Input string delim: (string) The data delimiter @@ -239,3 +480,19 @@ def get_value_pos(line, delim): raise Exception(f"Expected a '{delim}' delimited field. Actual: {line}") return len(line) - len(fields[1].lstrip()) + + +def transform_key(key): + """ + Converts a given key to a valid json key that plays nice with jq + + Parameters: + key: (string) Input value + """ + # lowercase and replace spaces with underscores + key = key.strip().lower().replace(" ", "_") + + # remove invalid key characters + for c in ";:!@#$%^&*()-": + key = key.replace(c, "") + return key diff --git a/jc/utils.py b/jc/utils.py index c289625b..51164423 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -177,6 +177,7 @@ class timestamp: {'id': 8100, 'format': '%a %d %b %Y %H:%M:%S', 'locale': ''}, # current locale format with non-UTC tz (found in upower cli output): # mar. 23 mars 2021 19:12:11 EDT {'id': 8200, 'format': '%A %d %B %Y, %H:%M:%S UTC%z', 'locale': ''}, # fr_FR.utf8 locale format (found in date cli output): vendredi 26 mars 2021, 13:26:46 (UTC+0000) {'id': 8300, 'format': '%A %d %B %Y, %H:%M:%S', 'locale': ''}, # fr_FR.utf8 locale format with non-UTC tz (found in date cli output): vendredi 26 mars 2021, 13:26:46 (UTC-0400) + {'id': 8400, 'format': '%m/%d/%Y, %I:%M:%S %p', 'locale': ''}, # Windows english format (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC-0600) {'id': 9000, 'format': '%c', 'locale': ''} # locally configured locale format conversion: Could be anything :) this is a last-gasp attempt ] diff --git a/tests/fixtures/windows/windows-10/systeminfo-hyperv.json b/tests/fixtures/windows/windows-10/systeminfo-hyperv.json new file mode 100644 index 00000000..7047941a --- /dev/null +++ b/tests/fixtures/windows/windows-10/systeminfo-hyperv.json @@ -0,0 +1,111 @@ +{ + "host_name": "TESTLAPTOP", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.17134 N/A Build 17134", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Test, Inc.", + "registered_organization": "Test, Inc.", + "product_id": "11111-11111-11111-AA111", + "original_install_date": 1553633490, + "system_boot_time": 1617102839, + "system_manufacturer": "Dell Inc.", + "system_model": "Precision 5530", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Dell Inc. 1.16.2, 4/21/2020", + "windows_directory": "C:\\WINDOWS", + "system_directory": "C:\\WINDOWS\\system32", + "boot_device": "\\Device\\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC-06:00) Central Time (US & Canada)", + "total_physical_memory": 32503, + "available_physical_memory": 19743, + "virtual_memory_max_size": 37367, + "virtual_memory_available": 22266, + "virtual_memory_in_use": 15101, + "page_file_locations": "C:\\pagefile.sys", + "domain": "test.com", + "logon_server": "\\\\TESTDC01", + "hotfixs": [ + "KB2693643", + "KB4601054", + "KB4230204", + "KB4346084", + "KB4485449", + "KB4486153", + "KB4509094", + "KB4535680", + "KB4580325", + "KB4580398", + "KB4534293" + ], + "network_cards": [ + { + "name": "Intel(R) Wireless-AC 9260 160MHz", + "connection_name": "Wi-Fi", + "status": "", + "dhcp_enabled": true, + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.219" + ] + }, + { + "name": "Bluetooth Device (Personal Area Network)", + "connection_name": "Bluetooth Network Connection", + "status": "Media disconnected", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [] + }, + { + "name": "Microsoft KM-TEST Loopback Adapter", + "connection_name": "Npcap Loopback Adapter", + "status": "", + "dhcp_enabled": true, + "dhcp_server": "255.255.255.255", + "ip_addresses": [ + "169.254.161.245" + ] + }, + { + "name": "Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64", + "connection_name": "Ethernet 5", + "status": "Hardware not present", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [] + }, + { + "name": "Hyper-V Virtual Ethernet Adapter", + "connection_name": "vEthernet (InternalVM)", + "status": "", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [ + "172.16.32.1" + ] + }, + { + "name": "Hyper-V Virtual Ethernet Adapter", + "connection_name": "vEthernet (Default Switch) 2", + "status": "", + "dhcp_enabled": true, + "dhcp_server": "255.255.255.255", + "ip_addresses": [ + "172.26.251.65" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": true, + "virtualization_enabled_in_firmware": true, + "second_level_address_translation": false, + "data_execution_prevention_available": true + } +} diff --git a/tests/fixtures/windows/windows-10/systeminfo-hyperv.out b/tests/fixtures/windows/windows-10/systeminfo-hyperv.out new file mode 100644 index 00000000..cdf65798 --- /dev/null +++ b/tests/fixtures/windows/windows-10/systeminfo-hyperv.out @@ -0,0 +1,79 @@ + +Host Name: TESTLAPTOP +OS Name: Microsoft Windows 10 Enterprise +OS Version: 10.0.17134 N/A Build 17134 +OS Manufacturer: Microsoft Corporation +OS Configuration: Member Workstation +OS Build Type: Multiprocessor Free +Registered Owner: Test, Inc. +Registered Organization: Test, Inc. +Product ID: 11111-11111-11111-AA111 +Original Install Date: 3/26/2019, 3:51:30 PM +System Boot Time: 3/30/2021, 6:13:59 AM +System Manufacturer: Dell Inc. +System Model: Precision 5530 +System Type: x64-based PC +Processor(s): 1 Processor(s) Installed. + [01]: Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz +BIOS Version: Dell Inc. 1.16.2, 4/21/2020 +Windows Directory: C:\WINDOWS +System Directory: C:\WINDOWS\system32 +Boot Device: \Device\HarddiskVolume2 +System Locale: en-us;English (United States) +Input Locale: en-us;English (United States) +Time Zone: (UTC-06:00) Central Time (US & Canada) +Total Physical Memory: 32,503 MB +Available Physical Memory: 19,743 MB +Virtual Memory: Max Size: 37,367 MB +Virtual Memory: Available: 22,266 MB +Virtual Memory: In Use: 15,101 MB +Page File Location(s): C:\pagefile.sys +Domain: test.com +Logon Server: \\TESTDC01 +Hotfix(s): 11 Hotfix(s) Installed. + [01]: KB2693643 + [02]: KB4601054 + [03]: KB4230204 + [04]: KB4346084 + [05]: KB4485449 + [06]: KB4486153 + [07]: KB4509094 + [08]: KB4535680 + [09]: KB4580325 + [10]: KB4580398 + [11]: KB4534293 +Network Card(s): 6 NIC(s) Installed. + [01]: Intel(R) Wireless-AC 9260 160MHz + Connection Name: Wi-Fi + DHCP Enabled: Yes + DHCP Server: 192.168.2.1 + IP address(es) + [01]: 192.168.2.219 + [02]: Bluetooth Device (Personal Area Network) + Connection Name: Bluetooth Network Connection + Status: Media disconnected + [03]: Microsoft KM-TEST Loopback Adapter + Connection Name: Npcap Loopback Adapter + DHCP Enabled: Yes + DHCP Server: 255.255.255.255 + IP address(es) + [01]: 169.254.161.245 + [04]: Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64 + Connection Name: Ethernet 5 + Status: Hardware not present + [05]: Hyper-V Virtual Ethernet Adapter + Connection Name: vEthernet (InternalVM) + DHCP Enabled: No + IP address(es) + [01]: 172.16.32.1 + [06]: Hyper-V Virtual Ethernet Adapter + Connection Name: vEthernet (Default Switch) 2 + DHCP Enabled: Yes + DHCP Server: 255.255.255.255 + IP address(es) + [01]: 172.26.251.65 +Hyper-V Requirements: VM Monitor Mode Extensions: Yes + Virtualization Enabled In Firmware: Yes + Second Level Address Translation: No + Data Execution Prevention Available: Yes + diff --git a/tests/fixtures/windows/windows-10/systeminfo.json b/tests/fixtures/windows/windows-10/systeminfo.json index 385c2858..e311914b 100644 --- a/tests/fixtures/windows/windows-10/systeminfo.json +++ b/tests/fixtures/windows/windows-10/systeminfo.json @@ -8,12 +8,14 @@ "registered_owner": "User", "registered_organization": "", "product_id": "00111-12345-00001-AA111", - "original_install_date": "2/16/2021, 11:20:27 AM", - "system_boot_time": "3/19/2021, 9:25:03 AM", + "original_install_date": 1613496027, + "system_boot_time": 1616163903, "system_manufacturer": "VMware, Inc.", "system_model": "VMware7,1", "system_type": "x64-based PC", - "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], + "processors": [ + "Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz" + ], "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", "windows_directory": "C:\\Windows", "system_directory": "C:\\Windows\\system32", @@ -21,15 +23,34 @@ "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory": "2,047 MB", - "available_physical_memory": "1,417 MB", - "virtual_memory_max_size": "2,687 MB", - "virtual_memory_available": "1,482 MB", - "virtual_memory_in_use": "1,205 MB", + "total_physical_memory": 2047, + "available_physical_memory": 1417, + "virtual_memory_max_size": 2687, + "virtual_memory_available": 1482, + "virtual_memory_in_use": 1205, "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": ["KB4578968", "KB4562830", "KB4570334", "KB4580325", "KB4586864", "KB4594440"], - "network_cards": "1 NIC(s) Installed.\n [01]: Intel(R) 82574L Gigabit Network Connection\n Connection Name: Ethernet0\n DHCP Enabled: Yes\n DHCP Server: 192.168.133.250\n IP address(es)\n [01]: 192.168.133.3\n [02]: fe80::192:eb64:1fcf:86eb", - "hyperv_requirements": "A hypervisor has been detected. Features required for Hyper-V will not be displayed." + "hotfixs": [ + "KB4578968", + "KB4562830", + "KB4570334", + "KB4580325", + "KB4586864", + "KB4594440" + ], + "network_cards": [ + { + "name": "Intel(R) 82574L Gigabit Network Connection", + "connection_name": "Ethernet0", + "status": "", + "dhcp_enabled": true, + "dhcp_server": "192.168.133.250", + "ip_addresses": [ + "192.168.133.3", + "fe80::192:eb64:1fcf:86eb" + ] + } + ], + "hyperv_requirements": {} } diff --git a/tests/fixtures/windows/windows-2012r2/systeminfo.json b/tests/fixtures/windows/windows-2012r2/systeminfo.json new file mode 100644 index 00000000..5532a8f5 --- /dev/null +++ b/tests/fixtures/windows/windows-2012r2/systeminfo.json @@ -0,0 +1,54 @@ +{ + "host_name": "WIN-1A1A1AA11AA", + "os_name": "Microsoft Windows Server 2012 R2 Standard", + "os_version": "6.3.9600 N/A Build 9600", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Standalone Server", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Windows User", + "registered_organization": "", + "product_id": "11111-11111-11111-AA111", + "original_install_date": 1544685348, + "system_boot_time": 1616960084, + "system_manufacturer": "Microsoft Corporation", + "system_model": "Virtual Machine", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Microsoft Corporation Hyper-V UEFI Release v3.0, 3/2/2018", + "windows_directory": "C:\\Windows", + "system_directory": "C:\\Windows\\system32", + "boot_device": "\\Device\\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC+03:00) Kuwait, Riyadh", + "total_physical_memory": 3555, + "available_physical_memory": 771, + "virtual_memory_max_size": 5731, + "virtual_memory_available": 2751, + "virtual_memory_in_use": 2980, + "page_file_locations": "C:\\pagefile.sys", + "domain": "WORKGROUP", + "logon_server": "\\\\WIN-1A1A1AA11AA", + "hotfixs": [ + "KB2919355", + "KB2975061", + "KB2999226", + "KB3151864", + "KB4054566" + ], + "network_cards": [ + { + "name": "Microsoft Hyper-V Network Adapter", + "connection_name": "Ethernet 2", + "status": "", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [ + "172.16.32.10" + ] + } + ], + "hyperv_requirements": {} +} diff --git a/tests/fixtures/windows/windows-2012r2/systeminfo.out b/tests/fixtures/windows/windows-2012r2/systeminfo.out new file mode 100644 index 00000000..596738d1 --- /dev/null +++ b/tests/fixtures/windows/windows-2012r2/systeminfo.out @@ -0,0 +1,45 @@ + +Host Name: WIN-1A1A1AA11AA +OS Name: Microsoft Windows Server 2012 R2 Standard +OS Version: 6.3.9600 N/A Build 9600 +OS Manufacturer: Microsoft Corporation +OS Configuration: Standalone Server +OS Build Type: Multiprocessor Free +Registered Owner: Windows User +Registered Organization: +Product ID: 11111-11111-11111-AA111 +Original Install Date: 12/13/2018, 1:15:48 AM +System Boot Time: 3/28/2021, 2:34:44 PM +System Manufacturer: Microsoft Corporation +System Model: Virtual Machine +System Type: x64-based PC +Processor(s): 1 Processor(s) Installed. + [01]: Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz +BIOS Version: Microsoft Corporation Hyper-V UEFI Release v3.0, 3/2/2018 +Windows Directory: C:\Windows +System Directory: C:\Windows\system32 +Boot Device: \Device\HarddiskVolume2 +System Locale: en-us;English (United States) +Input Locale: en-us;English (United States) +Time Zone: (UTC+03:00) Kuwait, Riyadh +Total Physical Memory: 3,555 MB +Available Physical Memory: 771 MB +Virtual Memory: Max Size: 5,731 MB +Virtual Memory: Available: 2,751 MB +Virtual Memory: In Use: 2,980 MB +Page File Location(s): C:\pagefile.sys +Domain: WORKGROUP +Logon Server: \\WIN-1A1A1AA11AA +Hotfix(s): 5 Hotfix(s) Installed. + [01]: KB2919355 + [02]: KB2975061 + [03]: KB2999226 + [04]: KB3151864 + [05]: KB4054566 +Network Card(s): 1 NIC(s) Installed. + [01]: Microsoft Hyper-V Network Adapter + Connection Name: Ethernet 2 + DHCP Enabled: No + IP address(es) + [01]: 172.16.32.10 +Hyper-V Requirements: A hypervisor has been detected. Features required for Hyper-V will not be displayed. diff --git a/tests/fixtures/windows/windows-7/systeminfo.json b/tests/fixtures/windows/windows-7/systeminfo.json index 04d2b8ab..917339c2 100644 --- a/tests/fixtures/windows/windows-7/systeminfo.json +++ b/tests/fixtures/windows/windows-7/systeminfo.json @@ -8,12 +8,14 @@ "registered_owner": "jdoe", "registered_organization": "", "product_id": "00000-111-1111111-11111", - "original_install_date": "01/01/2015, 12:00:00 PM", - "system_boot_time": "3/22/2021, 1:15:51 PM", + "original_install_date": 1420135200, + "system_boot_time": 1616436951, "system_manufacturer": "LENOVO", "system_model": "11111AA", "system_type": "x64-based PC", - "processors": ["Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz"], + "processors": [ + "Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz" + ], "bios_version": "LENOVO 83ET67WW (1.37 ), 11/28/2011", "windows_directory": "C:\\Windows", "system_directory": "C:\\Windows\\system32", @@ -21,14 +23,303 @@ "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-06:00) Central Time (US & Canada)", - "total_physical_memory": "8,075 MB", - "available_physical_memory": "1,620 MB", - "virtual_memory_max_size": "16,149 MB", - "virtual_memory_available": "6,468 MB", - "virtual_memory_in_use": "9,681 MB", + "total_physical_memory": 8075, + "available_physical_memory": 1620, + "virtual_memory_max_size": 16149, + "virtual_memory_available": 6468, + "virtual_memory_in_use": 9681, "page_file_locations": "C:\\pagefile.sys", "domain": "WORKGROUP", "logon_server": "\\\\TEST", - "hotfixs": ["KB2849697", "KB2849696", "KB2841134", "KB2670838", "KB2830477", "KB2592687", "KB971033", "KB2479943", "KB2491683", "KB2506014", "KB2506212", "KB2506928", "KB2509553", "KB2511455", "KB2515325", "KB2532531", "KB2533552", "KB2533623", "KB2534366", "KB2536275", "KB2536276", "KB2544893", "KB2545698", "KB2547666", "KB2552343", "KB2560656", "KB2562937", "KB2563227", "KB2564958", "KB2570947", "KB2574819", "KB2579686", "KB2585542", "KB2603229", "KB2604115", "KB2619339", "KB2620704", "KB2621440", "KB2631813", "KB2639308", "KB2640148", "KB2647753", "KB2653956", "KB2654428", "KB2656356", "KB2660075", "KB2667402", "KB2676562", "KB2685811", "KB2685813", "KB2685939", "KB2690533", "KB2698365", "KB2705219", "KB2706045", "KB2709630", "KB2712808", "KB2718704", "KB2719857", "KB2726535", "KB2727528", "KB2729094", "KB2729452", "KB2731771", "KB2732059", "KB2732487", "KB2732500", "KB2736422", "KB2742599", "KB2750841", "KB2758857", "KB2761217", "KB2763523", "KB2770660", "KB2773072", "KB2786081", "KB2789645", "KB2791765", "KB2798162", "KB2799926", "KB2800095", "KB2803821", "KB2807986", "KB2808679", "KB2813347", "KB2813430", "KB2820331", "KB2832414", "KB2834140", "KB2836942", "KB2836943", "KB2839894", "KB2840149", "KB2840631", "KB2843630", "KB2846960", "KB2847077", "KB2847311", "KB2847927", "KB2852386", "KB2853952", "KB2855844", "KB2857650", "KB2861191", "KB2861698", "KB2862152", "KB2862330", "KB2862335", "KB2862966", "KB2862973", "KB2864058", "KB2864202", "KB2868038", "KB2868116", "KB2868626", "KB2871997", "KB2872339", "KB2882822", "KB2884256", "KB2887069", "KB2888049", "KB2891804", "KB2892074", "KB2893294", "KB2893519", "KB2894844", "KB2900986", "KB2908783", "KB2911501", "KB2912390", "KB2913152", "KB2918077", "KB2918614", "KB2919469", "KB2922229", "KB2923545", "KB2926765", "KB2928562", "KB2929733", "KB2931356", "KB2937610", "KB2939576", "KB2943357", "KB2952664", "KB2957189", "KB2957503", "KB2957509", "KB2961072", "KB2965788", "KB2966583", "KB2968294", "KB2970228", "KB2971850", "KB2972100", "KB2972211", "KB2972280", "KB2973112", "KB2973201", "KB2973351", "KB2976627", "KB2976897", "KB2977292", "KB2977728", "KB2978092", "KB2978120", "KB2978668", "KB2978742", "KB2979570", "KB2980245", "KB2984972", "KB2984976", "KB2984981", "KB2985461", "KB2991963", "KB2992611", "KB2993651", "KB2993958", "KB2994023", "KB2999226", "KB3001554", "KB3002885", "KB3003057", "KB3003743", "KB3004361", "KB3004375", "KB3005607", "KB3006121", "KB3006226", "KB3006625", "KB3008627", "KB3008923", "KB3009736", "KB3010788", "KB3011780", "KB3012176", "KB3013126", "KB3013410", "KB3014406", "KB3019215", "KB3020369", "KB3020388", "KB3021674", "KB3022777", "KB3023215", "KB3025390", "KB3030377", "KB3031432", "KB3032655", "KB3033889", "KB3033890", "KB3033929", "KB3035126", "KB3035132", "KB3037574", "KB3042058", "KB3042553", "KB3045685", "KB3046017", "KB3046269", "KB3055642", "KB3059317", "KB3060716", "KB3061518", "KB3067903", "KB3069114", "KB3069392", "KB3069762", "KB3071756", "KB3072305", "KB3072630", "KB3072633", "KB3074543", "KB3075226", "KB3076895", "KB3076949", "KB3077715", "KB3078601", "KB3080446", "KB3081320", "KB3083710", "KB3084135", "KB3086255", "KB3087039", "KB3087918", "KB3088195"], - "network_cards": "5 NIC(s) Installed.\n [01]: Bluetooth Device (Personal Area Network)\n Connection Name: Bluetooth Network Connection\n Status: Media disconnected\n [02]: Intel(R) 82579LM Gigabit Network Connection\n Connection Name: Local Area Connection\n Status: Media disconnected\n [03]: Intel(R) Centrino(R) Advanced-N 6205\n Connection Name: Wireless Network Connection\n DHCP Enabled: Yes\n DHCP Server: 192.168.2.1\n IP address(es)\n [01]: 192.168.2.2\n [04]: Microsoft Virtual WiFi Miniport Adapter\n Connection Name: Wireless Network Connection 2\n Status: Hardware not present\n [05]: Microsoft Virtual WiFi Miniport Adapter\n Connection Name: Wireless Network Connection 3\n Status: Hardware not present" + "hotfixs": [ + "KB2849697", + "KB2849696", + "KB2841134", + "KB2670838", + "KB2830477", + "KB2592687", + "KB971033", + "KB2479943", + "KB2491683", + "KB2506014", + "KB2506212", + "KB2506928", + "KB2509553", + "KB2511455", + "KB2515325", + "KB2532531", + "KB2533552", + "KB2533623", + "KB2534366", + "KB2536275", + "KB2536276", + "KB2544893", + "KB2545698", + "KB2547666", + "KB2552343", + "KB2560656", + "KB2562937", + "KB2563227", + "KB2564958", + "KB2570947", + "KB2574819", + "KB2579686", + "KB2585542", + "KB2603229", + "KB2604115", + "KB2619339", + "KB2620704", + "KB2621440", + "KB2631813", + "KB2639308", + "KB2640148", + "KB2647753", + "KB2653956", + "KB2654428", + "KB2656356", + "KB2660075", + "KB2667402", + "KB2676562", + "KB2685811", + "KB2685813", + "KB2685939", + "KB2690533", + "KB2698365", + "KB2705219", + "KB2706045", + "KB2709630", + "KB2712808", + "KB2718704", + "KB2719857", + "KB2726535", + "KB2727528", + "KB2729094", + "KB2729452", + "KB2731771", + "KB2732059", + "KB2732487", + "KB2732500", + "KB2736422", + "KB2742599", + "KB2750841", + "KB2758857", + "KB2761217", + "KB2763523", + "KB2770660", + "KB2773072", + "KB2786081", + "KB2789645", + "KB2791765", + "KB2798162", + "KB2799926", + "KB2800095", + "KB2803821", + "KB2807986", + "KB2808679", + "KB2813347", + "KB2813430", + "KB2820331", + "KB2832414", + "KB2834140", + "KB2836942", + "KB2836943", + "KB2839894", + "KB2840149", + "KB2840631", + "KB2843630", + "KB2846960", + "KB2847077", + "KB2847311", + "KB2847927", + "KB2852386", + "KB2853952", + "KB2855844", + "KB2857650", + "KB2861191", + "KB2861698", + "KB2862152", + "KB2862330", + "KB2862335", + "KB2862966", + "KB2862973", + "KB2864058", + "KB2864202", + "KB2868038", + "KB2868116", + "KB2868626", + "KB2871997", + "KB2872339", + "KB2882822", + "KB2884256", + "KB2887069", + "KB2888049", + "KB2891804", + "KB2892074", + "KB2893294", + "KB2893519", + "KB2894844", + "KB2900986", + "KB2908783", + "KB2911501", + "KB2912390", + "KB2913152", + "KB2918077", + "KB2918614", + "KB2919469", + "KB2922229", + "KB2923545", + "KB2926765", + "KB2928562", + "KB2929733", + "KB2931356", + "KB2937610", + "KB2939576", + "KB2943357", + "KB2952664", + "KB2957189", + "KB2957503", + "KB2957509", + "KB2961072", + "KB2965788", + "KB2966583", + "KB2968294", + "KB2970228", + "KB2971850", + "KB2972100", + "KB2972211", + "KB2972280", + "KB2973112", + "KB2973201", + "KB2973351", + "KB2976627", + "KB2976897", + "KB2977292", + "KB2977728", + "KB2978092", + "KB2978120", + "KB2978668", + "KB2978742", + "KB2979570", + "KB2980245", + "KB2984972", + "KB2984976", + "KB2984981", + "KB2985461", + "KB2991963", + "KB2992611", + "KB2993651", + "KB2993958", + "KB2994023", + "KB2999226", + "KB3001554", + "KB3002885", + "KB3003057", + "KB3003743", + "KB3004361", + "KB3004375", + "KB3005607", + "KB3006121", + "KB3006226", + "KB3006625", + "KB3008627", + "KB3008923", + "KB3009736", + "KB3010788", + "KB3011780", + "KB3012176", + "KB3013126", + "KB3013410", + "KB3014406", + "KB3019215", + "KB3020369", + "KB3020388", + "KB3021674", + "KB3022777", + "KB3023215", + "KB3025390", + "KB3030377", + "KB3031432", + "KB3032655", + "KB3033889", + "KB3033890", + "KB3033929", + "KB3035126", + "KB3035132", + "KB3037574", + "KB3042058", + "KB3042553", + "KB3045685", + "KB3046017", + "KB3046269", + "KB3055642", + "KB3059317", + "KB3060716", + "KB3061518", + "KB3067903", + "KB3069114", + "KB3069392", + "KB3069762", + "KB3071756", + "KB3072305", + "KB3072630", + "KB3072633", + "KB3074543", + "KB3075226", + "KB3076895", + "KB3076949", + "KB3077715", + "KB3078601", + "KB3080446", + "KB3081320", + "KB3083710", + "KB3084135", + "KB3086255", + "KB3087039", + "KB3087918", + "KB3088195" + ], + "network_cards": [ + { + "name": "Bluetooth Device (Personal Area Network)", + "connection_name": "Bluetooth Network Connection", + "status": "Media disconnected", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [] + }, + { + "name": "Intel(R) 82579LM Gigabit Network Connection", + "connection_name": "Local Area Connection", + "status": "Media disconnected", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [] + }, + { + "name": "Intel(R) Centrino(R) Advanced-N 6205", + "connection_name": "Wireless Network Connection", + "status": "", + "dhcp_enabled": true, + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.2" + ] + }, + { + "name": "Microsoft Virtual WiFi Miniport Adapter", + "connection_name": "Wireless Network Connection 2", + "status": "Hardware not present", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [] + }, + { + "name": "Microsoft Virtual WiFi Miniport Adapter", + "connection_name": "Wireless Network Connection 3", + "status": "Hardware not present", + "dhcp_enabled": false, + "dhcp_server": "", + "ip_addresses": [] + } + ] } diff --git a/tests/test_systeminfo.py b/tests/test_systeminfo.py index a4573d67..e790e506 100644 --- a/tests/test_systeminfo.py +++ b/tests/test_systeminfo.py @@ -7,58 +7,39 @@ THIS_DIR = os.path.dirname(os.path.abspath(__file__)) class MyTests(unittest.TestCase): + test_files = [ + "tests/fixtures/windows/windows-7/systeminfo", + "tests/fixtures/windows/windows-10/systeminfo", + "tests/fixtures/windows/windows-10/systeminfo-hyperv", + "tests/fixtures/windows/windows-2012r2/systeminfo", + ] + def setUp(self): - # input - with open( - os.path.join( - THIS_DIR, os.pardir, "tests/fixtures/windows/windows-10/systeminfo.out" - ), - "r", - encoding="utf-8", - ) as f: - self.windows_10_systeminfo = f.read() + for tf in MyTests.test_files: + in_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.out") + out_file = os.path.join(THIS_DIR, os.pardir, f"{tf}.json") - with open( - os.path.join( - THIS_DIR, os.pardir, "tests/fixtures/windows/windows-7/systeminfo.out" - ), - "r", - encoding="utf-8", - ) as f: - self.windows_7_systeminfo = f.read() + with open(in_file, "r", encoding="utf-8") as f: + setattr(self, self.varName(tf), f.read()) + with open(out_file, "r", encoding="utf-8") as f: + setattr(self, self.varName(tf) + "_json", json.loads(f.read())) - # output - with open( - os.path.join( - THIS_DIR, os.pardir, "tests/fixtures/windows/windows-10/systeminfo.json" - ), - "r", - encoding="utf-8", - ) as f: - self.windows_10_systeminfo_json = json.loads(f.read()) - - with open( - os.path.join( - THIS_DIR, os.pardir, "tests/fixtures/windows/windows-7/systeminfo.json" - ), - "r", - encoding="utf-8", - ) as f: - self.windows_7_systeminfo_json = json.loads(f.read()) + def varName(self, path): + return ( + path.replace("tests/fixtures/windows", "") + .replace("-", "_") + .replace("/", "_") + ) def test_windows_systeminfo(self): """ Test a sample Windows "systeminfo" command output """ - self.assertEqual( - jc.parsers.systeminfo.parse(self.windows_10_systeminfo, quiet=True), - self.windows_10_systeminfo_json, - ) + for tf in MyTests.test_files: + in_var = getattr(self, self.varName(tf)) + out_var = getattr(self, self.varName(tf) + "_json") - self.assertEqual( - jc.parsers.systeminfo.parse(self.windows_7_systeminfo, quiet=True), - self.windows_7_systeminfo_json, - ) + self.assertEqual(jc.parsers.systeminfo.parse(in_var, quiet=True), out_var) if __name__ == "__main__": From f3d00cf38ad15aeda7eaa5644ebc30ff33de6a29 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Wed, 14 Apr 2021 09:06:14 -0500 Subject: [PATCH 07/36] append mb to memory key names; adjust expected timestamps to utc tz --- jc/parsers/systeminfo.py | 48 +++++++++++-------- .../windows/windows-10/systeminfo-hyperv.json | 14 +++--- .../windows/windows-10/systeminfo.json | 14 +++--- .../windows/windows-2012r2/systeminfo.json | 14 +++--- .../windows/windows-7/systeminfo.json | 14 +++--- 5 files changed, 56 insertions(+), 48 deletions(-) diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index cf5081bf..2fa08e84 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -42,11 +42,11 @@ Examples: "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory": "2,047 MB", - "available_physical_memory": "1,417 MB", - "virtual_memory_max_size": "2,687 MB", - "virtual_memory_available": "1,482 MB", - "virtual_memory_in_use": "1,205 MB", + "total_physical_memory_mb": "2,047 MB", + "available_physical_memory_mb": "1,417 MB", + "virtual_memory_max_size_mb": "2,687 MB", + "virtual_memory_available_mb": "1,482 MB", + "virtual_memory_in_use_mb": "1,205 MB", "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", @@ -103,11 +103,11 @@ Examples: "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory": 2047, - "available_physical_memory": 1417, - "virtual_memory_max_size": 2687, - "virtual_memory_available": 1482, - "virtual_memory_in_use": 1205", + "total_physical_memory_mb": 2047, + "available_physical_memory_mb": 1417, + "virtual_memory_max_size_mb": 2687, + "virtual_memory_available_mb": 1482, + "virtual_memory_in_use_mb": 1205", "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", @@ -195,11 +195,11 @@ def process(proc_data): "system_locale": "string", "input_locale": "string", "time_zone": "string", - "total_physical_memory": "string", - "available_physical_memory": integer, - "virtual_memory_max_size": integer, - "virtual_memory_available": integer, - "virtual_memory_in_use": integer, + "total_physical_memory_mb": "string", + "available_physical_memory_mb": integer, + "virtual_memory_max_size_mb": integer, + "virtual_memory_available_mb": integer, + "virtual_memory_in_use_mb": integer, "page_file_locations": "string", "domain": "string", "logon_server": "string", @@ -230,11 +230,11 @@ def process(proc_data): ) int_list = [ - "total_physical_memory", - "available_physical_memory", - "virtual_memory_max_size", - "virtual_memory_available", - "virtual_memory_in_use", + "total_physical_memory_mb", + "available_physical_memory_mb", + "virtual_memory_max_size_mb", + "virtual_memory_available_mb", + "virtual_memory_in_use_mb", ] for key in int_list: proc_data[key] = convert_to_int(proc_data.get(key)) @@ -326,6 +326,14 @@ def parse(data, raw=False, quiet=False): raw_output[k] = parse_network_cards(v) elif k in ["hyperv_requirements"]: raw_output[k] = parse_hyperv_requirements(v) + elif k in [ + "total_physical_memory", + "available_physical_memory", + "virtual_memory_max_size", + "virtual_memory_available", + "virtual_memory_in_use" + ]: + raw_output[k + "_mb"] = v.strip() else: raw_output[k] = v.strip() diff --git a/tests/fixtures/windows/windows-10/systeminfo-hyperv.json b/tests/fixtures/windows/windows-10/systeminfo-hyperv.json index 7047941a..020e9c71 100644 --- a/tests/fixtures/windows/windows-10/systeminfo-hyperv.json +++ b/tests/fixtures/windows/windows-10/systeminfo-hyperv.json @@ -8,8 +8,8 @@ "registered_owner": "Test, Inc.", "registered_organization": "Test, Inc.", "product_id": "11111-11111-11111-AA111", - "original_install_date": 1553633490, - "system_boot_time": 1617102839, + "original_install_date": 1553640690, + "system_boot_time": 1617110039, "system_manufacturer": "Dell Inc.", "system_model": "Precision 5530", "system_type": "x64-based PC", @@ -23,11 +23,11 @@ "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-06:00) Central Time (US & Canada)", - "total_physical_memory": 32503, - "available_physical_memory": 19743, - "virtual_memory_max_size": 37367, - "virtual_memory_available": 22266, - "virtual_memory_in_use": 15101, + "total_physical_memory_mb": 32503, + "available_physical_memory_mb": 19743, + "virtual_memory_max_size_mb": 37367, + "virtual_memory_available_mb": 22266, + "virtual_memory_in_use_mb": 15101, "page_file_locations": "C:\\pagefile.sys", "domain": "test.com", "logon_server": "\\\\TESTDC01", diff --git a/tests/fixtures/windows/windows-10/systeminfo.json b/tests/fixtures/windows/windows-10/systeminfo.json index e311914b..4abab0b2 100644 --- a/tests/fixtures/windows/windows-10/systeminfo.json +++ b/tests/fixtures/windows/windows-10/systeminfo.json @@ -8,8 +8,8 @@ "registered_owner": "User", "registered_organization": "", "product_id": "00111-12345-00001-AA111", - "original_install_date": 1613496027, - "system_boot_time": 1616163903, + "original_install_date": 1613503227, + "system_boot_time": 1616171103, "system_manufacturer": "VMware, Inc.", "system_model": "VMware7,1", "system_type": "x64-based PC", @@ -23,11 +23,11 @@ "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory": 2047, - "available_physical_memory": 1417, - "virtual_memory_max_size": 2687, - "virtual_memory_available": 1482, - "virtual_memory_in_use": 1205, + "total_physical_memory_mb": 2047, + "available_physical_memory_mb": 1417, + "virtual_memory_max_size_mb": 2687, + "virtual_memory_available_mb": 1482, + "virtual_memory_in_use_mb": 1205, "page_file_locations": "C:\\pagefile.sys", "domain": "TEST.local", "logon_server": "\\\\WIN-AA1A1A11AAA", diff --git a/tests/fixtures/windows/windows-2012r2/systeminfo.json b/tests/fixtures/windows/windows-2012r2/systeminfo.json index 5532a8f5..6977f53f 100644 --- a/tests/fixtures/windows/windows-2012r2/systeminfo.json +++ b/tests/fixtures/windows/windows-2012r2/systeminfo.json @@ -8,8 +8,8 @@ "registered_owner": "Windows User", "registered_organization": "", "product_id": "11111-11111-11111-AA111", - "original_install_date": 1544685348, - "system_boot_time": 1616960084, + "original_install_date": 1544692548, + "system_boot_time": 1616967284, "system_manufacturer": "Microsoft Corporation", "system_model": "Virtual Machine", "system_type": "x64-based PC", @@ -23,11 +23,11 @@ "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC+03:00) Kuwait, Riyadh", - "total_physical_memory": 3555, - "available_physical_memory": 771, - "virtual_memory_max_size": 5731, - "virtual_memory_available": 2751, - "virtual_memory_in_use": 2980, + "total_physical_memory_mb": 3555, + "available_physical_memory_mb": 771, + "virtual_memory_max_size_mb": 5731, + "virtual_memory_available_mb": 2751, + "virtual_memory_in_use_mb": 2980, "page_file_locations": "C:\\pagefile.sys", "domain": "WORKGROUP", "logon_server": "\\\\WIN-1A1A1AA11AA", diff --git a/tests/fixtures/windows/windows-7/systeminfo.json b/tests/fixtures/windows/windows-7/systeminfo.json index 917339c2..8945f6fd 100644 --- a/tests/fixtures/windows/windows-7/systeminfo.json +++ b/tests/fixtures/windows/windows-7/systeminfo.json @@ -8,8 +8,8 @@ "registered_owner": "jdoe", "registered_organization": "", "product_id": "00000-111-1111111-11111", - "original_install_date": 1420135200, - "system_boot_time": 1616436951, + "original_install_date": 1420142400, + "system_boot_time": 1616444151, "system_manufacturer": "LENOVO", "system_model": "11111AA", "system_type": "x64-based PC", @@ -23,11 +23,11 @@ "system_locale": "en-us;English (United States)", "input_locale": "en-us;English (United States)", "time_zone": "(UTC-06:00) Central Time (US & Canada)", - "total_physical_memory": 8075, - "available_physical_memory": 1620, - "virtual_memory_max_size": 16149, - "virtual_memory_available": 6468, - "virtual_memory_in_use": 9681, + "total_physical_memory_mb": 8075, + "available_physical_memory_mb": 1620, + "virtual_memory_max_size_mb": 16149, + "virtual_memory_available_mb": 6468, + "virtual_memory_in_use_mb": 9681, "page_file_locations": "C:\\pagefile.sys", "domain": "WORKGROUP", "logon_server": "\\\\TEST", From 325fab2de7b8a4bfc452ab8d3cf333d47fdf4989 Mon Sep 17 00:00:00 2001 From: Jon Smith Date: Wed, 14 Apr 2021 11:52:13 -0500 Subject: [PATCH 08/36] update documentation for parsed structures --- jc/parsers/systeminfo.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 2fa08e84..8d649c3b 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -1,7 +1,6 @@ """jc - JSON CLI output utility `systeminfo` command output parser -Parses Windows "systeminfo" command. Multiline values such as -hotfixes or network cards are unparsed. +Parses Windows "systeminfo" command. Usage (cli): @@ -169,8 +168,11 @@ def process(proc_data): Returns: - Dictionary. Some keys are optional. Example: a non-virtualized server will an empty - "hyperv_requirements" object. Structured data with the following schema: + Dictionary. Some keys are optional. Example: a system without hyper-v capabilities + will not have a 'hyperv_requirements' key, and a system already running hyper-v + will have an empty "hyperv_requirements" object. + + Structured data with the following schema: { "host_name": "string", From dfd2703f75b907ba865fff266d0742d8931bc2d3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 14 Apr 2021 16:39:05 -0700 Subject: [PATCH 09/36] bump dev to v1.15.2 --- CHANGELOG | 3 +++ jc/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 57ffb1fe..08a30269 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ jc changelog +20210415 v1.15.2 +- Add systeminfo parser tested on Windows + 20210413 v1.15.1 - New feature to show parser documentation interactively with -h --parser_name for example: $ jc -h --arp diff --git a/jc/__init__.py b/jc/__init__.py index 7be29ad1..48a49ca3 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -69,4 +69,4 @@ Module Example: """ name = 'jc' -__version__ = '1.15.1' +__version__ = '1.15.2' diff --git a/setup.py b/setup.py index 1b4a45f6..96a983ba 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.15.1', + version='1.15.2', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='Converts the output of popular command-line tools and file-types to JSON.', From 146acc1bf69c402e38c2f1bc842b84e6cff7e2cb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 14 Apr 2021 16:46:16 -0700 Subject: [PATCH 10/36] rename functions to make them private --- jc/parsers/systeminfo.py | 52 ++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 29 deletions(-) diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 8d649c3b..4ad12f0d 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -1,7 +1,5 @@ """jc - JSON CLI output utility `systeminfo` command output parser -Parses Windows "systeminfo" command. - Usage (cli): $ systeminfo | jc --systeminfo @@ -11,10 +9,6 @@ Usage (module): import jc.parsers.systeminfo result = jc.parsers.systeminfo.parse(systeminfo_command_output) -Compatibility: - - 'win32' - Examples: $ systeminfo | jc --systeminfo -p -r @@ -144,8 +138,8 @@ import jc.utils class info: - version = "0.5 (beta)" - description = "Windows systeminfo command parser" + version = "1.0" + description = "`systeminfo` command parser" author = "Jon Smith" author_email = "jon@rebelliondefense.com" # details = 'enter any other details here' @@ -158,7 +152,7 @@ class info: __version__ = info.version -def process(proc_data): +def _process(proc_data): """ Final processing to conform to the schema. @@ -227,7 +221,7 @@ def process(proc_data): # rebuild output for added semantic information for i, nic in enumerate(proc_data["network_cards"]): - proc_data["network_cards"][i]["dhcp_enabled"] = convert_to_boolean( + proc_data["network_cards"][i]["dhcp_enabled"] = _convert_to_boolean( nic["dhcp_enabled"] ) @@ -239,7 +233,7 @@ def process(proc_data): "virtual_memory_in_use_mb", ] for key in int_list: - proc_data[key] = convert_to_int(proc_data.get(key)) + proc_data[key] = _convert_to_int(proc_data.get(key)) dt_list = ["original_install_date", "system_boot_time"] for key in dt_list: @@ -262,7 +256,7 @@ def process(proc_data): if hyperv_key in proc_data: for key in hyperv_subkey_list: if key in proc_data[hyperv_key]: - proc_data[hyperv_key][key] = convert_to_boolean( + proc_data[hyperv_key][key] = _convert_to_boolean( proc_data[hyperv_key][key] ) @@ -295,7 +289,7 @@ def parse(data, raw=False, quiet=False): # find the character position of the value in the k/v pair of the first line # all subsequent lines of data use the same character position - start_value_pos = get_value_pos(lines[0], delim) + start_value_pos = _get_value_pos(lines[0], delim) last_key = None for line in lines: @@ -316,18 +310,18 @@ def parse(data, raw=False, quiet=False): # clean up keys; strip values raw_output = {} for k, v in raw_data.items(): - k = transform_key(k) + k = _transform_key(k) # since we split on start_value_pos, the delimiter # is still in the key field. Remove it. k = k.rstrip(delim) if k in ["hotfixs", "processors"]: - raw_output[k] = parse_hotfixs_or_processors(v) + raw_output[k] = _parse_hotfixs_or_processors(v) elif k in ["network_cards"]: - raw_output[k] = parse_network_cards(v) + raw_output[k] = _parse_network_cards(v) elif k in ["hyperv_requirements"]: - raw_output[k] = parse_hyperv_requirements(v) + raw_output[k] = _parse_hyperv_requirements(v) elif k in [ "total_physical_memory", "available_physical_memory", @@ -342,10 +336,10 @@ def parse(data, raw=False, quiet=False): if raw: return raw_output else: - return process(raw_output) + return _process(raw_output) -def parse_hotfixs_or_processors(data): +def _parse_hotfixs_or_processors(data): """ Turns a list of return-delimited hotfixes or processors with [x] as a prefix into an array of hotfixes @@ -374,7 +368,7 @@ def parse_hotfixs_or_processors(data): return arr_output -def parse_hyperv_requirements(data): +def _parse_hyperv_requirements(data): """ Turns a list of key/value settings for hyperv into an object @@ -387,12 +381,12 @@ def parse_hyperv_requirements(data): if ":" in l: k, v = l.split(":") # discard the number sequence - output[transform_key(k)] = v.strip() + output[_transform_key(k)] = v.strip() return output -def parse_network_cards(data): +def _parse_network_cards(data): """ Turns a list of network_cards into an array of objects @@ -424,13 +418,13 @@ def parse_network_cards(data): elif m: if cur_nic: arr_output.append(cur_nic) - cur_nic = default_nic() + cur_nic = _default_nic() cur_nic["name"] = m.group(2).strip() nic_value_pos = cur_value_pos is_ip = False elif delim in line: k, v = line.split(delim) - k = transform_key(k) + k = _transform_key(k) cur_nic[k] = v.strip() if cur_nic: @@ -439,7 +433,7 @@ def parse_network_cards(data): return arr_output -def convert_to_boolean(value): +def _convert_to_boolean(value): """ Converts string input to boolean assuming "Yes/No" inputs @@ -449,7 +443,7 @@ def convert_to_boolean(value): return value == "Yes" -def convert_to_int(value): +def _convert_to_int(value): """ Converts string input to integer by stripping all non-numeric characters @@ -463,7 +457,7 @@ def convert_to_int(value): return value -def default_nic(): +def _default_nic(): """ Returns a default network card object """ @@ -477,7 +471,7 @@ def default_nic(): } -def get_value_pos(line, delim): +def _get_value_pos(line, delim): """ Finds the first non-whitespace character after the delimiter @@ -492,7 +486,7 @@ def get_value_pos(line, delim): return len(line) - len(fields[1].lstrip()) -def transform_key(key): +def _transform_key(key): """ Converts a given key to a valid json key that plays nice with jq From 89f52b95f7055da9d7b5fa8dce0923d4c3435bd2 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 14 Apr 2021 20:20:46 -0700 Subject: [PATCH 11/36] update systeminfo parser with updated timestamps, normalized blank fields, and new doc style --- README.md | 1 + docs/parsers/systeminfo.md | 290 +++++++++----- jc/man/jc.1.gz | Bin 2041 -> 2051 bytes jc/parsers/systeminfo.py | 361 ++++++++++-------- jc/utils.py | 5 +- man/jc.1.gz | Bin 2041 -> 2051 bytes .../windows-10/systeminfo-hyperv-utc.json | 1 + .../windows-10/systeminfo-hyperv-utc.out | 79 ++++ .../windows/windows-10/systeminfo-hyperv.json | 112 +----- .../windows/windows-10/systeminfo.json | 57 +-- .../windows/windows-10/systeminfo.out | 1 + .../windows/windows-2012r2/systeminfo.json | 55 +-- .../windows/windows-7/systeminfo.json | 326 +--------------- 13 files changed, 467 insertions(+), 821 deletions(-) create mode 100644 tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.json create mode 100644 tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.out diff --git a/README.md b/README.md index 745aae0e..1c5c3bef 100644 --- a/README.md +++ b/README.md @@ -183,6 +183,7 @@ The JSON output can be compact (default) or pretty formatted with the `-p` optio - `--systemctl-lj` enables the `systemctl list-jobs` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_lj)) - `--systemctl-ls` enables the `systemctl list-sockets` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_ls)) - `--systemctl-luf` enables the `systemctl list-unit-files` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_luf)) +- `--systeminfo` enables the `systeminfo` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systeminfo)) - `--time` enables the `/usr/bin/time` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/time)) - `--timedatectl` enables the `timedatectl status` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/timedatectl)) - `--tracepath` enables the `tracepath` and `tracepath6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/tracepath)) diff --git a/docs/parsers/systeminfo.md b/docs/parsers/systeminfo.md index b56fca72..aaa33bd6 100644 --- a/docs/parsers/systeminfo.md +++ b/docs/parsers/systeminfo.md @@ -1,9 +1,13 @@ +[Home](https://kellyjonbrazil.github.io/jc/) # jc.parsers.systeminfo jc - JSON CLI output utility `systeminfo` command output parser -Parses Windows "systeminfo" command. Multiline values such as -hotfixes or network cards are unparsed. +Blank or missing elements are set to `null`. + +The `original_install_date_epoch` and `system_boot_time_epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) + +The `original_install_date_epoch_utc` and `system_boot_time_epoch_utc` calculated timestamp fields are timezone-aware and are only available if the timezone field is UTC. Usage (cli): @@ -14,50 +18,188 @@ Usage (module): import jc.parsers.systeminfo result = jc.parsers.systeminfo.parse(systeminfo_command_output) -Compatibility: +Schema: - 'win32' + { + "host_name": string, + "os_name": string, + "os_version": string, + "os_manufacturer": string, + "os_configuration": string, + "os_build_type": string, + "registered_owner": string, + "registered_organization": string, + "product_id": string, + "original_install_date": string, + "original_install_date_epoch": integer, # naive timestamp + "original_install_date_epoch_utc": integer, # timezone-aware timestamp + "system_boot_time": string, + "system_boot_time_epoch": integer, # naive timestamp + "system_boot_time_epoch_utc": integer, # timezone-aware timestamp + "system_manufacturer": string, + "system_model": string, + "system_type": string, + "processors": [ + string + ], + "bios_version": string, + "windows_directory": string, + "system_directory": string, + "boot_device": string, + "system_locale": string, + "input_locale": string, + "time_zone": string, + "total_physical_memory_mb": string, + "available_physical_memory_mb": integer, + "virtual_memory_max_size_mb": integer, + "virtual_memory_available_mb": integer, + "virtual_memory_in_use_mb": integer, + "page_file_locations": string, + "domain": string, + "logon_server": string, + "hotfixs": [ + string + ], + "network_cards": [ + { + "name": string, + "connection_name": string, + "status": string, + "dhcp_enabled": boolean, + "dhcp_server": string, + "ip_addresses": [ + string + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": boolean, + "virtualization_enabled_in_firmware": boolean, + "second_level_address_translation": boolean, + "data_execution_prevention_available": boolean + } + } Examples: $ systeminfo | jc --systeminfo -p { - "host_name": "DESKTOP-WIN01", - "os_name": "Microsoft Windows 10 Enterprise", - "os_version": "10.0.19042 N/A Build 19042", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Member Workstation", - "os_build_type": "Multiprocessor Free", - "registered_owner": "User", - "registered_organization": "", - "product_id": "00111-12345-00001-AA111", - "original_install_date": "2/16/2021, 11:20:27 AM", - "system_boot_time": "3/19/2021, 9:25:03 AM", - "system_manufacturer": "VMware, Inc.", - "system_model": "VMware7,1", - "system_type": "x64-based PC", - "processors": "1 Processor(s) Installed. - [01]: ...", - "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", - "windows_directory": "C:\Windows", - "system_directory": "C:\Windows\system32", - "boot_device": "\Device\HarddiskVolume1", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory": "2,047 MB", - "available_physical_memory": "1,417 MB", - "virtual_memory_max_size": "2,687 MB", - "virtual_memory_available": "1,482 MB", - "virtual_memory_in_use": "1,205 MB", - "page_file_locations": "C:\pagefile.sys", - "domain": "TEST.local", - "logon_server": "\\WIN-AA1A1A11AAA", - "hotfixs": "6 Hotfix(s) Installed. - [01]: KB4578...", - "network_cards": "1 NIC(s) Installed. - [01]: Int...", - "hyperv_requirements": "A hypervisor has been detected. Features required fo..." + "host_name": "TESTLAPTOP", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.17134 N/A Build 17134", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Test, Inc.", + "registered_organization": "Test, Inc.", + "product_id": "11111-11111-11111-AA111", + "original_install_date": "3/26/2019, 3:51:30 PM", + "system_boot_time": "3/30/2021, 6:13:59 AM", + "system_manufacturer": "Dell Inc.", + "system_model": "Precision 5530", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Dell Inc. 1.16.2, 4/21/2020", + "windows_directory": "C:\WINDOWS", + "system_directory": "C:\WINDOWS\system32", + "boot_device": "\Device\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC+00:00) UTC", + "total_physical_memory_mb": 32503, + "available_physical_memory_mb": 19743, + "virtual_memory_max_size_mb": 37367, + "virtual_memory_available_mb": 22266, + "virtual_memory_in_use_mb": 15101, + "page_file_locations": "C:\pagefile.sys", + "domain": "test.com", + "logon_server": "\\TESTDC01", + "hotfixs": [ + "KB2693643", + "KB4601054" + ], + "network_cards": [ + { + "name": "Intel(R) Wireless-AC 9260 160MHz", + "connection_name": "Wi-Fi", + "status": null, + "dhcp_enabled": true, + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.219" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": true, + "virtualization_enabled_in_firmware": true, + "second_level_address_translation": false, + "data_execution_prevention_available": true + }, + "original_install_date_epoch": 1553640690, + "original_install_date_epoch_utc": 1553615490, + "system_boot_time_epoch": 1617110039, + "system_boot_time_epoch_utc": 1617084839 + } + + $ systeminfo | jc --systeminfo -p -r + { + "host_name": "TESTLAPTOP", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.17134 N/A Build 17134", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Test, Inc.", + "registered_organization": "Test, Inc.", + "product_id": "11111-11111-11111-AA111", + "original_install_date": "3/26/2019, 3:51:30 PM", + "system_boot_time": "3/30/2021, 6:13:59 AM", + "system_manufacturer": "Dell Inc.", + "system_model": "Precision 5530", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Dell Inc. 1.16.2, 4/21/2020", + "windows_directory": "C:\WINDOWS", + "system_directory": "C:\WINDOWS\system32", + "boot_device": "\Device\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC+00:00) UTC", + "total_physical_memory_mb": "32,503 MB", + "available_physical_memory_mb": "19,743 MB", + "virtual_memory_max_size_mb": "37,367 MB", + "virtual_memory_available_mb": "22,266 MB", + "virtual_memory_in_use_mb": "15,101 MB", + "page_file_locations": "C:\pagefile.sys", + "domain": "test.com", + "logon_server": "\\TESTDC01", + "hotfixs": [ + "KB2693643", + "KB4601054" + ], + "network_cards": [ + { + "name": "Intel(R) Wireless-AC 9260 160MHz", + "connection_name": "Wi-Fi", + "status": "", + "dhcp_enabled": "Yes", + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.219" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": "Yes", + "virtualization_enabled_in_firmware": "Yes", + "second_level_address_translation": "No", + "data_execution_prevention_available": "Yes" + } } @@ -67,61 +209,6 @@ info() ``` -## process -```python -process(proc_data) -``` - -Final processing to conform to the schema. - -Parameters: - - proc_data: (List of Dictionaries) raw structured data to process - -Returns: - - List of Dictionaries. Some keys are optional. Example: a non-virtualized server will not have - the "hyperv_requirements" key. Structured data with the following schema: - - [ - { - "host_name": "string", - "os_name": "string", - "os_version": "string", - "os_manufacturer": "string", - "os_configuration": "string", - "os_build_type": "string", - "registered_owner": "string", - "registered_organization": "string", - "product_id": "string", - "original_install_date": "string", - "system_boot_time": "string", - "system_manufacturer": "string", - "system_model": "string", - "system_type": "string", - "processors": "string", - "bios_version": "string", - "windows_directory": "string", - "system_directory": "string", - "boot_device": "string", - "system_locale": "string", - "input_locale": "string", - "time_zone": "string", - "total_physical_memory": "string", - "available_physical_memory": "string", - "virtual_memory_max_size": "string", - "virtual_memory_available": "string", - "virtual_memory_in_use": "string", - "page_file_locations": "string", - "domain": "string", - "logon_server": "string", - "hotfixs": "string", - "network_cards": "string", - "hyperv_requirements": "string" - } - ] - - ## parse ```python parse(data, raw=False, quiet=False) @@ -139,14 +226,7 @@ Returns: List of Dictionaries. Raw or processed structured data. +## Parser Information +Compatibility: win32 -## get_value_pos -```python -get_value_pos(line, delim) -``` - -Finds the first non-whitespace character after the delimiter -Parameters: - line: (string) Input string - delim: (string) The data delimiter - +Version 1.0 by Jon Smith (jon@rebelliondefense.com) diff --git a/jc/man/jc.1.gz b/jc/man/jc.1.gz index 3a4e97af7bb82878655f18f1ed4eefd34e6124b8..a8c976a82c53a9874eba4a1c30aba1b5ea85f95f 100644 GIT binary patch literal 2051 zcmV+e2>kaSiwFoHuy@IM@-Qip(xAksf z8?oDMu~{^fMA=LvQ6;H3I_!_XnIUB>Mj{3Gq4f;)%nOIZA%}@pAK87v&e;2R@6W<_ zKZa*Nva{&yr|3O9`gJ*(DLp(^U?w7ytrIWZl?4JQU8~7ECY*z8!0raxHhs}Gg&f| zXjxekp_4pG1kkLKl}OK8L@G0g)Tw*QRK}jNgq*gj(l`j!b=tlRvU0EZcuk6 z$`t1SeuF*~@ph1nkt-jCwjzz#yh6WBtEA!v)c_1+Wl@M!atnsx8^lOF(^W6uYOKu>l90W>bnW?Kvp}CXDt(jlRAo>t2AlyQm^B}re2Jm&Yz)=W681kf& z5Q5+iiMyTliX;x8QlkZjb~Fp8Z;}bkb15?*r7MTmRX;G!A7n~UqWZzfgQ*Jw6Lm+K zbVpRLm{yPhu@iLkUZ73!KFP3tF5AJgt+X3VD&4N%fd=!4vXkZK*R7+<Kj1%^h(8&A z=$F1%u``B5KlFii*l(g4edc*BUY|tHjXO_}@C6ykxL<$n9LdcP3{C})1ZoIesMLdj z8Um}#W7R-0EmU2)ITFa4U+AgyY^Q6z2EOS#f>U(CwFWzwiNdKAlYgd@W;cr$Aw-r*T8Zav_t)f}24Zr!1~ z0`cwC^%-*BDp zNQu9-r7Ee5w%hKip{rh@N|kJ&Yj0l$x(K?PLi21b_RzAlFJS0E`(8_7aaPb4L2qx^ zmg^Eu9@9lqUTMB%od9*e(=`NUZtztAx3?~w&(t7a&OT3X=CkX|*(&&|YU<8SB@&r6 zEUDqXh}YFzX~P~Rr=}cq{yO1{yn$J|8t1XVZnVbi~&d5Li@gN#psc+=-zfO_gDxL25 zvMyp+&6af*JR1bRZ-f@@e7P3qIE6TeL;?3tk@Iy=u7_9B%1?uQ5wn zHfead*T9>dh?eV(eP+uIbu7ApXLjAtfpxEH?}HmT@Wc&v{n>7$buy6Vz^5YPbxucc z@E?4)dg4Wui&K2GF~YVlJ|5=db{^11-meKda@v{RsrTcQCW23J-4*o8PG9+@!a<2U z`LtZkulx0W71yxkbbf5A5BRK4yC9&x7 z&N@C%9ACQJd-0cxU)To@0lwIMUQ*fhvc5Wh8DB51E`!`KIuY?Wbx+y*7Le_Z6nf6C z=}j3;96W3XUJ9YCt1xi8`=xWOBerQx`MWFmH~zHxIKP1=H;2%E(EPtLXU7l7-K#Pt z{@?3@%RGYGei8&5Yb$d;8m%GJb&P|f=V-`xzrE*+uQ$_QKCXg^sv4>u>^M1L@86yM hJ;XmLu&zMj{6NkYt8>=7q!Iki#U4OLm{KQ}*Hghtv4| zkMZeW*=ch6Q*z3Vew$AxY;-kds<8G^|u5dV+qz z*rQanVW}#>v+OUXb=4}bar$WiDib!$t z5@m*S0KY*Wig-K7E|DuAg|;F~*t9~wOsk~g2GsxzWMxr^OmYi`;TyzAJkuo&TZ30+ z!j31(inHAZo=a{ZsvHDLWtpj~N};)TiCZ(jl2P(8nnAdQHfK?CGmqfwVuqs-f;i@B zB_RaS9TImt?G;HJK&3_t4((_bkKZH{o99v{Af+pZ*Hu4onLo&kphWe9(+5)*1SaZ^ zGU<+}UNNm81C~zE(R+b5#rq`V`nhZe&$iNTFsXFAeg_)NBg&5EpI^6Jb4 ztsHO_fXTJP$#n>*Jx~XLh0H{%GVf^11%#@Hb(}j1AX%IT@Gj0--47Eb#qed7G5(D0jOznZy;_IeQ>kknc8*)+(3`WhMNuH zk?8jw5q`^g@&L|`?~3dv+<_;s5dlLK_>sIj(3DCjrz@YAJ1$^e8mn~UL>wIuP{x{l zEQsxigs(iIvLja=*IOnaQc_JGPsTmgE69XgIDcCvpmrM@ID(wSmSy6R{Q`u315(rT=whFog=vk!QfQzNT5RCLS-Hd zR0ynA9;*Vyv`}^F=15dOxD*yPxPyB-AYiNS4h;m01IHy^Jhs_B!yVs~;uRD#f+OMA z2g#oUc4QUj(l0GA44JTq+4xd~BFF?pTozP;EPxW|4@jZ{;Hrqfy9*JJ4CsFRVf_r2 zPve|60jGCa5KaNpnAEys(vd;96-7tFac>lg^ZVy=w6t-!By=>GmoylaJ_!4ECH3kh zEp;g^o!bFLRu(QL2DQ#NuIYr`Gr>+lc-&D2Gd%n0fmJl|k-coX5A2u#h@cJ{ddj6TVh?zxh>~j~@(T1oTfy$)4a2&RE`P&yz9S|6`jx4)F50%a ztA_4ug(_9Lf%dy?@w*7RWI`8gEjGilv@c-jWcpr9VR2T_-$0XY*p}-Oju6vDQeJ7k zWt{+ZztepJW^S;(mnBT0a6VI~dolSuzL`$0FD8rVtE#EZHkC-_s$ppj7eBmr=1Lp( zC^>c4p!2uUx6$-!dNaqsLN6epJ;PYAN3JDarV_SzBa&JEK<^v1cKOB(Y-J6#A%n`G z@sZ#W??DFNJJ9?}<+8N-ad!9V;68Oo;|fHcfe?IdFd3buqhVDsIH@>; zJ{^uL=!1^@3}bdB%lc^m=jIb7$`6;*>x)4`f_RzHVsKz10-=JZ(|HGfC6}7(W&nnA znYu@~xqHueN&I(N!X?Q#1y|G2@M<`loevko+uQrJ{ppBMysln~3O;_p*;{5@Ly2$f z1`NaHz0O_FVG{Pqh<3-{oM2raTn;IyqFQGAjQ1bGVfVg>MUQvZ@p4?uLdn13r^V&;2D;T8Li diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index 4ad12f0d..cfaa5b84 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -1,5 +1,11 @@ """jc - JSON CLI output utility `systeminfo` command output parser +Blank or missing elements are set to `null`. + +The `original_install_date_epoch` and `system_boot_time_epoch` calculated timestamp fields are naive (i.e. based on the local time of the system the parser is run on) + +The `original_install_date_epoch_utc` and `system_boot_time_epoch_utc` calculated timestamp fields are timezone-aware and are only available if the timezone field is UTC. + Usage (cli): $ systeminfo | jc --systeminfo @@ -9,128 +15,188 @@ Usage (module): import jc.parsers.systeminfo result = jc.parsers.systeminfo.parse(systeminfo_command_output) -Examples: +Schema: - $ systeminfo | jc --systeminfo -p -r { - "host_name": "DESKTOP-WIN01", - "os_name": "Microsoft Windows 10 Enterprise", - "os_version": "10.0.19042 N/A Build 19042", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Member Workstation", - "os_build_type": "Multiprocessor Free", - "registered_owner": "User", - "registered_organization": "", - "product_id": "00111-12345-00001-AA111", - "original_install_date": "2/16/2021, 11:20:27 AM", - "system_boot_time": "3/19/2021, 9:25:03 AM", - "system_manufacturer": "VMware, Inc.", - "system_model": "VMware7,1", - "system_type": "x64-based PC", - "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], - "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", - "windows_directory": "C:\\Windows", - "system_directory": "C:\\Windows\\system32", - "boot_device": "\\Device\\HarddiskVolume1", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory_mb": "2,047 MB", - "available_physical_memory_mb": "1,417 MB", - "virtual_memory_max_size_mb": "2,687 MB", - "virtual_memory_available_mb": "1,482 MB", - "virtual_memory_in_use_mb": "1,205 MB", - "page_file_locations": "C:\\pagefile.sys", - "domain": "TEST.local", - "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": [ - "KB4578968", - "KB4562830", - "KB4570334", - "KB4580325", - "KB4586864", - "KB4594440" - ], - "network_cards": [ - { - "name": "Intel(R) 82574L Gigabit Network Connection", - "connection_name": "Ethernet0", - "status": "", - "dhcp_enabled": "Yes", - "dhcp_server": "192.168.133.250", - "ip_addresses": [ - "192.168.133.3", - "fe80::192:eb64:1fcf:86eb" - ] - } - ], - "hyperv_requirements": { - "vm_monitor_mode_extensions": "Yes", - "virtualization_enabled_in_firmware": "Yes", - "second_level_address_translation": "No", - "data_execution_prevention_available": "Yes" + "host_name": string, + "os_name": string, + "os_version": string, + "os_manufacturer": string, + "os_configuration": string, + "os_build_type": string, + "registered_owner": string, + "registered_organization": string, + "product_id": string, + "original_install_date": string, + "original_install_date_epoch": integer, # naive timestamp + "original_install_date_epoch_utc": integer, # timezone-aware timestamp + "system_boot_time": string, + "system_boot_time_epoch": integer, # naive timestamp + "system_boot_time_epoch_utc": integer, # timezone-aware timestamp + "system_manufacturer": string, + "system_model": string, + "system_type": string, + "processors": [ + string + ], + "bios_version": string, + "windows_directory": string, + "system_directory": string, + "boot_device": string, + "system_locale": string, + "input_locale": string, + "time_zone": string, + "total_physical_memory_mb": string, + "available_physical_memory_mb": integer, + "virtual_memory_max_size_mb": integer, + "virtual_memory_available_mb": integer, + "virtual_memory_in_use_mb": integer, + "page_file_locations": string, + "domain": string, + "logon_server": string, + "hotfixs": [ + string + ], + "network_cards": [ + { + "name": string, + "connection_name": string, + "status": string, + "dhcp_enabled": boolean, + "dhcp_server": string, + "ip_addresses": [ + string + ] } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": boolean, + "virtualization_enabled_in_firmware": boolean, + "second_level_address_translation": boolean, + "data_execution_prevention_available": boolean + } } +Examples: + $ systeminfo | jc --systeminfo -p { - "host_name": "DESKTOP-WIN01", - "os_name": "Microsoft Windows 10 Enterprise", - "os_version": "10.0.19042 N/A Build 19042", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Member Workstation", - "os_build_type": "Multiprocessor Free", - "registered_owner": "User", - "registered_organization": "", - "product_id": "00111-12345-00001-AA111", - "original_install_date": 1613496027, - "system_boot_time": 1616163903, - "system_manufacturer": "VMware, Inc.", - "system_model": "VMware7,1", - "system_type": "x64-based PC", - "processors": ["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"], - "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", - "windows_directory": "C:\\Windows", - "system_directory": "C:\\Windows\\system32", - "boot_device": "\\Device\\HarddiskVolume1", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory_mb": 2047, - "available_physical_memory_mb": 1417, - "virtual_memory_max_size_mb": 2687, - "virtual_memory_available_mb": 1482, - "virtual_memory_in_use_mb": 1205", - "page_file_locations": "C:\\pagefile.sys", - "domain": "TEST.local", - "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": [ - "KB4578968", - "KB4562830", - "KB4570334", - "KB4580325", - "KB4586864", - "KB4594440" - ], - "network_cards": [ - { - "name": "Intel(R) 82574L Gigabit Network Connection", - "connection_name": "Ethernet0", - "status": "", - "dhcp_enabled": true, - "dhcp_server": "192.168.133.250", - "ip_addresses": [ - "192.168.133.3", - "fe80::192:eb64:1fcf:86eb" - ] - } - ], - "hyperv_requirements": { - "vm_monitor_mode_extensions": "Yes", - "virtualization_enabled_in_firmware": "Yes", - "second_level_address_translation": "No", - "data_execution_prevention_available": "Yes" + "host_name": "TESTLAPTOP", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.17134 N/A Build 17134", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Test, Inc.", + "registered_organization": "Test, Inc.", + "product_id": "11111-11111-11111-AA111", + "original_install_date": "3/26/2019, 3:51:30 PM", + "system_boot_time": "3/30/2021, 6:13:59 AM", + "system_manufacturer": "Dell Inc.", + "system_model": "Precision 5530", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Dell Inc. 1.16.2, 4/21/2020", + "windows_directory": "C:\\WINDOWS", + "system_directory": "C:\\WINDOWS\\system32", + "boot_device": "\\Device\\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC+00:00) UTC", + "total_physical_memory_mb": 32503, + "available_physical_memory_mb": 19743, + "virtual_memory_max_size_mb": 37367, + "virtual_memory_available_mb": 22266, + "virtual_memory_in_use_mb": 15101, + "page_file_locations": "C:\\pagefile.sys", + "domain": "test.com", + "logon_server": "\\\\TESTDC01", + "hotfixs": [ + "KB2693643", + "KB4601054" + ], + "network_cards": [ + { + "name": "Intel(R) Wireless-AC 9260 160MHz", + "connection_name": "Wi-Fi", + "status": null, + "dhcp_enabled": true, + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.219" + ] } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": true, + "virtualization_enabled_in_firmware": true, + "second_level_address_translation": false, + "data_execution_prevention_available": true + }, + "original_install_date_epoch": 1553640690, + "original_install_date_epoch_utc": 1553615490, + "system_boot_time_epoch": 1617110039, + "system_boot_time_epoch_utc": 1617084839 + } + + $ systeminfo | jc --systeminfo -p -r + { + "host_name": "TESTLAPTOP", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.17134 N/A Build 17134", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Test, Inc.", + "registered_organization": "Test, Inc.", + "product_id": "11111-11111-11111-AA111", + "original_install_date": "3/26/2019, 3:51:30 PM", + "system_boot_time": "3/30/2021, 6:13:59 AM", + "system_manufacturer": "Dell Inc.", + "system_model": "Precision 5530", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Dell Inc. 1.16.2, 4/21/2020", + "windows_directory": "C:\\WINDOWS", + "system_directory": "C:\\WINDOWS\\system32", + "boot_device": "\\Device\\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC+00:00) UTC", + "total_physical_memory_mb": "32,503 MB", + "available_physical_memory_mb": "19,743 MB", + "virtual_memory_max_size_mb": "37,367 MB", + "virtual_memory_available_mb": "22,266 MB", + "virtual_memory_in_use_mb": "15,101 MB", + "page_file_locations": "C:\\pagefile.sys", + "domain": "test.com", + "logon_server": "\\\\TESTDC01", + "hotfixs": [ + "KB2693643", + "KB4601054" + ], + "network_cards": [ + { + "name": "Intel(R) Wireless-AC 9260 160MHz", + "connection_name": "Wi-Fi", + "status": "", + "dhcp_enabled": "Yes", + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.219" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": "Yes", + "virtualization_enabled_in_firmware": "Yes", + "second_level_address_translation": "No", + "data_execution_prevention_available": "Yes" + } } """ import re @@ -166,65 +232,23 @@ def _process(proc_data): will not have a 'hyperv_requirements' key, and a system already running hyper-v will have an empty "hyperv_requirements" object. - Structured data with the following schema: - - { - "host_name": "string", - "os_name": "string", - "os_version": "string", - "os_manufacturer": "string", - "os_configuration": "string", - "os_build_type": "string", - "registered_owner": "string", - "registered_organization": "string", - "product_id": "string", - "original_install_date": integer, # naive timestamp - "system_boot_time": integer, # naive timestamp - "system_manufacturer": "string", - "system_model": "string", - "system_type": "string", - "processors": ["string"], - "bios_version": "string", - "windows_directory": "string", - "system_directory": "string", - "boot_device": "string", - "system_locale": "string", - "input_locale": "string", - "time_zone": "string", - "total_physical_memory_mb": "string", - "available_physical_memory_mb": integer, - "virtual_memory_max_size_mb": integer, - "virtual_memory_available_mb": integer, - "virtual_memory_in_use_mb": integer, - "page_file_locations": "string", - "domain": "string", - "logon_server": "string", - "hotfixs": ["string"], - "network_cards": [ - { - "name": "string", - "connection_name": "string", - "status": "string", - "dhcp_enabled": boolean, - "dhcp_server": "string", - "ip_addresses": ["string"] - } - ], - "hyperv_requirements": { - "vm_monitor_mode_extensions": boolean, - "virtualization_enabled_in_firmware": boolean, - "second_level_address_translation": boolean, - "data_execution_prevention_available": boolean - } - } + Structured data to conform to the schema. """ + # convert empty strings to None/null + for item in proc_data: + if isinstance(proc_data[item], str) and not proc_data[item]: + proc_data[item] = None - # rebuild output for added semantic information for i, nic in enumerate(proc_data["network_cards"]): proc_data["network_cards"][i]["dhcp_enabled"] = _convert_to_boolean( nic["dhcp_enabled"] ) + # convert empty strings to None/null + for item in nic: + if isinstance(nic[item], str) and not nic[item]: + proc_data["network_cards"][i][item] = None + int_list = [ "total_physical_memory_mb", "available_physical_memory_mb", @@ -242,9 +266,10 @@ def _process(proc_data): # convert # from: (UTC-08:00) Pacific Time (US & Canada) # to: (UTC-0800) - tz_fields = tz.split(" ") + tz_fields = tz.split() tz = " " + tz_fields[0].replace(":", "") - proc_data[key] = jc.utils.timestamp(f"{proc_data.get(key)}{tz}").naive + proc_data[key + '_epoch'] = jc.utils.timestamp(f"{proc_data.get(key)}{tz}").naive + proc_data[key + '_epoch_utc'] = jc.utils.timestamp(f"{proc_data.get(key)}{tz}").utc hyperv_key = "hyperv_requirements" hyperv_subkey_list = [ diff --git a/jc/utils.py b/jc/utils.py index 51164423..e6d88f74 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -65,7 +65,7 @@ def compatibility(mod_name, compatible): mod = mod_name.split('.')[-1] compat_list = ', '.join(compatible) warning_message(f'{mod} parser not compatible with your OS ({sys.platform}).\n' - f' Compatible platforms: {compat_list}') + f' Compatible platforms: {compat_list}') def has_data(data): @@ -163,6 +163,8 @@ class timestamp: {'id': 1000, 'format': '%a %b %d %H:%M:%S %Y', 'locale': None}, # manual C locale format conversion: Tue Mar 23 16:12:11 2021 or Tue Mar 23 16:12:11 IST 2021 {'id': 1500, 'format': '%Y-%m-%d %H:%M', 'locale': None}, # en_US.UTF-8 local format (found in who cli output): 2021-03-23 00:14 {'id': 1600, 'format': '%m/%d/%Y %I:%M %p', 'locale': None}, # Windows english format (found in dir cli output): 12/07/2019 02:09 AM + {'id': 1700, 'format': '%m/%d/%Y, %I:%M:%S %p', 'locale': None}, # Windows english format wint non-UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC-0600) + {'id': 1710, 'format': '%m/%d/%Y, %I:%M:%S %p UTC%z', 'locale': None}, # Windows english format with UTC tz (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC+0000) {'id': 2000, 'format': '%a %d %b %Y %I:%M:%S %p %Z', 'locale': None}, # en_US.UTF-8 local format (found in upower cli output): Tue 23 Mar 2021 04:12:11 PM UTC {'id': 3000, 'format': '%a %d %b %Y %I:%M:%S %p', 'locale': None}, # en_US.UTF-8 local format with non-UTC tz (found in upower cli output): Tue 23 Mar 2021 04:12:11 PM IST {'id': 4000, 'format': '%A %d %B %Y %I:%M:%S %p %Z', 'locale': None}, # European-style local format (found in upower cli output): Tuesday 01 October 2019 12:50:41 PM UTC @@ -177,7 +179,6 @@ class timestamp: {'id': 8100, 'format': '%a %d %b %Y %H:%M:%S', 'locale': ''}, # current locale format with non-UTC tz (found in upower cli output): # mar. 23 mars 2021 19:12:11 EDT {'id': 8200, 'format': '%A %d %B %Y, %H:%M:%S UTC%z', 'locale': ''}, # fr_FR.utf8 locale format (found in date cli output): vendredi 26 mars 2021, 13:26:46 (UTC+0000) {'id': 8300, 'format': '%A %d %B %Y, %H:%M:%S', 'locale': ''}, # fr_FR.utf8 locale format with non-UTC tz (found in date cli output): vendredi 26 mars 2021, 13:26:46 (UTC-0400) - {'id': 8400, 'format': '%m/%d/%Y, %I:%M:%S %p', 'locale': ''}, # Windows english format (found in systeminfo cli output): 3/22/2021, 1:15:51 PM (UTC-0600) {'id': 9000, 'format': '%c', 'locale': ''} # locally configured locale format conversion: Could be anything :) this is a last-gasp attempt ] diff --git a/man/jc.1.gz b/man/jc.1.gz index 3a4e97af7bb82878655f18f1ed4eefd34e6124b8..a8c976a82c53a9874eba4a1c30aba1b5ea85f95f 100644 GIT binary patch literal 2051 zcmV+e2>kaSiwFoHuy@IM@-Qip(xAksf z8?oDMu~{^fMA=LvQ6;H3I_!_XnIUB>Mj{3Gq4f;)%nOIZA%}@pAK87v&e;2R@6W<_ zKZa*Nva{&yr|3O9`gJ*(DLp(^U?w7ytrIWZl?4JQU8~7ECY*z8!0raxHhs}Gg&f| zXjxekp_4pG1kkLKl}OK8L@G0g)Tw*QRK}jNgq*gj(l`j!b=tlRvU0EZcuk6 z$`t1SeuF*~@ph1nkt-jCwjzz#yh6WBtEA!v)c_1+Wl@M!atnsx8^lOF(^W6uYOKu>l90W>bnW?Kvp}CXDt(jlRAo>t2AlyQm^B}re2Jm&Yz)=W681kf& z5Q5+iiMyTliX;x8QlkZjb~Fp8Z;}bkb15?*r7MTmRX;G!A7n~UqWZzfgQ*Jw6Lm+K zbVpRLm{yPhu@iLkUZ73!KFP3tF5AJgt+X3VD&4N%fd=!4vXkZK*R7+<Kj1%^h(8&A z=$F1%u``B5KlFii*l(g4edc*BUY|tHjXO_}@C6ykxL<$n9LdcP3{C})1ZoIesMLdj z8Um}#W7R-0EmU2)ITFa4U+AgyY^Q6z2EOS#f>U(CwFWzwiNdKAlYgd@W;cr$Aw-r*T8Zav_t)f}24Zr!1~ z0`cwC^%-*BDp zNQu9-r7Ee5w%hKip{rh@N|kJ&Yj0l$x(K?PLi21b_RzAlFJS0E`(8_7aaPb4L2qx^ zmg^Eu9@9lqUTMB%od9*e(=`NUZtztAx3?~w&(t7a&OT3X=CkX|*(&&|YU<8SB@&r6 zEUDqXh}YFzX~P~Rr=}cq{yO1{yn$J|8t1XVZnVbi~&d5Li@gN#psc+=-zfO_gDxL25 zvMyp+&6af*JR1bRZ-f@@e7P3qIE6TeL;?3tk@Iy=u7_9B%1?uQ5wn zHfead*T9>dh?eV(eP+uIbu7ApXLjAtfpxEH?}HmT@Wc&v{n>7$buy6Vz^5YPbxucc z@E?4)dg4Wui&K2GF~YVlJ|5=db{^11-meKda@v{RsrTcQCW23J-4*o8PG9+@!a<2U z`LtZkulx0W71yxkbbf5A5BRK4yC9&x7 z&N@C%9ACQJd-0cxU)To@0lwIMUQ*fhvc5Wh8DB51E`!`KIuY?Wbx+y*7Le_Z6nf6C z=}j3;96W3XUJ9YCt1xi8`=xWOBerQx`MWFmH~zHxIKP1=H;2%E(EPtLXU7l7-K#Pt z{@?3@%RGYGei8&5Yb$d;8m%GJb&P|f=V-`xzrE*+uQ$_QKCXg^sv4>u>^M1L@86yM hJ;XmLu&zMj{6NkYt8>=7q!Iki#U4OLm{KQ}*Hghtv4| zkMZeW*=ch6Q*z3Vew$AxY;-kds<8G^|u5dV+qz z*rQanVW}#>v+OUXb=4}bar$WiDib!$t z5@m*S0KY*Wig-K7E|DuAg|;F~*t9~wOsk~g2GsxzWMxr^OmYi`;TyzAJkuo&TZ30+ z!j31(inHAZo=a{ZsvHDLWtpj~N};)TiCZ(jl2P(8nnAdQHfK?CGmqfwVuqs-f;i@B zB_RaS9TImt?G;HJK&3_t4((_bkKZH{o99v{Af+pZ*Hu4onLo&kphWe9(+5)*1SaZ^ zGU<+}UNNm81C~zE(R+b5#rq`V`nhZe&$iNTFsXFAeg_)NBg&5EpI^6Jb4 ztsHO_fXTJP$#n>*Jx~XLh0H{%GVf^11%#@Hb(}j1AX%IT@Gj0--47Eb#qed7G5(D0jOznZy;_IeQ>kknc8*)+(3`WhMNuH zk?8jw5q`^g@&L|`?~3dv+<_;s5dlLK_>sIj(3DCjrz@YAJ1$^e8mn~UL>wIuP{x{l zEQsxigs(iIvLja=*IOnaQc_JGPsTmgE69XgIDcCvpmrM@ID(wSmSy6R{Q`u315(rT=whFog=vk!QfQzNT5RCLS-Hd zR0ynA9;*Vyv`}^F=15dOxD*yPxPyB-AYiNS4h;m01IHy^Jhs_B!yVs~;uRD#f+OMA z2g#oUc4QUj(l0GA44JTq+4xd~BFF?pTozP;EPxW|4@jZ{;Hrqfy9*JJ4CsFRVf_r2 zPve|60jGCa5KaNpnAEys(vd;96-7tFac>lg^ZVy=w6t-!By=>GmoylaJ_!4ECH3kh zEp;g^o!bFLRu(QL2DQ#NuIYr`Gr>+lc-&D2Gd%n0fmJl|k-coX5A2u#h@cJ{ddj6TVh?zxh>~j~@(T1oTfy$)4a2&RE`P&yz9S|6`jx4)F50%a ztA_4ug(_9Lf%dy?@w*7RWI`8gEjGilv@c-jWcpr9VR2T_-$0XY*p}-Oju6vDQeJ7k zWt{+ZztepJW^S;(mnBT0a6VI~dolSuzL`$0FD8rVtE#EZHkC-_s$ppj7eBmr=1Lp( zC^>c4p!2uUx6$-!dNaqsLN6epJ;PYAN3JDarV_SzBa&JEK<^v1cKOB(Y-J6#A%n`G z@sZ#W??DFNJJ9?}<+8N-ad!9V;68Oo;|fHcfe?IdFd3buqhVDsIH@>; zJ{^uL=!1^@3}bdB%lc^m=jIb7$`6;*>x)4`f_RzHVsKz10-=JZ(|HGfC6}7(W&nnA znYu@~xqHueN&I(N!X?Q#1y|G2@M<`loevko+uQrJ{ppBMysln~3O;_p*;{5@Ly2$f z1`NaHz0O_FVG{Pqh<3-{oM2raTn;IyqFQGAjQ1bGVfVg>MUQvZ@p4?uLdn13r^V&;2D;T8Li diff --git a/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.json b/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.json new file mode 100644 index 00000000..7960452f --- /dev/null +++ b/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.json @@ -0,0 +1 @@ +{"host_name":"TESTLAPTOP","os_name":"Microsoft Windows 10 Enterprise","os_version":"10.0.17134 N/A Build 17134","os_manufacturer":"Microsoft Corporation","os_configuration":"Member Workstation","os_build_type":"Multiprocessor Free","registered_owner":"Test, Inc.","registered_organization":"Test, Inc.","product_id":"11111-11111-11111-AA111","original_install_date":"3/26/2019, 3:51:30 PM","system_boot_time":"3/30/2021, 6:13:59 AM","system_manufacturer":"Dell Inc.","system_model":"Precision 5530","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz"],"bios_version":"Dell Inc. 1.16.2, 4/21/2020","windows_directory":"C:\\WINDOWS","system_directory":"C:\\WINDOWS\\system32","boot_device":"\\Device\\HarddiskVolume2","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC+00:00) UTC","total_physical_memory_mb":32503,"available_physical_memory_mb":19743,"virtual_memory_max_size_mb":37367,"virtual_memory_available_mb":22266,"virtual_memory_in_use_mb":15101,"page_file_locations":"C:\\pagefile.sys","domain":"test.com","logon_server":"\\\\TESTDC01","hotfixs":["KB2693643","KB4601054","KB4230204","KB4346084","KB4485449","KB4486153","KB4509094","KB4535680","KB4580325","KB4580398","KB4534293"],"network_cards":[{"name":"Intel(R) Wireless-AC 9260 160MHz","connection_name":"Wi-Fi","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.2.1","ip_addresses":["192.168.2.219"]},{"name":"Bluetooth Device (Personal Area Network)","connection_name":"Bluetooth Network Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Microsoft KM-TEST Loopback Adapter","connection_name":"Npcap Loopback Adapter","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["169.254.161.245"]},{"name":"Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64","connection_name":"Ethernet 5","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (InternalVM)","status":null,"dhcp_enabled":false,"dhcp_server":null,"ip_addresses":["172.16.32.1"]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (Default Switch) 2","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["172.26.251.65"]}],"hyperv_requirements":{"vm_monitor_mode_extensions":true,"virtualization_enabled_in_firmware":true,"second_level_address_translation":false,"data_execution_prevention_available":true},"original_install_date_epoch":1553640690,"original_install_date_epoch_utc":1553615490,"system_boot_time_epoch":1617110039,"system_boot_time_epoch_utc":1617084839} diff --git a/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.out b/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.out new file mode 100644 index 00000000..f0591709 --- /dev/null +++ b/tests/fixtures/windows/windows-10/systeminfo-hyperv-utc.out @@ -0,0 +1,79 @@ + +Host Name: TESTLAPTOP +OS Name: Microsoft Windows 10 Enterprise +OS Version: 10.0.17134 N/A Build 17134 +OS Manufacturer: Microsoft Corporation +OS Configuration: Member Workstation +OS Build Type: Multiprocessor Free +Registered Owner: Test, Inc. +Registered Organization: Test, Inc. +Product ID: 11111-11111-11111-AA111 +Original Install Date: 3/26/2019, 3:51:30 PM +System Boot Time: 3/30/2021, 6:13:59 AM +System Manufacturer: Dell Inc. +System Model: Precision 5530 +System Type: x64-based PC +Processor(s): 1 Processor(s) Installed. + [01]: Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz +BIOS Version: Dell Inc. 1.16.2, 4/21/2020 +Windows Directory: C:\WINDOWS +System Directory: C:\WINDOWS\system32 +Boot Device: \Device\HarddiskVolume2 +System Locale: en-us;English (United States) +Input Locale: en-us;English (United States) +Time Zone: (UTC+00:00) UTC +Total Physical Memory: 32,503 MB +Available Physical Memory: 19,743 MB +Virtual Memory: Max Size: 37,367 MB +Virtual Memory: Available: 22,266 MB +Virtual Memory: In Use: 15,101 MB +Page File Location(s): C:\pagefile.sys +Domain: test.com +Logon Server: \\TESTDC01 +Hotfix(s): 11 Hotfix(s) Installed. + [01]: KB2693643 + [02]: KB4601054 + [03]: KB4230204 + [04]: KB4346084 + [05]: KB4485449 + [06]: KB4486153 + [07]: KB4509094 + [08]: KB4535680 + [09]: KB4580325 + [10]: KB4580398 + [11]: KB4534293 +Network Card(s): 6 NIC(s) Installed. + [01]: Intel(R) Wireless-AC 9260 160MHz + Connection Name: Wi-Fi + DHCP Enabled: Yes + DHCP Server: 192.168.2.1 + IP address(es) + [01]: 192.168.2.219 + [02]: Bluetooth Device (Personal Area Network) + Connection Name: Bluetooth Network Connection + Status: Media disconnected + [03]: Microsoft KM-TEST Loopback Adapter + Connection Name: Npcap Loopback Adapter + DHCP Enabled: Yes + DHCP Server: 255.255.255.255 + IP address(es) + [01]: 169.254.161.245 + [04]: Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64 + Connection Name: Ethernet 5 + Status: Hardware not present + [05]: Hyper-V Virtual Ethernet Adapter + Connection Name: vEthernet (InternalVM) + DHCP Enabled: No + IP address(es) + [01]: 172.16.32.1 + [06]: Hyper-V Virtual Ethernet Adapter + Connection Name: vEthernet (Default Switch) 2 + DHCP Enabled: Yes + DHCP Server: 255.255.255.255 + IP address(es) + [01]: 172.26.251.65 +Hyper-V Requirements: VM Monitor Mode Extensions: Yes + Virtualization Enabled In Firmware: Yes + Second Level Address Translation: No + Data Execution Prevention Available: Yes + diff --git a/tests/fixtures/windows/windows-10/systeminfo-hyperv.json b/tests/fixtures/windows/windows-10/systeminfo-hyperv.json index 020e9c71..236dceb7 100644 --- a/tests/fixtures/windows/windows-10/systeminfo-hyperv.json +++ b/tests/fixtures/windows/windows-10/systeminfo-hyperv.json @@ -1,111 +1 @@ -{ - "host_name": "TESTLAPTOP", - "os_name": "Microsoft Windows 10 Enterprise", - "os_version": "10.0.17134 N/A Build 17134", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Member Workstation", - "os_build_type": "Multiprocessor Free", - "registered_owner": "Test, Inc.", - "registered_organization": "Test, Inc.", - "product_id": "11111-11111-11111-AA111", - "original_install_date": 1553640690, - "system_boot_time": 1617110039, - "system_manufacturer": "Dell Inc.", - "system_model": "Precision 5530", - "system_type": "x64-based PC", - "processors": [ - "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" - ], - "bios_version": "Dell Inc. 1.16.2, 4/21/2020", - "windows_directory": "C:\\WINDOWS", - "system_directory": "C:\\WINDOWS\\system32", - "boot_device": "\\Device\\HarddiskVolume2", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC-06:00) Central Time (US & Canada)", - "total_physical_memory_mb": 32503, - "available_physical_memory_mb": 19743, - "virtual_memory_max_size_mb": 37367, - "virtual_memory_available_mb": 22266, - "virtual_memory_in_use_mb": 15101, - "page_file_locations": "C:\\pagefile.sys", - "domain": "test.com", - "logon_server": "\\\\TESTDC01", - "hotfixs": [ - "KB2693643", - "KB4601054", - "KB4230204", - "KB4346084", - "KB4485449", - "KB4486153", - "KB4509094", - "KB4535680", - "KB4580325", - "KB4580398", - "KB4534293" - ], - "network_cards": [ - { - "name": "Intel(R) Wireless-AC 9260 160MHz", - "connection_name": "Wi-Fi", - "status": "", - "dhcp_enabled": true, - "dhcp_server": "192.168.2.1", - "ip_addresses": [ - "192.168.2.219" - ] - }, - { - "name": "Bluetooth Device (Personal Area Network)", - "connection_name": "Bluetooth Network Connection", - "status": "Media disconnected", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [] - }, - { - "name": "Microsoft KM-TEST Loopback Adapter", - "connection_name": "Npcap Loopback Adapter", - "status": "", - "dhcp_enabled": true, - "dhcp_server": "255.255.255.255", - "ip_addresses": [ - "169.254.161.245" - ] - }, - { - "name": "Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64", - "connection_name": "Ethernet 5", - "status": "Hardware not present", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [] - }, - { - "name": "Hyper-V Virtual Ethernet Adapter", - "connection_name": "vEthernet (InternalVM)", - "status": "", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [ - "172.16.32.1" - ] - }, - { - "name": "Hyper-V Virtual Ethernet Adapter", - "connection_name": "vEthernet (Default Switch) 2", - "status": "", - "dhcp_enabled": true, - "dhcp_server": "255.255.255.255", - "ip_addresses": [ - "172.26.251.65" - ] - } - ], - "hyperv_requirements": { - "vm_monitor_mode_extensions": true, - "virtualization_enabled_in_firmware": true, - "second_level_address_translation": false, - "data_execution_prevention_available": true - } -} +{"host_name":"TESTLAPTOP","os_name":"Microsoft Windows 10 Enterprise","os_version":"10.0.17134 N/A Build 17134","os_manufacturer":"Microsoft Corporation","os_configuration":"Member Workstation","os_build_type":"Multiprocessor Free","registered_owner":"Test, Inc.","registered_organization":"Test, Inc.","product_id":"11111-11111-11111-AA111","original_install_date":"3/26/2019, 3:51:30 PM","system_boot_time":"3/30/2021, 6:13:59 AM","system_manufacturer":"Dell Inc.","system_model":"Precision 5530","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz"],"bios_version":"Dell Inc. 1.16.2, 4/21/2020","windows_directory":"C:\\WINDOWS","system_directory":"C:\\WINDOWS\\system32","boot_device":"\\Device\\HarddiskVolume2","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC-06:00) Central Time (US & Canada)","total_physical_memory_mb":32503,"available_physical_memory_mb":19743,"virtual_memory_max_size_mb":37367,"virtual_memory_available_mb":22266,"virtual_memory_in_use_mb":15101,"page_file_locations":"C:\\pagefile.sys","domain":"test.com","logon_server":"\\\\TESTDC01","hotfixs":["KB2693643","KB4601054","KB4230204","KB4346084","KB4485449","KB4486153","KB4509094","KB4535680","KB4580325","KB4580398","KB4534293"],"network_cards":[{"name":"Intel(R) Wireless-AC 9260 160MHz","connection_name":"Wi-Fi","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.2.1","ip_addresses":["192.168.2.219"]},{"name":"Bluetooth Device (Personal Area Network)","connection_name":"Bluetooth Network Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Microsoft KM-TEST Loopback Adapter","connection_name":"Npcap Loopback Adapter","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["169.254.161.245"]},{"name":"Cisco AnyConnect Secure Mobility Client Virtual Miniport Adapter for Windows x64","connection_name":"Ethernet 5","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (InternalVM)","status":null,"dhcp_enabled":false,"dhcp_server":null,"ip_addresses":["172.16.32.1"]},{"name":"Hyper-V Virtual Ethernet Adapter","connection_name":"vEthernet (Default Switch) 2","status":null,"dhcp_enabled":true,"dhcp_server":"255.255.255.255","ip_addresses":["172.26.251.65"]}],"hyperv_requirements":{"vm_monitor_mode_extensions":true,"virtualization_enabled_in_firmware":true,"second_level_address_translation":false,"data_execution_prevention_available":true},"original_install_date_epoch":1553640690,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1617110039,"system_boot_time_epoch_utc":null} diff --git a/tests/fixtures/windows/windows-10/systeminfo.json b/tests/fixtures/windows/windows-10/systeminfo.json index 4abab0b2..e0ab7105 100644 --- a/tests/fixtures/windows/windows-10/systeminfo.json +++ b/tests/fixtures/windows/windows-10/systeminfo.json @@ -1,56 +1 @@ -{ - "host_name": "DESKTOP-WIN01", - "os_name": "Microsoft Windows 10 Enterprise", - "os_version": "10.0.19042 N/A Build 19042", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Member Workstation", - "os_build_type": "Multiprocessor Free", - "registered_owner": "User", - "registered_organization": "", - "product_id": "00111-12345-00001-AA111", - "original_install_date": 1613503227, - "system_boot_time": 1616171103, - "system_manufacturer": "VMware, Inc.", - "system_model": "VMware7,1", - "system_type": "x64-based PC", - "processors": [ - "Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz" - ], - "bios_version": "VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020", - "windows_directory": "C:\\Windows", - "system_directory": "C:\\Windows\\system32", - "boot_device": "\\Device\\HarddiskVolume1", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC-08:00) Pacific Time (US & Canada)", - "total_physical_memory_mb": 2047, - "available_physical_memory_mb": 1417, - "virtual_memory_max_size_mb": 2687, - "virtual_memory_available_mb": 1482, - "virtual_memory_in_use_mb": 1205, - "page_file_locations": "C:\\pagefile.sys", - "domain": "TEST.local", - "logon_server": "\\\\WIN-AA1A1A11AAA", - "hotfixs": [ - "KB4578968", - "KB4562830", - "KB4570334", - "KB4580325", - "KB4586864", - "KB4594440" - ], - "network_cards": [ - { - "name": "Intel(R) 82574L Gigabit Network Connection", - "connection_name": "Ethernet0", - "status": "", - "dhcp_enabled": true, - "dhcp_server": "192.168.133.250", - "ip_addresses": [ - "192.168.133.3", - "fe80::192:eb64:1fcf:86eb" - ] - } - ], - "hyperv_requirements": {} -} +{"host_name":"DESKTOP-WIN01","os_name":"Microsoft Windows 10 Enterprise","os_version":"10.0.19042 N/A Build 19042","os_manufacturer":"Microsoft Corporation","os_configuration":"Member Workstation","os_build_type":"Multiprocessor Free","registered_owner":"User","registered_organization":null,"product_id":"00111-12345-00001-AA111","original_install_date":"2/16/2021, 11:20:27 AM","system_boot_time":"3/19/2021, 9:25:03 AM","system_manufacturer":"VMware, Inc.","system_model":"VMware7,1","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 13 GenuineIntel ~2400 Mhz"],"bios_version":"VMware, Inc. VMW71.00V.11111111.B64.2008100111, 8/10/2020","windows_directory":"C:\\Windows","system_directory":"C:\\Windows\\system32","boot_device":"\\Device\\HarddiskVolume1","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC-08:00) Pacific Time (US & Canada)","total_physical_memory_mb":2047,"available_physical_memory_mb":1417,"virtual_memory_max_size_mb":2687,"virtual_memory_available_mb":1482,"virtual_memory_in_use_mb":1205,"page_file_locations":"C:\\pagefile.sys","domain":"TEST.local","logon_server":"\\\\WIN-AA1A1A11AAA","hotfixs":["KB4578968","KB4562830","KB4570334","KB4580325","KB4586864","KB4594440"],"network_cards":[{"name":"Intel(R) 82574L Gigabit Network Connection","connection_name":"Ethernet0","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.133.250","ip_addresses":["192.168.133.3","fe80::192:eb64:1fcf:86eb"]}],"hyperv_requirements":{},"original_install_date_epoch":1613503227,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1616171103,"system_boot_time_epoch_utc":null} diff --git a/tests/fixtures/windows/windows-10/systeminfo.out b/tests/fixtures/windows/windows-10/systeminfo.out index df4d05d9..e8b0819c 100644 --- a/tests/fixtures/windows/windows-10/systeminfo.out +++ b/tests/fixtures/windows/windows-10/systeminfo.out @@ -45,3 +45,4 @@ Network Card(s): 1 NIC(s) Installed. [01]: 192.168.133.3 [02]: fe80::192:eb64:1fcf:86eb Hyper-V Requirements: A hypervisor has been detected. Features required for Hyper-V will not be displayed. + diff --git a/tests/fixtures/windows/windows-2012r2/systeminfo.json b/tests/fixtures/windows/windows-2012r2/systeminfo.json index 6977f53f..337fdd6f 100644 --- a/tests/fixtures/windows/windows-2012r2/systeminfo.json +++ b/tests/fixtures/windows/windows-2012r2/systeminfo.json @@ -1,54 +1 @@ -{ - "host_name": "WIN-1A1A1AA11AA", - "os_name": "Microsoft Windows Server 2012 R2 Standard", - "os_version": "6.3.9600 N/A Build 9600", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Standalone Server", - "os_build_type": "Multiprocessor Free", - "registered_owner": "Windows User", - "registered_organization": "", - "product_id": "11111-11111-11111-AA111", - "original_install_date": 1544692548, - "system_boot_time": 1616967284, - "system_manufacturer": "Microsoft Corporation", - "system_model": "Virtual Machine", - "system_type": "x64-based PC", - "processors": [ - "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" - ], - "bios_version": "Microsoft Corporation Hyper-V UEFI Release v3.0, 3/2/2018", - "windows_directory": "C:\\Windows", - "system_directory": "C:\\Windows\\system32", - "boot_device": "\\Device\\HarddiskVolume2", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC+03:00) Kuwait, Riyadh", - "total_physical_memory_mb": 3555, - "available_physical_memory_mb": 771, - "virtual_memory_max_size_mb": 5731, - "virtual_memory_available_mb": 2751, - "virtual_memory_in_use_mb": 2980, - "page_file_locations": "C:\\pagefile.sys", - "domain": "WORKGROUP", - "logon_server": "\\\\WIN-1A1A1AA11AA", - "hotfixs": [ - "KB2919355", - "KB2975061", - "KB2999226", - "KB3151864", - "KB4054566" - ], - "network_cards": [ - { - "name": "Microsoft Hyper-V Network Adapter", - "connection_name": "Ethernet 2", - "status": "", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [ - "172.16.32.10" - ] - } - ], - "hyperv_requirements": {} -} +{"host_name":"WIN-1A1A1AA11AA","os_name":"Microsoft Windows Server 2012 R2 Standard","os_version":"6.3.9600 N/A Build 9600","os_manufacturer":"Microsoft Corporation","os_configuration":"Standalone Server","os_build_type":"Multiprocessor Free","registered_owner":"Windows User","registered_organization":null,"product_id":"11111-11111-11111-AA111","original_install_date":"12/13/2018, 1:15:48 AM","system_boot_time":"3/28/2021, 2:34:44 PM","system_manufacturer":"Microsoft Corporation","system_model":"Virtual Machine","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz"],"bios_version":"Microsoft Corporation Hyper-V UEFI Release v3.0, 3/2/2018","windows_directory":"C:\\Windows","system_directory":"C:\\Windows\\system32","boot_device":"\\Device\\HarddiskVolume2","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC+03:00) Kuwait, Riyadh","total_physical_memory_mb":3555,"available_physical_memory_mb":771,"virtual_memory_max_size_mb":5731,"virtual_memory_available_mb":2751,"virtual_memory_in_use_mb":2980,"page_file_locations":"C:\\pagefile.sys","domain":"WORKGROUP","logon_server":"\\\\WIN-1A1A1AA11AA","hotfixs":["KB2919355","KB2975061","KB2999226","KB3151864","KB4054566"],"network_cards":[{"name":"Microsoft Hyper-V Network Adapter","connection_name":"Ethernet 2","status":null,"dhcp_enabled":false,"dhcp_server":null,"ip_addresses":["172.16.32.10"]}],"hyperv_requirements":{},"original_install_date_epoch":1544692548,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1616967284,"system_boot_time_epoch_utc":null} diff --git a/tests/fixtures/windows/windows-7/systeminfo.json b/tests/fixtures/windows/windows-7/systeminfo.json index 8945f6fd..58489bf3 100644 --- a/tests/fixtures/windows/windows-7/systeminfo.json +++ b/tests/fixtures/windows/windows-7/systeminfo.json @@ -1,325 +1 @@ -{ - "host_name": "TEST", - "os_name": "Microsoft Windows 7 Professional", - "os_version": "6.1.7601 Service Pack 1 Build 7601", - "os_manufacturer": "Microsoft Corporation", - "os_configuration": "Standalone Workstation", - "os_build_type": "Multiprocessor Free", - "registered_owner": "jdoe", - "registered_organization": "", - "product_id": "00000-111-1111111-11111", - "original_install_date": 1420142400, - "system_boot_time": 1616444151, - "system_manufacturer": "LENOVO", - "system_model": "11111AA", - "system_type": "x64-based PC", - "processors": [ - "Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz" - ], - "bios_version": "LENOVO 83ET67WW (1.37 ), 11/28/2011", - "windows_directory": "C:\\Windows", - "system_directory": "C:\\Windows\\system32", - "boot_device": "\\Device\\HarddiskVolume1", - "system_locale": "en-us;English (United States)", - "input_locale": "en-us;English (United States)", - "time_zone": "(UTC-06:00) Central Time (US & Canada)", - "total_physical_memory_mb": 8075, - "available_physical_memory_mb": 1620, - "virtual_memory_max_size_mb": 16149, - "virtual_memory_available_mb": 6468, - "virtual_memory_in_use_mb": 9681, - "page_file_locations": "C:\\pagefile.sys", - "domain": "WORKGROUP", - "logon_server": "\\\\TEST", - "hotfixs": [ - "KB2849697", - "KB2849696", - "KB2841134", - "KB2670838", - "KB2830477", - "KB2592687", - "KB971033", - "KB2479943", - "KB2491683", - "KB2506014", - "KB2506212", - "KB2506928", - "KB2509553", - "KB2511455", - "KB2515325", - "KB2532531", - "KB2533552", - "KB2533623", - "KB2534366", - "KB2536275", - "KB2536276", - "KB2544893", - "KB2545698", - "KB2547666", - "KB2552343", - "KB2560656", - "KB2562937", - "KB2563227", - "KB2564958", - "KB2570947", - "KB2574819", - "KB2579686", - "KB2585542", - "KB2603229", - "KB2604115", - "KB2619339", - "KB2620704", - "KB2621440", - "KB2631813", - "KB2639308", - "KB2640148", - "KB2647753", - "KB2653956", - "KB2654428", - "KB2656356", - "KB2660075", - "KB2667402", - "KB2676562", - "KB2685811", - "KB2685813", - "KB2685939", - "KB2690533", - "KB2698365", - "KB2705219", - "KB2706045", - "KB2709630", - "KB2712808", - "KB2718704", - "KB2719857", - "KB2726535", - "KB2727528", - "KB2729094", - "KB2729452", - "KB2731771", - "KB2732059", - "KB2732487", - "KB2732500", - "KB2736422", - "KB2742599", - "KB2750841", - "KB2758857", - "KB2761217", - "KB2763523", - "KB2770660", - "KB2773072", - "KB2786081", - "KB2789645", - "KB2791765", - "KB2798162", - "KB2799926", - "KB2800095", - "KB2803821", - "KB2807986", - "KB2808679", - "KB2813347", - "KB2813430", - "KB2820331", - "KB2832414", - "KB2834140", - "KB2836942", - "KB2836943", - "KB2839894", - "KB2840149", - "KB2840631", - "KB2843630", - "KB2846960", - "KB2847077", - "KB2847311", - "KB2847927", - "KB2852386", - "KB2853952", - "KB2855844", - "KB2857650", - "KB2861191", - "KB2861698", - "KB2862152", - "KB2862330", - "KB2862335", - "KB2862966", - "KB2862973", - "KB2864058", - "KB2864202", - "KB2868038", - "KB2868116", - "KB2868626", - "KB2871997", - "KB2872339", - "KB2882822", - "KB2884256", - "KB2887069", - "KB2888049", - "KB2891804", - "KB2892074", - "KB2893294", - "KB2893519", - "KB2894844", - "KB2900986", - "KB2908783", - "KB2911501", - "KB2912390", - "KB2913152", - "KB2918077", - "KB2918614", - "KB2919469", - "KB2922229", - "KB2923545", - "KB2926765", - "KB2928562", - "KB2929733", - "KB2931356", - "KB2937610", - "KB2939576", - "KB2943357", - "KB2952664", - "KB2957189", - "KB2957503", - "KB2957509", - "KB2961072", - "KB2965788", - "KB2966583", - "KB2968294", - "KB2970228", - "KB2971850", - "KB2972100", - "KB2972211", - "KB2972280", - "KB2973112", - "KB2973201", - "KB2973351", - "KB2976627", - "KB2976897", - "KB2977292", - "KB2977728", - "KB2978092", - "KB2978120", - "KB2978668", - "KB2978742", - "KB2979570", - "KB2980245", - "KB2984972", - "KB2984976", - "KB2984981", - "KB2985461", - "KB2991963", - "KB2992611", - "KB2993651", - "KB2993958", - "KB2994023", - "KB2999226", - "KB3001554", - "KB3002885", - "KB3003057", - "KB3003743", - "KB3004361", - "KB3004375", - "KB3005607", - "KB3006121", - "KB3006226", - "KB3006625", - "KB3008627", - "KB3008923", - "KB3009736", - "KB3010788", - "KB3011780", - "KB3012176", - "KB3013126", - "KB3013410", - "KB3014406", - "KB3019215", - "KB3020369", - "KB3020388", - "KB3021674", - "KB3022777", - "KB3023215", - "KB3025390", - "KB3030377", - "KB3031432", - "KB3032655", - "KB3033889", - "KB3033890", - "KB3033929", - "KB3035126", - "KB3035132", - "KB3037574", - "KB3042058", - "KB3042553", - "KB3045685", - "KB3046017", - "KB3046269", - "KB3055642", - "KB3059317", - "KB3060716", - "KB3061518", - "KB3067903", - "KB3069114", - "KB3069392", - "KB3069762", - "KB3071756", - "KB3072305", - "KB3072630", - "KB3072633", - "KB3074543", - "KB3075226", - "KB3076895", - "KB3076949", - "KB3077715", - "KB3078601", - "KB3080446", - "KB3081320", - "KB3083710", - "KB3084135", - "KB3086255", - "KB3087039", - "KB3087918", - "KB3088195" - ], - "network_cards": [ - { - "name": "Bluetooth Device (Personal Area Network)", - "connection_name": "Bluetooth Network Connection", - "status": "Media disconnected", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [] - }, - { - "name": "Intel(R) 82579LM Gigabit Network Connection", - "connection_name": "Local Area Connection", - "status": "Media disconnected", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [] - }, - { - "name": "Intel(R) Centrino(R) Advanced-N 6205", - "connection_name": "Wireless Network Connection", - "status": "", - "dhcp_enabled": true, - "dhcp_server": "192.168.2.1", - "ip_addresses": [ - "192.168.2.2" - ] - }, - { - "name": "Microsoft Virtual WiFi Miniport Adapter", - "connection_name": "Wireless Network Connection 2", - "status": "Hardware not present", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [] - }, - { - "name": "Microsoft Virtual WiFi Miniport Adapter", - "connection_name": "Wireless Network Connection 3", - "status": "Hardware not present", - "dhcp_enabled": false, - "dhcp_server": "", - "ip_addresses": [] - } - ] -} +{"host_name":"TEST","os_name":"Microsoft Windows 7 Professional","os_version":"6.1.7601 Service Pack 1 Build 7601","os_manufacturer":"Microsoft Corporation","os_configuration":"Standalone Workstation","os_build_type":"Multiprocessor Free","registered_owner":"jdoe","registered_organization":null,"product_id":"00000-111-1111111-11111","original_install_date":"01/01/2015, 12:00:00 PM","system_boot_time":"3/22/2021, 1:15:51 PM","system_manufacturer":"LENOVO","system_model":"11111AA","system_type":"x64-based PC","processors":["Intel64 Family 6 Model 42 Stepping 7 GenuineIntel ~2501 Mhz"],"bios_version":"LENOVO 83ET67WW (1.37 ), 11/28/2011","windows_directory":"C:\\Windows","system_directory":"C:\\Windows\\system32","boot_device":"\\Device\\HarddiskVolume1","system_locale":"en-us;English (United States)","input_locale":"en-us;English (United States)","time_zone":"(UTC-06:00) Central Time (US & Canada)","total_physical_memory_mb":8075,"available_physical_memory_mb":1620,"virtual_memory_max_size_mb":16149,"virtual_memory_available_mb":6468,"virtual_memory_in_use_mb":9681,"page_file_locations":"C:\\pagefile.sys","domain":"WORKGROUP","logon_server":"\\\\TEST","hotfixs":["KB2849697","KB2849696","KB2841134","KB2670838","KB2830477","KB2592687","KB971033","KB2479943","KB2491683","KB2506014","KB2506212","KB2506928","KB2509553","KB2511455","KB2515325","KB2532531","KB2533552","KB2533623","KB2534366","KB2536275","KB2536276","KB2544893","KB2545698","KB2547666","KB2552343","KB2560656","KB2562937","KB2563227","KB2564958","KB2570947","KB2574819","KB2579686","KB2585542","KB2603229","KB2604115","KB2619339","KB2620704","KB2621440","KB2631813","KB2639308","KB2640148","KB2647753","KB2653956","KB2654428","KB2656356","KB2660075","KB2667402","KB2676562","KB2685811","KB2685813","KB2685939","KB2690533","KB2698365","KB2705219","KB2706045","KB2709630","KB2712808","KB2718704","KB2719857","KB2726535","KB2727528","KB2729094","KB2729452","KB2731771","KB2732059","KB2732487","KB2732500","KB2736422","KB2742599","KB2750841","KB2758857","KB2761217","KB2763523","KB2770660","KB2773072","KB2786081","KB2789645","KB2791765","KB2798162","KB2799926","KB2800095","KB2803821","KB2807986","KB2808679","KB2813347","KB2813430","KB2820331","KB2832414","KB2834140","KB2836942","KB2836943","KB2839894","KB2840149","KB2840631","KB2843630","KB2846960","KB2847077","KB2847311","KB2847927","KB2852386","KB2853952","KB2855844","KB2857650","KB2861191","KB2861698","KB2862152","KB2862330","KB2862335","KB2862966","KB2862973","KB2864058","KB2864202","KB2868038","KB2868116","KB2868626","KB2871997","KB2872339","KB2882822","KB2884256","KB2887069","KB2888049","KB2891804","KB2892074","KB2893294","KB2893519","KB2894844","KB2900986","KB2908783","KB2911501","KB2912390","KB2913152","KB2918077","KB2918614","KB2919469","KB2922229","KB2923545","KB2926765","KB2928562","KB2929733","KB2931356","KB2937610","KB2939576","KB2943357","KB2952664","KB2957189","KB2957503","KB2957509","KB2961072","KB2965788","KB2966583","KB2968294","KB2970228","KB2971850","KB2972100","KB2972211","KB2972280","KB2973112","KB2973201","KB2973351","KB2976627","KB2976897","KB2977292","KB2977728","KB2978092","KB2978120","KB2978668","KB2978742","KB2979570","KB2980245","KB2984972","KB2984976","KB2984981","KB2985461","KB2991963","KB2992611","KB2993651","KB2993958","KB2994023","KB2999226","KB3001554","KB3002885","KB3003057","KB3003743","KB3004361","KB3004375","KB3005607","KB3006121","KB3006226","KB3006625","KB3008627","KB3008923","KB3009736","KB3010788","KB3011780","KB3012176","KB3013126","KB3013410","KB3014406","KB3019215","KB3020369","KB3020388","KB3021674","KB3022777","KB3023215","KB3025390","KB3030377","KB3031432","KB3032655","KB3033889","KB3033890","KB3033929","KB3035126","KB3035132","KB3037574","KB3042058","KB3042553","KB3045685","KB3046017","KB3046269","KB3055642","KB3059317","KB3060716","KB3061518","KB3067903","KB3069114","KB3069392","KB3069762","KB3071756","KB3072305","KB3072630","KB3072633","KB3074543","KB3075226","KB3076895","KB3076949","KB3077715","KB3078601","KB3080446","KB3081320","KB3083710","KB3084135","KB3086255","KB3087039","KB3087918","KB3088195"],"network_cards":[{"name":"Bluetooth Device (Personal Area Network)","connection_name":"Bluetooth Network Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Intel(R) 82579LM Gigabit Network Connection","connection_name":"Local Area Connection","status":"Media disconnected","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Intel(R) Centrino(R) Advanced-N 6205","connection_name":"Wireless Network Connection","status":null,"dhcp_enabled":true,"dhcp_server":"192.168.2.1","ip_addresses":["192.168.2.2"]},{"name":"Microsoft Virtual WiFi Miniport Adapter","connection_name":"Wireless Network Connection 2","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]},{"name":"Microsoft Virtual WiFi Miniport Adapter","connection_name":"Wireless Network Connection 3","status":"Hardware not present","dhcp_enabled":false,"dhcp_server":null,"ip_addresses":[]}],"original_install_date_epoch":1420142400,"original_install_date_epoch_utc":null,"system_boot_time_epoch":1616444151,"system_boot_time_epoch_utc":null} From 691df271fcfe057ae4b75ad40869e23deb37b886 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 14 Apr 2021 20:30:31 -0700 Subject: [PATCH 12/36] add info docstring --- docs/parsers/systeminfo.md | 2 +- jc/man/jc.1.gz | Bin 2051 -> 2051 bytes jc/parsers/systeminfo.py | 1 + man/jc.1.gz | Bin 2051 -> 2051 bytes 4 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/parsers/systeminfo.md b/docs/parsers/systeminfo.md index aaa33bd6..625a5176 100644 --- a/docs/parsers/systeminfo.md +++ b/docs/parsers/systeminfo.md @@ -207,7 +207,7 @@ Examples: ```python info() ``` - +Provides parser metadata (version, author, etc.) ## parse ```python diff --git a/jc/man/jc.1.gz b/jc/man/jc.1.gz index a8c976a82c53a9874eba4a1c30aba1b5ea85f95f..5767a72b1c34a09bf708bf69786bf80cbb0f575b 100644 GIT binary patch delta 15 WcmZn`Xcl0T@8;kz+PsnNFFODrSOkXv delta 15 WcmZn`Xcl0T@8;l8*szi9FFODq-2`#~ diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index cfaa5b84..c6f8b571 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -204,6 +204,7 @@ import jc.utils class info: + """Provides parser metadata (version, author, etc.)""" version = "1.0" description = "`systeminfo` command parser" author = "Jon Smith" diff --git a/man/jc.1.gz b/man/jc.1.gz index a8c976a82c53a9874eba4a1c30aba1b5ea85f95f..5767a72b1c34a09bf708bf69786bf80cbb0f575b 100644 GIT binary patch delta 15 WcmZn`Xcl0T@8;kz+PsnNFFODrSOkXv delta 15 WcmZn`Xcl0T@8;l8*szi9FFODq-2`#~ From 61479540756704f10853233300ceae8f954a8a95 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 14 Apr 2021 20:39:35 -0700 Subject: [PATCH 13/36] update tests --- tests/test_systeminfo.py | 1 + tests/test_utils.py | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/tests/test_systeminfo.py b/tests/test_systeminfo.py index e790e506..7eccce88 100644 --- a/tests/test_systeminfo.py +++ b/tests/test_systeminfo.py @@ -11,6 +11,7 @@ class MyTests(unittest.TestCase): "tests/fixtures/windows/windows-7/systeminfo", "tests/fixtures/windows/windows-10/systeminfo", "tests/fixtures/windows/windows-10/systeminfo-hyperv", + "tests/fixtures/windows/windows-10/systeminfo-hyperv-utc", "tests/fixtures/windows/windows-2012r2/systeminfo", ] diff --git a/tests/test_utils.py b/tests/test_utils.py index c94a7b3e..ecb1a6a2 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -14,6 +14,10 @@ class MyTests(unittest.TestCase): '2021-03-23 00:14': {'string': '2021-03-23 00:14', 'format': 1500, 'naive': 1616483640, 'utc': None}, # Windows english format (found in dir cli output) '12/07/2019 02:09 AM': {'string': '12/07/2019 02:09 AM', 'format': 1600, 'naive': 1575713340, 'utc': None}, + # Windows english format wint non-UTC tz (found in systeminfo cli output) + '3/22/2021, 1:15:51 PM (UTC-0600)': {'string': '3/22/2021, 1:15:51 PM (UTC-0600)', 'format': 1700, 'naive': 1616444151, 'utc': None}, + # Windows english format with UTC tz (found in systeminfo cli output) + '3/22/2021, 1:15:51 PM (UTC+0000)': {'string': '3/22/2021, 1:15:51 PM (UTC+0000)', 'format': 1710, 'naive': 1616444151, 'utc': 1616418951}, # en_US.UTF-8 local format (found in upower cli output) 'Tue 23 Mar 2021 04:12:11 PM UTC': {'string': 'Tue 23 Mar 2021 04:12:11 PM UTC', 'format': 2000, 'naive': 1616541131, 'utc': 1616515931}, # en_US.UTF-8 local format with non-UTC tz (found in upower cli output) From 2db82c0a7e19d596c876ede8a8ff106aaa733ee5 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 14 Apr 2021 20:43:58 -0700 Subject: [PATCH 14/36] add systeminfo example --- EXAMPLES.md | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/EXAMPLES.md b/EXAMPLES.md index 686eb1fa..414053cf 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -2869,6 +2869,72 @@ systemctl list-unit-files | jc --systemctl-luf -p # or: jc -p systemct } ] ``` +### systeminfo +```bash +systeminfo | jc --systeminfo -p # or: jc -p systeminfo +``` +```json +{ + "host_name": "TESTLAPTOP", + "os_name": "Microsoft Windows 10 Enterprise", + "os_version": "10.0.17134 N/A Build 17134", + "os_manufacturer": "Microsoft Corporation", + "os_configuration": "Member Workstation", + "os_build_type": "Multiprocessor Free", + "registered_owner": "Test, Inc.", + "registered_organization": "Test, Inc.", + "product_id": "11111-11111-11111-AA111", + "original_install_date": "3/26/2019, 3:51:30 PM", + "system_boot_time": "3/30/2021, 6:13:59 AM", + "system_manufacturer": "Dell Inc.", + "system_model": "Precision 5530", + "system_type": "x64-based PC", + "processors": [ + "Intel64 Family 6 Model 158 Stepping 10 GenuineIntel ~2592 Mhz" + ], + "bios_version": "Dell Inc. 1.16.2, 4/21/2020", + "windows_directory": "C:\\WINDOWS", + "system_directory": "C:\\WINDOWS\\system32", + "boot_device": "\\Device\\HarddiskVolume2", + "system_locale": "en-us;English (United States)", + "input_locale": "en-us;English (United States)", + "time_zone": "(UTC+00:00) UTC", + "total_physical_memory_mb": 32503, + "available_physical_memory_mb": 19743, + "virtual_memory_max_size_mb": 37367, + "virtual_memory_available_mb": 22266, + "virtual_memory_in_use_mb": 15101, + "page_file_locations": "C:\\pagefile.sys", + "domain": "test.com", + "logon_server": "\\\\TESTDC01", + "hotfixs": [ + "KB2693643", + "KB4601054" + ], + "network_cards": [ + { + "name": "Intel(R) Wireless-AC 9260 160MHz", + "connection_name": "Wi-Fi", + "status": null, + "dhcp_enabled": true, + "dhcp_server": "192.168.2.1", + "ip_addresses": [ + "192.168.2.219" + ] + } + ], + "hyperv_requirements": { + "vm_monitor_mode_extensions": true, + "virtualization_enabled_in_firmware": true, + "second_level_address_translation": false, + "data_execution_prevention_available": true + }, + "original_install_date_epoch": 1553640690, + "original_install_date_epoch_utc": 1553615490, + "system_boot_time_epoch": 1617110039, + "system_boot_time_epoch_utc": 1617084839 +} +``` ### /usr/bin/time ```bash /usr/bin/time --verbose -o timefile.out sleep 2.5; cat timefile.out | jc --time -p From 8390ae48c88ab1c7d5acbf40c0e60606953817bd Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 15 Apr 2021 16:53:03 -0700 Subject: [PATCH 15/36] fix server entry when IPv6 address is in value (maxsplit on colons) --- jc/parsers/dig.py | 4 ++-- tests/fixtures/osx-10.11.6/dig-aaaa.json | 2 +- tests/fixtures/osx-10.11.6/dig-x.json | 2 +- tests/fixtures/osx-10.11.6/dig.json | 2 +- tests/fixtures/osx-10.14.6/dig-aaaa.json | 2 +- tests/fixtures/osx-10.14.6/dig-x.json | 2 +- tests/fixtures/osx-10.14.6/dig.json | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 2cc55c2e..67c7fea2 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -396,7 +396,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.7' + version = '1.8' description = '`dig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -678,7 +678,7 @@ def parse(data, raw=False, quiet=False): # footer line 2 if line.startswith(';; SERVER:'): - output_entry.update({'server': line.split(':')[1].lstrip()}) + output_entry.update({'server': line.split(':', maxsplit=1)[1].lstrip()}) continue # footer line 3 diff --git a/tests/fixtures/osx-10.11.6/dig-aaaa.json b/tests/fixtures/osx-10.11.6/dig-aaaa.json index c652d512..676cd4ec 100644 --- a/tests/fixtures/osx-10.11.6/dig-aaaa.json +++ b/tests/fixtures/osx-10.11.6/dig-aaaa.json @@ -1 +1 @@ -[{"id":41369,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":197,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":71,"when_epoch":1576112257,"when_epoch_utc":null}] +[{"id":41369,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":197,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":71,"when_epoch":1576112257,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.11.6/dig-x.json b/tests/fixtures/osx-10.11.6/dig-x.json index 30225102..4e839bd0 100644 --- a/tests/fixtures/osx-10.11.6/dig-x.json +++ b/tests/fixtures/osx-10.11.6/dig-x.json @@ -1 +1 @@ -[{"id":15549,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":34,"server":"2600","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":78,"when_epoch":1576112257,"when_epoch_utc":null}] +[{"id":15549,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":34,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":78,"when_epoch":1576112257,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.11.6/dig.json b/tests/fixtures/osx-10.11.6/dig.json index 1d151b57..241009d2 100644 --- a/tests/fixtures/osx-10.11.6/dig.json +++ b/tests/fixtures/osx-10.11.6/dig.json @@ -1 +1 @@ -[{"id":57483,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":199,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.129.67"}],"query_time":30,"server":"2600","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":143,"when_epoch":1576112257,"when_epoch_utc":null},{"id":53268,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":194,"data":"172.217.9.164"}],"query_time":30,"server":"2600","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":59,"when_epoch":1576112257,"when_epoch_utc":null}] +[{"id":57483,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":199,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.129.67"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":143,"when_epoch":1576112257,"when_epoch_utc":null},{"id":53268,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":194,"data":"172.217.9.164"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":59,"when_epoch":1576112257,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig-aaaa.json b/tests/fixtures/osx-10.14.6/dig-aaaa.json index 3dc515b3..a16d5b3a 100644 --- a/tests/fixtures/osx-10.14.6/dig-aaaa.json +++ b/tests/fixtures/osx-10.14.6/dig-aaaa.json @@ -1 +1 @@ -[{"id":61441,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":63,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":71,"when_epoch":1576112090,"when_epoch_utc":null}] +[{"id":61441,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":63,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":71,"when_epoch":1576112090,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig-x.json b/tests/fixtures/osx-10.14.6/dig-x.json index 2d6aedaa..1d625229 100644 --- a/tests/fixtures/osx-10.14.6/dig-x.json +++ b/tests/fixtures/osx-10.14.6/dig-x.json @@ -1 +1 @@ -[{"id":27071,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":39,"server":"2600","when":"Wed Dec 11 16:54:51 PST 2019","rcvd":78,"when_epoch":1576112091,"when_epoch_utc":null}] +[{"id":27071,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":39,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:51 PST 2019","rcvd":78,"when_epoch":1576112091,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig.json b/tests/fixtures/osx-10.14.6/dig.json index f2414abb..9fe53914 100644 --- a/tests/fixtures/osx-10.14.6/dig.json +++ b/tests/fixtures/osx-10.14.6/dig.json @@ -1 +1 @@ -[{"id":54065,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":72,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.129.67"}],"query_time":41,"server":"2600","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":143,"when_epoch":1576112090,"when_epoch_utc":null},{"id":64484,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":64,"data":"172.217.12.68"}],"query_time":31,"server":"2600","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":59,"when_epoch":1576112090,"when_epoch_utc":null}] +[{"id":54065,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":72,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.129.67"}],"query_time":41,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":143,"when_epoch":1576112090,"when_epoch_utc":null},{"id":64484,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":64,"data":"172.217.12.68"}],"query_time":31,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":59,"when_epoch":1576112090,"when_epoch_utc":null}] From 3b0e2f03f3b11398ff57b1daed542faaf0b80a62 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 08:46:20 -0700 Subject: [PATCH 16/36] clean up examples --- jc/cli.py | 21 +++++++++++---------- templates/manpage_template | 26 +++++++++++++------------- 2 files changed, 24 insertions(+), 23 deletions(-) diff --git a/jc/cli.py b/jc/cli.py index 2d77b95f..08ad7d38 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -320,27 +320,27 @@ def helptext(): {parsers_string} Options: -a about jc - -d debug - show traceback (-dd for verbose traceback) - -h help (use -h --parser_name for parser documentation) + -d debug (-dd for verbose debug) + -h help (-h --parser_name for parser documentation) -m monochrome output -p pretty print output -q quiet - suppress parser warnings -r raw JSON output -v version info - Example: - ls -al | jc --ls -p + Examples: + Standard Syntax: + $ dig www.google.com | jc --dig -p - or using the magic syntax: + Magic Syntax: + $ jc -p dig www.google.com - jc -p ls -al - - For parser documentation: - - jc -h --ls + Parser Documentation: + $ jc -h --dig ''' return textwrap.dedent(helptext_string) + def help_doc(options): """ Returns the parser documentation if a parser is found in the arguments, otherwise @@ -363,6 +363,7 @@ Version {parser.info.version} by {parser.info.author} ({parser.info.author_email return helptext() + def versiontext(): """Return the version text""" versiontext_string = f'''\ diff --git a/templates/manpage_template b/templates/manpage_template index a5b6c96c..f7f99106 100644 --- a/templates/manpage_template +++ b/templates/manpage_template @@ -40,7 +40,7 @@ debug - show traceback (\fB-dd\fP for verbose traceback) .TP .B \fB-h\fP -help - use `-h --parser_name` for parser documentation +help (\fB-h --parser_name\fP for parser documentation) .TP .B \fB-m\fP @@ -96,21 +96,21 @@ Local plugin filenames must be valid python module names, therefore must consist Note: The application data directory follows the XDG Base Directory Specification -.SH EXAMPLE -ls \fB-al\fP | jc \fB--ls\fP \fB-p\fP - - -or using the magic syntax: - - -jc \fB-p\fP ls \fB-al\fP +.SH EXAMPLES +Standard Syntax: +.RS +$ dig www.google.com | jc \fB--dig\fP \fB-p\fP +.RE +Magic Syntax: +.RS +$ jc \fB-p\fP dig www.google.com +.RE For parser documentation: - - -jc \fB-h\fP \fB--ls\fP - +.RS +$ jc \fB-h\fP \fB--dig\fP +.RE .SH AUTHOR {{ jc.author }} ({{ jc.author_email }}) From a8dd3f7802bfe8fd3ffbedf89af45ddc580ee78d Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 13:11:02 -0700 Subject: [PATCH 17/36] working dig axfr fixes --- CHANGELOG | 4 + jc/parsers/dig.py | 325 ++++------------------ tests/fixtures/centos-7.7/dig-axfr.json | 2 +- tests/fixtures/osx-10.14.6/dig-axfr.json | 2 +- tests/fixtures/ubuntu-18.04/dig-axfr.json | 2 +- 5 files changed, 54 insertions(+), 281 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 08a30269..1fd37dea 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,10 @@ jc changelog 20210415 v1.15.2 - Add systeminfo parser tested on Windows +- Update dig parser to fix an issue with IPv6 addresses in the server field +- Update dig parser to fix an issue when axfr entries contain a semicolon +- Update dig parser to add support for Additional Section and Opt Pseudosection +- Use dig parser as the main example in readme, documentation, and man page 20210413 v1.15.1 - New feature to show parser documentation interactively with -h --parser_name diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 67c7fea2..217aeb1d 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -76,246 +76,10 @@ Schema: Examples: $ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p - [ - { - "id": 52172, - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "rd", - "ra" - ], - "query_num": 1, - "answer_num": 4, - "authority_num": 0, - "additional_num": 1, - "question": { - "name": "cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.65.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.129.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.1.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.193.67" - } - ], - "query_time": 38, - "server": "2600", - "when": "Tue Mar 30 20:07:59 PDT 2021", - "rcvd": 100, - "when_epoch": 1617160079, - "when_epoch_utc": null - }, - { - "id": 36292, - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "aa", - "rd" - ], - "query_num": 1, - "answer_num": 1, - "authority_num": 4, - "additional_num": 1, - "question": { - "name": "www.cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "www.cnn.com.", - "class": "IN", - "type": "CNAME", - "ttl": 300, - "data": "turner-tls.map.fastly.net." - } - ], - "authority": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-1086.awsdns-07.org." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-1630.awsdns-11.co.uk." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-47.awsdns-05.com." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-576.awsdns-08.net." - } - ], - "query_time": 27, - "server": "205.251.194.64#53(205.251.194.64)", - "when": "Tue Mar 30 20:07:59 PDT 2021", - "rcvd": 212, - "when_epoch": 1617160079, - "when_epoch_utc": null - } - ] + $ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p -r - [ - { - "id": "23843", - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "rd", - "ra" - ], - "query_num": "1", - "answer_num": "4", - "authority_num": "0", - "additional_num": "1", - "question": { - "name": "cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.193.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.1.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.65.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.129.67" - } - ], - "query_time": "24 msec", - "server": "192.168.1.254#53(192.168.1.254)", - "when": "Tue Nov 12 07:16:19 PST 2019", - "rcvd": "100" - }, - { - "id": "8266", - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "aa", - "rd" - ], - "query_num": "1", - "answer_num": "1", - "authority_num": "4", - "additional_num": "1", - "question": { - "name": "www.cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "www.cnn.com.", - "class": "IN", - "type": "CNAME", - "ttl": "300", - "data": "turner-tls.map.fastly.net." - } - ], - "authority": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-1086.awsdns-07.org." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-1630.awsdns-11.co.uk." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-47.awsdns-05.com." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-576.awsdns-08.net." - } - ], - "query_time": "26 msec", - "server": "205.251.194.64#53(205.251.194.64)", - "when": "Tue Nov 12 07:16:19 PST 2019", - "rcvd": "212" - } - ] + $ dig -x 1.1.1.1 | jc --dig -p [ @@ -507,6 +271,13 @@ def _parse_flags_line(flagsline): 'additional_num': additional_num} +def _parse_opt_pseudosection(optline): + # ;; OPT PSEUDOSECTION: + # ; EDNS: version: 0, flags:; udp: 4096 + # ; COOKIE: 1cbc06703eaef210 + return {} + + def _parse_question(question): # ;www.cnn.com. IN A question = question.split() @@ -597,75 +368,70 @@ def parse(data, raw=False, quiet=False): # remove blank lines cleandata = list(filter(None, cleandata)) - question = False - authority = False - answer = False - axfr = False - + # section can be: header, flags, question, authority, answer, xfr, additional, opt_pseudosection, footer + section = '' output_entry = {} if jc.utils.has_data(data): for line in cleandata: + # identify sections + if line.startswith('; <<>> ') and ' axfr ' in line.lower(): - question = False - authority = False - answer = False - axfr = True + section = 'axfr' axfr_list = [] continue - if ';' not in line and axfr: - axfr_list.append(_parse_axfr(line)) - output_entry.update({'axfr': axfr_list}) - continue - if line.startswith(';; ->>HEADER<<-'): + section = 'header' output_entry = {} output_entry.update(_parse_header(line)) continue if line.startswith(';; flags:'): + section = 'flags' output_entry.update(_parse_flags_line(line)) continue - if line.startswith(';; QUESTION SECTION:'): - question = True - authority = False - answer = False - axfr = False - continue + # if line.startswith(';; OPT PSEUDOSECTION:'): + # section = 'opt_pseudosection' + # continue - if question: - output_entry['question'] = _parse_question(line) - question = False - authority = False - answer = False - axfr = False + if line.startswith(';; QUESTION SECTION:'): + section = 'question' continue if line.startswith(';; AUTHORITY SECTION:'): - question = False - authority = True - answer = False - axfr = False + section = 'authority' authority_list = [] continue - if ';' not in line and authority: + if line.startswith(';; ANSWER SECTION:'): + section = 'answer' + answer_list = [] + continue + + # parse sections + + if not line.startswith(';') and section == 'axfr': + axfr_list.append(_parse_axfr(line)) + output_entry.update({'axfr': axfr_list}) + continue + + # if section == 'opt_pseudosection': + # # output_entry.update(_parse_opt_pseudosection(line)) + # continue + + if section == 'question': + output_entry['question'] = _parse_question(line) + continue + + if not line.startswith(';') and section == 'authority': authority_list.append(_parse_authority(line)) output_entry.update({'authority': authority_list}) continue - if line.startswith(';; ANSWER SECTION:'): - question = False - authority = False - answer = True - axfr = False - answer_list = [] - continue - - if ';' not in line and answer: + if not line.startswith(';') and section == 'answer': answer_list.append(_parse_answer(line)) output_entry.update({'answer': answer_list}) continue @@ -673,6 +439,7 @@ def parse(data, raw=False, quiet=False): # footer consists of 4 lines # footer line 1 if line.startswith(';; Query time:'): + section = 'footer' output_entry.update({'query_time': line.split(':')[1].lstrip()}) continue @@ -688,11 +455,13 @@ def parse(data, raw=False, quiet=False): # footer line 4 (last line) if line.startswith(';; MSG SIZE rcvd:'): + section = '' output_entry.update({'rcvd': line.split(':')[1].lstrip()}) if output_entry: raw_output.append(output_entry) elif line.startswith(';; XFR size:'): + section = '' output_entry.update({'size': line.split(':')[1].lstrip()}) if output_entry: diff --git a/tests/fixtures/centos-7.7/dig-axfr.json b/tests/fixtures/centos-7.7/dig-axfr.json index 85beac27..27c9472d 100644 --- a/tests/fixtures/centos-7.7/dig-axfr.json +++ b/tests/fixtures/centos-7.7/dig-axfr.json @@ -1 +1 @@ -[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":182,"server":"81.4.108.41#53(81.4.108.41)","when":"Wed Mar 25 20:01:47 PDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585191707,"when_epoch_utc":null}] +[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"cmdexec.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"; ls\""},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"sshock.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"() { :]}; echo ShellShocked\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":182,"server":"81.4.108.41#53(81.4.108.41)","when":"Wed Mar 25 20:01:47 PDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585191707,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig-axfr.json b/tests/fixtures/osx-10.14.6/dig-axfr.json index 6187877b..06ac0cbc 100644 --- a/tests/fixtures/osx-10.14.6/dig-axfr.json +++ b/tests/fixtures/osx-10.14.6/dig-axfr.json @@ -1 +1 @@ -[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":170,"server":"81.4.108.41#53(81.4.108.41)","when":"Thu Mar 26 16:31:06 PDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585265466,"when_epoch_utc":null}] +[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"cmdexec.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"; ls\""},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"sshock.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"() { :]}; echo ShellShocked\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":170,"server":"81.4.108.41#53(81.4.108.41)","when":"Thu Mar 26 16:31:06 PDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585265466,"when_epoch_utc":null}] diff --git a/tests/fixtures/ubuntu-18.04/dig-axfr.json b/tests/fixtures/ubuntu-18.04/dig-axfr.json index 1e09a863..61690372 100644 --- a/tests/fixtures/ubuntu-18.04/dig-axfr.json +++ b/tests/fixtures/ubuntu-18.04/dig-axfr.json @@ -1 +1 @@ -[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":105,"server":"81.4.108.41#53(81.4.108.41)","when":"Wed Mar 25 14:34:55 EDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585172095,"when_epoch_utc":null}] +[{"axfr":[{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"},{"name":"zonetransfer.me.","ttl":300,"class":"IN","type":"HINFO","data":"\"Casio fx-700G\" \"Windows XP\""},{"name":"zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"google-site-verification=tyP28J7JAUHA9fw2sHXMgcCC0I6XBmmoVi04VlMewxA\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"0 ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT1.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"10 ALT2.ASPMX.L.GOOGLE.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX2.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX3.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX4.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"MX","data":"20 ASPMX5.GOOGLEMAIL.COM."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm1.digi.ninja."},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"NS","data":"nsztm2.digi.ninja."},{"name":"_acme-challenge.zonetransfer.me.","ttl":301,"class":"IN","type":"TXT","data":"\"6Oa05hbUJ9xSsvYy7pApQvwCUSSGgxvrbdizjePEsZI\""},{"name":"_sip._tcp.zonetransfer.me.","ttl":14000,"class":"IN","type":"SRV","data":"0 0 5060 www.zonetransfer.me."},{"name":"14.105.196.5.IN-ADDR.ARPA.zonetransfer.me.","ttl":7200,"class":"IN","type":"PTR","data":"www.zonetransfer.me."},{"name":"asfdbauthdns.zonetransfer.me.","ttl":7900,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"asfdbbox.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"asfdbvolume.zonetransfer.me.","ttl":7800,"class":"IN","type":"AFSDB","data":"1 asfdbbox.zonetransfer.me."},{"name":"canberra-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"202.14.81.230"},{"name":"cmdexec.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"; ls\""},{"name":"contact.zonetransfer.me.","ttl":2592000,"class":"IN","type":"TXT","data":"\"Remember to call or email Pippa on +44 123 4567890 or pippa@zonetransfer.me when making DNS changes\""},{"name":"dc-office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"143.228.181.132"},{"name":"deadbeef.zonetransfer.me.","ttl":7201,"class":"IN","type":"AAAA","data":"dead:beaf::"},{"name":"dr.zonetransfer.me.","ttl":300,"class":"IN","type":"LOC","data":"53 20 56.558 N 1 38 33.526 W 0.00m 1m 10000m 10m"},{"name":"DZC.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"AbCdEfG\""},{"name":"email.zonetransfer.me.","ttl":2222,"class":"IN","type":"NAPTR","data":"1 1 \"P\" \"E2U+email\" \"\" email.zonetransfer.me.zonetransfer.me."},{"name":"email.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"74.125.206.26"},{"name":"Hello.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"Hi to Josh and all his class\""},{"name":"home.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"Info.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"ZoneTransfer.me service provided by Robin Wood - robin@digi.ninja. See http://digi.ninja/projects/zonetransferme.php for more information.\""},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns1.zonetransfer.me."},{"name":"internal.zonetransfer.me.","ttl":300,"class":"IN","type":"NS","data":"intns2.zonetransfer.me."},{"name":"intns1.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"81.4.108.41"},{"name":"intns2.zonetransfer.me.","ttl":300,"class":"IN","type":"A","data":"167.88.42.94"},{"name":"office.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"4.23.39.254"},{"name":"ipv6actnow.org.zonetransfer.me.","ttl":7200,"class":"IN","type":"AAAA","data":"2001:67c:2e8:11::c100:1332"},{"name":"owa.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"207.46.197.32"},{"name":"robinwood.zonetransfer.me.","ttl":302,"class":"IN","type":"TXT","data":"\"Robin Wood\""},{"name":"rp.zonetransfer.me.","ttl":321,"class":"IN","type":"RP","data":"robin.zonetransfer.me. robinwood.zonetransfer.me."},{"name":"sip.zonetransfer.me.","ttl":3333,"class":"IN","type":"NAPTR","data":"2 3 \"P\" \"E2U+sip\" \"!^.*$!sip:customer-service@zonetransfer.me!\" ."},{"name":"sqli.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"' or 1=1 --\""},{"name":"sshock.zonetransfer.me.","ttl":7200,"class":"IN","type":"TXT","data":"\"() { :]}; echo ShellShocked\""},{"name":"staging.zonetransfer.me.","ttl":7200,"class":"IN","type":"CNAME","data":"www.sydneyoperahouse.com."},{"name":"alltcpportsopen.firewall.test.zonetransfer.me.","ttl":301,"class":"IN","type":"A","data":"127.0.0.1"},{"name":"testing.zonetransfer.me.","ttl":301,"class":"IN","type":"CNAME","data":"www.zonetransfer.me."},{"name":"vpn.zonetransfer.me.","ttl":4000,"class":"IN","type":"A","data":"174.36.59.154"},{"name":"www.zonetransfer.me.","ttl":7200,"class":"IN","type":"A","data":"5.196.105.14"},{"name":"xss.zonetransfer.me.","ttl":300,"class":"IN","type":"TXT","data":"\"'>\""},{"name":"zonetransfer.me.","ttl":7200,"class":"IN","type":"SOA","data":"nsztm1.digi.ninja. robin.digi.ninja. 2019100801 172800 900 1209600 3600"}],"query_time":105,"server":"81.4.108.41#53(81.4.108.41)","when":"Wed Mar 25 14:34:55 EDT 2020","size":"50 records (messages 1, bytes 1994)","when_epoch":1585172095,"when_epoch_utc":null}] From c166c0bfdafa922f57f021fa4d16e467fca02d58 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 15:22:22 -0700 Subject: [PATCH 18/36] add opt_pseudosection section to output and fix existing tests --- jc/parsers/dig.py | 50 ++++++++++++++++--- tests/fixtures/centos-7.7/dig-aaaa.json | 2 +- tests/fixtures/centos-7.7/dig-x.json | 2 +- tests/fixtures/centos-7.7/dig.json | 2 +- tests/fixtures/generic/dig-answer-spaces.json | 2 +- tests/fixtures/osx-10.11.6/dig-aaaa.json | 2 +- tests/fixtures/osx-10.11.6/dig-x.json | 2 +- tests/fixtures/osx-10.11.6/dig.json | 2 +- tests/fixtures/osx-10.14.6/dig-aaaa.json | 2 +- tests/fixtures/osx-10.14.6/dig-x.json | 2 +- tests/fixtures/osx-10.14.6/dig.json | 2 +- tests/fixtures/ubuntu-18.04/dig-aaaa.json | 2 +- tests/fixtures/ubuntu-18.04/dig-x.json | 2 +- tests/fixtures/ubuntu-18.04/dig.json | 2 +- 14 files changed, 55 insertions(+), 21 deletions(-) diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 217aeb1d..e26a85eb 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -185,7 +185,6 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ - for entry in proc_data: int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd'] for key in int_list: @@ -204,6 +203,20 @@ def _process(proc_data): except (ValueError): ax['ttl'] = None + if 'opt_pseudosection' in entry: + if 'edns' in entry['opt_pseudosection']: + if 'version' in entry['opt_pseudosection']['edns']: + try: + entry['opt_pseudosection']['edns']['version'] = int(entry['opt_pseudosection']['edns']['version']) + except (ValueError): + entry['opt_pseudosection']['edns']['version'] = None + + if 'udp' in entry['opt_pseudosection']['edns']: + try: + entry['opt_pseudosection']['edns']['udp'] = int(entry['opt_pseudosection']['edns']['udp']) + except (ValueError): + entry['opt_pseudosection']['edns']['udp'] = None + if 'answer' in entry: for ans in entry['answer']: try: @@ -275,7 +288,25 @@ def _parse_opt_pseudosection(optline): # ;; OPT PSEUDOSECTION: # ; EDNS: version: 0, flags:; udp: 4096 # ; COOKIE: 1cbc06703eaef210 - return {} + if optline.startswith('; EDNS:'): + optline_list = optline.replace(',', ' ').split(';') + optline_first = optline_list[1] + optline_rest = optline_list[2] + _, _, ver, _, *flags = optline_first.split() + udp = optline_rest.split()[-1] + + return { + 'edns': { + 'version': ver, + 'flags': flags, + 'udp': udp + } + } + + elif optline.startswith('; COOKIE:'): + return { + 'cookie': optline.split()[2] + } def _parse_question(question): @@ -393,9 +424,9 @@ def parse(data, raw=False, quiet=False): output_entry.update(_parse_flags_line(line)) continue - # if line.startswith(';; OPT PSEUDOSECTION:'): - # section = 'opt_pseudosection' - # continue + if line.startswith(';; OPT PSEUDOSECTION:'): + section = 'opt_pseudosection' + continue if line.startswith(';; QUESTION SECTION:'): section = 'question' @@ -418,9 +449,11 @@ def parse(data, raw=False, quiet=False): output_entry.update({'axfr': axfr_list}) continue - # if section == 'opt_pseudosection': - # # output_entry.update(_parse_opt_pseudosection(line)) - # continue + if section == 'opt_pseudosection': + if 'opt_pseudosection' not in output_entry: + output_entry['opt_pseudosection'] = {} + output_entry['opt_pseudosection'].update(_parse_opt_pseudosection(line)) + continue if section == 'question': output_entry['question'] = _parse_question(line) @@ -460,6 +493,7 @@ def parse(data, raw=False, quiet=False): if output_entry: raw_output.append(output_entry) + elif line.startswith(';; XFR size:'): section = '' output_entry.update({'size': line.split(':')[1].lstrip()}) diff --git a/tests/fixtures/centos-7.7/dig-aaaa.json b/tests/fixtures/centos-7.7/dig-aaaa.json index 70b7e04c..49ed026a 100644 --- a/tests/fixtures/centos-7.7/dig-aaaa.json +++ b/tests/fixtures/centos-7.7/dig-aaaa.json @@ -1 +1 @@ -[{"id":25779,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":5,"data":"2607:f8b0:4000:808::2004"}],"query_time":28,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:12:53 PDT 2019","rcvd":71,"when_epoch":1572437573,"when_epoch_utc":null}] +[{"id":25779,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":5,"data":"2607:f8b0:4000:808::2004"}],"query_time":28,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:12:53 PDT 2019","rcvd":71,"when_epoch":1572437573,"when_epoch_utc":null}] diff --git a/tests/fixtures/centos-7.7/dig-x.json b/tests/fixtures/centos-7.7/dig-x.json index b71f5dd8..e880568c 100644 --- a/tests/fixtures/centos-7.7/dig-x.json +++ b/tests/fixtures/centos-7.7/dig-x.json @@ -1 +1 @@ -[{"id":36298,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":5,"data":"one.one.one.one."}],"query_time":32,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:36 PDT 2019","rcvd":78,"when_epoch":1572437616,"when_epoch_utc":null}] +[{"id":36298,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":5,"data":"one.one.one.one."}],"query_time":32,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:36 PDT 2019","rcvd":78,"when_epoch":1572437616,"when_epoch_utc":null}] diff --git a/tests/fixtures/centos-7.7/dig.json b/tests/fixtures/centos-7.7/dig.json index bf25b3c5..bbd52bdf 100644 --- a/tests/fixtures/centos-7.7/dig.json +++ b/tests/fixtures/centos-7.7/dig.json @@ -1 +1 @@ -[{"id":44295,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":2,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":5,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":5,"data":"151.101.189.67"}],"query_time":25,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:22 PDT 2019","rcvd":95,"when_epoch":1572437602,"when_epoch_utc":null},{"id":34074,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":5,"data":"216.58.194.100"}],"query_time":25,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:22 PDT 2019","rcvd":59,"when_epoch":1572437602,"when_epoch_utc":null}] +[{"id":44295,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":2,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":5,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":5,"data":"151.101.189.67"}],"query_time":25,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:22 PDT 2019","rcvd":95,"when_epoch":1572437602,"when_epoch_utc":null},{"id":34074,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":5,"data":"216.58.194.100"}],"query_time":25,"server":"192.168.71.2#53(192.168.71.2)","when":"Wed Oct 30 05:13:22 PDT 2019","rcvd":59,"when_epoch":1572437602,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-answer-spaces.json b/tests/fixtures/generic/dig-answer-spaces.json index 7a22b7e8..dd47bec0 100644 --- a/tests/fixtures/generic/dig-answer-spaces.json +++ b/tests/fixtures/generic/dig-answer-spaces.json @@ -1 +1 @@ -[{"id":26965,"opcode":"QUERY","status":"NXDOMAIN","flags":["qr","rd","ra"],"query_num":1,"answer_num":0,"authority_num":1,"additional_num":1,"question":{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT"},"authority":[{"name":"bl.spamcop.net.","class":"IN","type":"SOA","ttl":0,"data":"bl.spamcop.net."}],"answer":[{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT","ttl":2100,"data":"Blocked - see https://www.spamcop.net/bl.shtml?w.z.y.x"}],"query_time":297,"server":"192.168.1.254#53(192.168.1.254)","when":"Fri Feb 05 06:28:58 PST 2021","rcvd":104,"when_epoch":1612535338,"when_epoch_utc":null}] +[{"id":26965,"opcode":"QUERY","status":"NXDOMAIN","flags":["qr","rd","ra"],"query_num":1,"answer_num":0,"authority_num":1,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT"},"authority":[{"name":"bl.spamcop.net.","class":"IN","type":"SOA","ttl":0,"data":"bl.spamcop.net."}],"answer":[{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT","ttl":2100,"data":"Blocked - see https://www.spamcop.net/bl.shtml?w.z.y.x"}],"query_time":297,"server":"192.168.1.254#53(192.168.1.254)","when":"Fri Feb 05 06:28:58 PST 2021","rcvd":104,"when_epoch":1612535338,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.11.6/dig-aaaa.json b/tests/fixtures/osx-10.11.6/dig-aaaa.json index 676cd4ec..86ad708e 100644 --- a/tests/fixtures/osx-10.11.6/dig-aaaa.json +++ b/tests/fixtures/osx-10.11.6/dig-aaaa.json @@ -1 +1 @@ -[{"id":41369,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":197,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":71,"when_epoch":1576112257,"when_epoch_utc":null}] +[{"id":41369,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":197,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":71,"when_epoch":1576112257,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.11.6/dig-x.json b/tests/fixtures/osx-10.11.6/dig-x.json index 4e839bd0..9510b1d3 100644 --- a/tests/fixtures/osx-10.11.6/dig-x.json +++ b/tests/fixtures/osx-10.11.6/dig-x.json @@ -1 +1 @@ -[{"id":15549,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":34,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":78,"when_epoch":1576112257,"when_epoch_utc":null}] +[{"id":15549,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":34,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":78,"when_epoch":1576112257,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.11.6/dig.json b/tests/fixtures/osx-10.11.6/dig.json index 241009d2..0a739486 100644 --- a/tests/fixtures/osx-10.11.6/dig.json +++ b/tests/fixtures/osx-10.11.6/dig.json @@ -1 +1 @@ -[{"id":57483,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":199,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.129.67"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":143,"when_epoch":1576112257,"when_epoch_utc":null},{"id":53268,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":194,"data":"172.217.9.164"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":59,"when_epoch":1576112257,"when_epoch_utc":null}] +[{"id":57483,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":199,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":13,"data":"151.101.129.67"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":143,"when_epoch":1576112257,"when_epoch_utc":null},{"id":53268,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":194,"data":"172.217.9.164"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:57:37 PST 2019","rcvd":59,"when_epoch":1576112257,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig-aaaa.json b/tests/fixtures/osx-10.14.6/dig-aaaa.json index a16d5b3a..702d730a 100644 --- a/tests/fixtures/osx-10.14.6/dig-aaaa.json +++ b/tests/fixtures/osx-10.14.6/dig-aaaa.json @@ -1 +1 @@ -[{"id":61441,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":63,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":71,"when_epoch":1576112090,"when_epoch_utc":null}] +[{"id":61441,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":63,"data":"2607:f8b0:4000:817::2004"}],"query_time":30,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":71,"when_epoch":1576112090,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig-x.json b/tests/fixtures/osx-10.14.6/dig-x.json index 1d625229..31841ee8 100644 --- a/tests/fixtures/osx-10.14.6/dig-x.json +++ b/tests/fixtures/osx-10.14.6/dig-x.json @@ -1 +1 @@ -[{"id":27071,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":39,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:51 PST 2019","rcvd":78,"when_epoch":1576112091,"when_epoch_utc":null}] +[{"id":27071,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":1800,"data":"one.one.one.one."}],"query_time":39,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:51 PST 2019","rcvd":78,"when_epoch":1576112091,"when_epoch_utc":null}] diff --git a/tests/fixtures/osx-10.14.6/dig.json b/tests/fixtures/osx-10.14.6/dig.json index 9fe53914..2e27c410 100644 --- a/tests/fixtures/osx-10.14.6/dig.json +++ b/tests/fixtures/osx-10.14.6/dig.json @@ -1 +1 @@ -[{"id":54065,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":72,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.129.67"}],"query_time":41,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":143,"when_epoch":1576112090,"when_epoch_utc":null},{"id":64484,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":64,"data":"172.217.12.68"}],"query_time":31,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":59,"when_epoch":1576112090,"when_epoch_utc":null}] +[{"id":54065,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":72,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":1,"data":"151.101.129.67"}],"query_time":41,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":143,"when_epoch":1576112090,"when_epoch_utc":null},{"id":64484,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":64,"data":"172.217.12.68"}],"query_time":31,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Wed Dec 11 16:54:50 PST 2019","rcvd":59,"when_epoch":1576112090,"when_epoch_utc":null}] diff --git a/tests/fixtures/ubuntu-18.04/dig-aaaa.json b/tests/fixtures/ubuntu-18.04/dig-aaaa.json index 1474d3e5..b9aa0dc3 100644 --- a/tests/fixtures/ubuntu-18.04/dig-aaaa.json +++ b/tests/fixtures/ubuntu-18.04/dig-aaaa.json @@ -1 +1 @@ -[{"id":45806,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":5,"data":"2607:f8b0:4000:812::2004"}],"query_time":39,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":71,"when_epoch":1572556864,"when_epoch_utc":1572531664}] +[{"id":45806,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"www.google.com.","class":"IN","type":"AAAA"},"answer":[{"name":"www.google.com.","class":"IN","type":"AAAA","ttl":5,"data":"2607:f8b0:4000:812::2004"}],"query_time":39,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":71,"when_epoch":1572556864,"when_epoch_utc":1572531664}] diff --git a/tests/fixtures/ubuntu-18.04/dig-x.json b/tests/fixtures/ubuntu-18.04/dig-x.json index d0ee3c31..dad1da6c 100644 --- a/tests/fixtures/ubuntu-18.04/dig-x.json +++ b/tests/fixtures/ubuntu-18.04/dig-x.json @@ -1 +1 @@ -[{"id":28514,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":5,"data":"one.one.one.one."}],"query_time":37,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:05 UTC 2019","rcvd":78,"when_epoch":1572556865,"when_epoch_utc":1572531665}] +[{"id":28514,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR"},"answer":[{"name":"1.1.1.1.in-addr.arpa.","class":"IN","type":"PTR","ttl":5,"data":"one.one.one.one."}],"query_time":37,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:05 UTC 2019","rcvd":78,"when_epoch":1572556865,"when_epoch_utc":1572531665}] diff --git a/tests/fixtures/ubuntu-18.04/dig.json b/tests/fixtures/ubuntu-18.04/dig.json index 7cef87a3..e2e0a2ce 100644 --- a/tests/fixtures/ubuntu-18.04/dig.json +++ b/tests/fixtures/ubuntu-18.04/dig.json @@ -1 +1 @@ -[{"id":52284,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":5,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.129.67"}],"query_time":31,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":143,"when_epoch":1572556864,"when_epoch_utc":1572531664},{"id":47686,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":5,"data":"172.217.1.228"}],"query_time":32,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":59,"when_epoch":1572556864,"when_epoch_utc":1572531664}] +[{"id":52284,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":5,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"www.cnn.com.","class":"IN","type":"A"},"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":5,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":4,"data":"151.101.129.67"}],"query_time":31,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":143,"when_epoch":1572556864,"when_epoch_utc":1572531664},{"id":47686,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":65494}},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":5,"data":"172.217.1.228"}],"query_time":32,"server":"127.0.0.53#53(127.0.0.53)","when":"Thu Oct 31 14:21:04 UTC 2019","rcvd":59,"when_epoch":1572556864,"when_epoch_utc":1572531664}] From 7c584b89a6e6b924d53d50103b97f0c2405c33b1 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 16:04:06 -0700 Subject: [PATCH 19/36] add additional section --- jc/parsers/dig.py | 123 ++++++++++-------- tests/fixtures/generic/dig-additional.json | 1 + tests/fixtures/generic/dig-additional.out | 32 +++++ tests/fixtures/generic/dig-additional2.json | 1 + tests/fixtures/generic/dig-additional2.out | 34 +++++ tests/fixtures/generic/dig-additional3.json | 1 + tests/fixtures/generic/dig-additional3.out | 41 ++++++ tests/fixtures/generic/dig-answer-spaces.json | 2 +- tests/fixtures/generic/dig-edns.json | 1 + tests/fixtures/generic/dig-edns.out | 20 +++ tests/fixtures/generic/dig-edns2.json | 1 + tests/fixtures/generic/dig-edns2.out | 38 ++++++ tests/fixtures/generic/dig-edns3.json | 1 + tests/fixtures/generic/dig-edns3.out | 34 +++++ tests/test_dig.py | 74 +++++++++++ 15 files changed, 352 insertions(+), 52 deletions(-) create mode 100644 tests/fixtures/generic/dig-additional.json create mode 100644 tests/fixtures/generic/dig-additional.out create mode 100644 tests/fixtures/generic/dig-additional2.json create mode 100644 tests/fixtures/generic/dig-additional2.out create mode 100644 tests/fixtures/generic/dig-additional3.json create mode 100644 tests/fixtures/generic/dig-additional3.out create mode 100644 tests/fixtures/generic/dig-edns.json create mode 100644 tests/fixtures/generic/dig-edns.out create mode 100644 tests/fixtures/generic/dig-edns2.json create mode 100644 tests/fixtures/generic/dig-edns2.out create mode 100644 tests/fixtures/generic/dig-edns3.json create mode 100644 tests/fixtures/generic/dig-edns3.out diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index e26a85eb..5cfd47a1 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -21,55 +21,74 @@ Schema: [ { - "id": integer, - "opcode": string, - "status": string, + "id": integer, + "opcode": string, + "status": string, "flags": [ - string + string ], - "query_num": integer, - "answer_num": integer, - "authority_num": integer, - "additional_num": integer, + "query_num": integer, + "answer_num": integer, + "authority_num": integer, + "additional_num": integer, "axfr": [ { - "name": string, - "class": string, - "type": string, - "ttl": integer, - "data": string + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string } ], + "opt_pseudosection": { + "edns": { + "version": integer, + "flags": [ + string + ], + "udp": integer + }, + "cookie": string + }, "question": { - "name": string, - "class": string, - "type": string + "name": string, + "class": string, + "type": string }, "answer": [ { - "name": string, - "class": string, - "type": string, - "ttl": integer, - "data": string + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string + } + ], + "additional": [ + { + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string } ], "authority": [ { - "name": string, - "class": string, - "type": string, - "ttl": integer, - "data": string + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string } ], - "query_time": integer, # in msec - "server": string, - "when": string, - "when_epoch": integer, # naive timestamp if when field is parsable, else null - "when_epoch_utc": integer, # timezone aware timestamp availabe for UTC, else null - "rcvd": integer - "size": string + "query_time": integer, # in msec + "server": string, + "when": string, + "when_epoch": integer, # naive timestamp if when field is parsable, else null + "when_epoch_utc": integer, # timezone aware timestamp availabe for UTC, else null + "rcvd": integer + "size": string } ] @@ -160,7 +179,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.8' + version = '2.0' description = '`dig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -225,6 +244,14 @@ def _process(proc_data): except (ValueError): ans['ttl'] = None + if 'additional' in entry: + for add in entry['additional']: + try: + ttl_int = int(add['ttl']) + add['ttl'] = ttl_int + except (ValueError): + add['ttl'] = None + if 'authority' in entry: for auth in entry['authority']: try: @@ -321,22 +348,6 @@ def _parse_question(question): 'type': dns_type} -def _parse_authority(authority): - # cnn.com. 3600 IN NS ns-1086.awsdns-07.org. - authority = authority.split() - authority_name = authority[0] - authority_class = authority[2] - authority_type = authority[3] - authority_ttl = authority[1] - authority_data = authority[4] - - return {'name': authority_name, - 'class': authority_class, - 'type': authority_type, - 'ttl': authority_ttl, - 'data': authority_data} - - def _parse_answer(answer): # www.cnn.com. 5 IN CNAME turner-tls.map.fastly.net. answer = answer.split(maxsplit=4) @@ -442,6 +453,11 @@ def parse(data, raw=False, quiet=False): answer_list = [] continue + if line.startswith(';; ADDITIONAL SECTION:'): + section = 'additional' + additional_list = [] + continue + # parse sections if not line.startswith(';') and section == 'axfr': @@ -460,7 +476,7 @@ def parse(data, raw=False, quiet=False): continue if not line.startswith(';') and section == 'authority': - authority_list.append(_parse_authority(line)) + authority_list.append(_parse_answer(line)) output_entry.update({'authority': authority_list}) continue @@ -469,6 +485,11 @@ def parse(data, raw=False, quiet=False): output_entry.update({'answer': answer_list}) continue + if not line.startswith(';') and section == 'additional': + additional_list.append(_parse_answer(line)) + output_entry.update({'additional': additional_list}) + continue + # footer consists of 4 lines # footer line 1 if line.startswith(';; Query time:'): diff --git a/tests/fixtures/generic/dig-additional.json b/tests/fixtures/generic/dig-additional.json new file mode 100644 index 00000000..3d970d5e --- /dev/null +++ b/tests/fixtures/generic/dig-additional.json @@ -0,0 +1 @@ +[{"id":12149,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd"],"query_num":1,"answer_num":0,"authority_num":4,"additional_num":9,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"google.com.","class":"IN","type":"NS"},"authority":[{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns2.google.com."},{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns1.google.com."},{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns3.google.com."},{"name":"google.com.","class":"IN","type":"NS","ttl":172800,"data":"ns4.google.com."}],"additional":[{"name":"ns2.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:34::a"},{"name":"ns2.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.34.10"},{"name":"ns1.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:32::a"},{"name":"ns1.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.32.10"},{"name":"ns3.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:36::a"},{"name":"ns3.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.36.10"},{"name":"ns4.google.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:4860:4802:38::a"},{"name":"ns4.google.com.","class":"IN","type":"A","ttl":172800,"data":"216.239.38.10"}],"query_time":68,"server":"192.5.6.30#53(192.5.6.30)","when":"Mon Sep 03 19:23:20 EST 2018","rcvd":287,"when_epoch":1536027800,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-additional.out b/tests/fixtures/generic/dig-additional.out new file mode 100644 index 00000000..777d626f --- /dev/null +++ b/tests/fixtures/generic/dig-additional.out @@ -0,0 +1,32 @@ +; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> google.com NS @a.gtld-servers.net +;; global options: +cmd +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12149 +;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 4, ADDITIONAL: 9 +;; WARNING: recursion requested but not available + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags:; udp: 4096 +;; QUESTION SECTION: +;google.com. IN NS + +;; AUTHORITY SECTION: +google.com. 172800 IN NS ns2.google.com. +google.com. 172800 IN NS ns1.google.com. +google.com. 172800 IN NS ns3.google.com. +google.com. 172800 IN NS ns4.google.com. + +;; ADDITIONAL SECTION: +ns2.google.com. 172800 IN AAAA 2001:4860:4802:34::a +ns2.google.com. 172800 IN A 216.239.34.10 +ns1.google.com. 172800 IN AAAA 2001:4860:4802:32::a +ns1.google.com. 172800 IN A 216.239.32.10 +ns3.google.com. 172800 IN AAAA 2001:4860:4802:36::a +ns3.google.com. 172800 IN A 216.239.36.10 +ns4.google.com. 172800 IN AAAA 2001:4860:4802:38::a +ns4.google.com. 172800 IN A 216.239.38.10 + +;; Query time: 68 msec +;; SERVER: 192.5.6.30#53(192.5.6.30) +;; WHEN: Mon Sep 03 19:23:20 EST 2018 +;; MSG SIZE rcvd: 287 diff --git a/tests/fixtures/generic/dig-additional2.json b/tests/fixtures/generic/dig-additional2.json new file mode 100644 index 00000000..a13fd1d1 --- /dev/null +++ b/tests/fixtures/generic/dig-additional2.json @@ -0,0 +1 @@ +[{"id":54105,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd"],"query_num":1,"answer_num":0,"authority_num":10,"additional_num":5,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"ultradns.com.","class":"IN","type":"NS"},"authority":[{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.com."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.net."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.org."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.info."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.biz."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.co.uk."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.alpha.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.beta.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.gamma.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.delta.aridns.net.au."}],"additional":[{"name":"pdns196.ultradns.com.","class":"IN","type":"A","ttl":172800,"data":"156.154.64.196"},{"name":"pdns196.ultradns.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:502:f3ff::e8"},{"name":"pdns196.ultradns.net.","class":"IN","type":"A","ttl":172800,"data":"156.154.65.196"},{"name":"pdns196.ultradns.net.","class":"IN","type":"AAAA","ttl":172800,"data":"2610:a1:1014::e8"}],"query_time":72,"server":"192.5.6.30#53(192.5.6.30)","when":"Mon Sep 03 19:25:24 EST 2018","rcvd":432,"when_epoch":1536027924,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-additional2.out b/tests/fixtures/generic/dig-additional2.out new file mode 100644 index 00000000..18dadf79 --- /dev/null +++ b/tests/fixtures/generic/dig-additional2.out @@ -0,0 +1,34 @@ +; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> ultradns.com NS @a.gtld-servers.net +;; global options: +cmd +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54105 +;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 10, ADDITIONAL: 5 +;; WARNING: recursion requested but not available + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags:; udp: 4096 +;; QUESTION SECTION: +;ultradns.com. IN NS + +;; AUTHORITY SECTION: +ultradns.com. 172800 IN NS pdns196.ultradns.com. +ultradns.com. 172800 IN NS pdns196.ultradns.net. +ultradns.com. 172800 IN NS pdns196.ultradns.org. +ultradns.com. 172800 IN NS pdns196.ultradns.info. +ultradns.com. 172800 IN NS pdns196.ultradns.biz. +ultradns.com. 172800 IN NS pdns196.ultradns.co.uk. +ultradns.com. 172800 IN NS ari.alpha.aridns.net.au. +ultradns.com. 172800 IN NS ari.beta.aridns.net.au. +ultradns.com. 172800 IN NS ari.gamma.aridns.net.au. +ultradns.com. 172800 IN NS ari.delta.aridns.net.au. + +;; ADDITIONAL SECTION: +pdns196.ultradns.com. 172800 IN A 156.154.64.196 +pdns196.ultradns.com. 172800 IN AAAA 2001:502:f3ff::e8 +pdns196.ultradns.net. 172800 IN A 156.154.65.196 +pdns196.ultradns.net. 172800 IN AAAA 2610:a1:1014::e8 + +;; Query time: 72 msec +;; SERVER: 192.5.6.30#53(192.5.6.30) +;; WHEN: Mon Sep 03 19:25:24 EST 2018 +;; MSG SIZE rcvd: 432 diff --git a/tests/fixtures/generic/dig-additional3.json b/tests/fixtures/generic/dig-additional3.json new file mode 100644 index 00000000..140115d1 --- /dev/null +++ b/tests/fixtures/generic/dig-additional3.json @@ -0,0 +1 @@ +[{"id":54105,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd"],"query_num":1,"answer_num":0,"authority_num":10,"additional_num":5,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"ultradns.com.","class":"IN","type":"NS"},"authority":[{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.com."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.net."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.org."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.info."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.biz."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"pdns196.ultradns.co.uk."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.alpha.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.beta.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.gamma.aridns.net.au."},{"name":"ultradns.com.","class":"IN","type":"NS","ttl":172800,"data":"ari.delta.aridns.net.au."}],"answer":[{"name":"www.cnn.com.","class":"IN","type":"CNAME","ttl":93,"data":"turner-tls.map.fastly.net."},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.193.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.65.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.1.67"},{"name":"turner-tls.map.fastly.net.","class":"IN","type":"A","ttl":8,"data":"151.101.129.67"}],"additional":[{"name":"pdns196.ultradns.com.","class":"IN","type":"A","ttl":172800,"data":"156.154.64.196"},{"name":"pdns196.ultradns.com.","class":"IN","type":"AAAA","ttl":172800,"data":"2001:502:f3ff::e8"},{"name":"pdns196.ultradns.net.","class":"IN","type":"A","ttl":172800,"data":"156.154.65.196"},{"name":"pdns196.ultradns.net.","class":"IN","type":"AAAA","ttl":172800,"data":"2610:a1:1014::e8"}],"query_time":72,"server":"192.5.6.30#53(192.5.6.30)","when":"Mon Sep 03 19:25:24 EST 2018","rcvd":432,"when_epoch":1536027924,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-additional3.out b/tests/fixtures/generic/dig-additional3.out new file mode 100644 index 00000000..df4cf0fa --- /dev/null +++ b/tests/fixtures/generic/dig-additional3.out @@ -0,0 +1,41 @@ +; <<>> DiG 9.11.3-1ubuntu1.1-Ubuntu <<>> ultradns.com NS @a.gtld-servers.net +;; global options: +cmd +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 54105 +;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 10, ADDITIONAL: 5 +;; WARNING: recursion requested but not available + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags:; udp: 4096 +;; QUESTION SECTION: +;ultradns.com. IN NS + +;; AUTHORITY SECTION: +ultradns.com. 172800 IN NS pdns196.ultradns.com. +ultradns.com. 172800 IN NS pdns196.ultradns.net. +ultradns.com. 172800 IN NS pdns196.ultradns.org. +ultradns.com. 172800 IN NS pdns196.ultradns.info. +ultradns.com. 172800 IN NS pdns196.ultradns.biz. +ultradns.com. 172800 IN NS pdns196.ultradns.co.uk. +ultradns.com. 172800 IN NS ari.alpha.aridns.net.au. +ultradns.com. 172800 IN NS ari.beta.aridns.net.au. +ultradns.com. 172800 IN NS ari.gamma.aridns.net.au. +ultradns.com. 172800 IN NS ari.delta.aridns.net.au. + +;; ANSWER SECTION: +www.cnn.com. 93 IN CNAME turner-tls.map.fastly.net. +turner-tls.map.fastly.net. 8 IN A 151.101.193.67 +turner-tls.map.fastly.net. 8 IN A 151.101.65.67 +turner-tls.map.fastly.net. 8 IN A 151.101.1.67 +turner-tls.map.fastly.net. 8 IN A 151.101.129.67 + +;; ADDITIONAL SECTION: +pdns196.ultradns.com. 172800 IN A 156.154.64.196 +pdns196.ultradns.com. 172800 IN AAAA 2001:502:f3ff::e8 +pdns196.ultradns.net. 172800 IN A 156.154.65.196 +pdns196.ultradns.net. 172800 IN AAAA 2610:a1:1014::e8 + +;; Query time: 72 msec +;; SERVER: 192.5.6.30#53(192.5.6.30) +;; WHEN: Mon Sep 03 19:25:24 EST 2018 +;; MSG SIZE rcvd: 432 diff --git a/tests/fixtures/generic/dig-answer-spaces.json b/tests/fixtures/generic/dig-answer-spaces.json index dd47bec0..2921e893 100644 --- a/tests/fixtures/generic/dig-answer-spaces.json +++ b/tests/fixtures/generic/dig-answer-spaces.json @@ -1 +1 @@ -[{"id":26965,"opcode":"QUERY","status":"NXDOMAIN","flags":["qr","rd","ra"],"query_num":1,"answer_num":0,"authority_num":1,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT"},"authority":[{"name":"bl.spamcop.net.","class":"IN","type":"SOA","ttl":0,"data":"bl.spamcop.net."}],"answer":[{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT","ttl":2100,"data":"Blocked - see https://www.spamcop.net/bl.shtml?w.z.y.x"}],"query_time":297,"server":"192.168.1.254#53(192.168.1.254)","when":"Fri Feb 05 06:28:58 PST 2021","rcvd":104,"when_epoch":1612535338,"when_epoch_utc":null}] +[{"id":26965,"opcode":"QUERY","status":"NXDOMAIN","flags":["qr","rd","ra"],"query_num":1,"answer_num":0,"authority_num":1,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question":{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT"},"authority":[{"name":"bl.spamcop.net.","class":"IN","type":"SOA","ttl":0,"data":"bl.spamcop.net. hostmaster.admin.spamcop.net. 1612535191 3600 1800 3600 0"}],"answer":[{"name":"x.y.z.w.bl.spamcop.net.","class":"IN","type":"TXT","ttl":2100,"data":"Blocked - see https://www.spamcop.net/bl.shtml?w.z.y.x"}],"query_time":297,"server":"192.168.1.254#53(192.168.1.254)","when":"Fri Feb 05 06:28:58 PST 2021","rcvd":104,"when_epoch":1612535338,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-edns.json b/tests/fixtures/generic/dig-edns.json new file mode 100644 index 00000000..21f8cb3b --- /dev/null +++ b/tests/fixtures/generic/dig-edns.json @@ -0,0 +1 @@ +[{"id":24245,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":4096},"cookie":"b5dafd2648fa583b"},"question":{"name":"www.google.com.","class":"IN","type":"A"},"answer":[{"name":"www.google.com.","class":"IN","type":"A","ttl":177,"data":"216.58.195.132"}],"query_time":53,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when":"Thu Apr 15 10:19:50 PDT 2021","rcvd":59,"when_epoch":1618507190,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-edns.out b/tests/fixtures/generic/dig-edns.out new file mode 100644 index 00000000..c1f6e434 --- /dev/null +++ b/tests/fixtures/generic/dig-edns.out @@ -0,0 +1,20 @@ +; <<>> DiG 9.10.6 <<>> www.google.com +;; global options: +cmd +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 24245 +;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags: do; udp: 4096 +; COOKIE: b5dafd2648fa583b +;; QUESTION SECTION: +;www.google.com. IN A + +;; ANSWER SECTION: +www.google.com. 177 IN A 216.58.195.132 + +;; Query time: 53 msec +;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) +;; WHEN: Thu Apr 15 10:19:50 PDT 2021 +;; MSG SIZE rcvd: 59 + diff --git a/tests/fixtures/generic/dig-edns2.json b/tests/fixtures/generic/dig-edns2.json new file mode 100644 index 00000000..222f7b31 --- /dev/null +++ b/tests/fixtures/generic/dig-edns2.json @@ -0,0 +1 @@ +[{"id":8794,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra","ad"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":512}},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"answer":[{"name":"metebalci.com.","class":"IN","type":"A","ttl":59,"data":"104.198.14.52"}],"query_time":53,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Apr 16 14:19:58 PDT 2021","rcvd":58,"when_epoch":1618607998,"when_epoch_utc":null},{"id":39319,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":512}},"question":{"name":"google.com.","class":"IN","type":"A"},"answer":[{"name":"google.com.","class":"IN","type":"A","ttl":82,"data":"216.58.194.206"}],"query_time":32,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Apr 16 14:19:58 PDT 2021","rcvd":55,"when_epoch":1618607998,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-edns2.out b/tests/fixtures/generic/dig-edns2.out new file mode 100644 index 00000000..b66efb29 --- /dev/null +++ b/tests/fixtures/generic/dig-edns2.out @@ -0,0 +1,38 @@ + +; <<>> DiG 9.10.6 <<>> @8.8.8.8 metebalci.com google.com +dnssec +; (1 server found) +;; global options: +cmd +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 8794 +;; flags: qr rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags:; udp: 512 +;; QUESTION SECTION: +;metebalci.com. IN A + +;; ANSWER SECTION: +metebalci.com. 59 IN A 104.198.14.52 + +;; Query time: 53 msec +;; SERVER: 8.8.8.8#53(8.8.8.8) +;; WHEN: Fri Apr 16 14:19:58 PDT 2021 +;; MSG SIZE rcvd: 58 + +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 39319 +;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags: do; udp: 512 +;; QUESTION SECTION: +;google.com. IN A + +;; ANSWER SECTION: +google.com. 82 IN A 216.58.194.206 + +;; Query time: 32 msec +;; SERVER: 8.8.8.8#53(8.8.8.8) +;; WHEN: Fri Apr 16 14:19:58 PDT 2021 +;; MSG SIZE rcvd: 55 + diff --git a/tests/fixtures/generic/dig-edns3.json b/tests/fixtures/generic/dig-edns3.json new file mode 100644 index 00000000..a863d25f --- /dev/null +++ b/tests/fixtures/generic/dig-edns3.json @@ -0,0 +1 @@ +[{"id":37727,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra","ad"],"query_num":1,"answer_num":3,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":512}},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"answer":[{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.1.195"},{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.65.195"},{"name":"metebalci.com.","class":"IN","type":"RRSIG","ttl":299,"data":"A 8 2 300 20181227144044 20181205144044 59764 metebalci.com. z6FupNLEU/8OcB3rNMkVqVaan05Xu89T8hV6+IC7LGjWPtrD+TlNJd8D cGeq8xJLR8b1Q+gBK0QSxpGvk89GaCTjNtMGHLBBdgpyV4syFv2BNzK7 iAJhA8QJ6i5xVFJdzMSsn3WvQvN1W71sirt8+56r1nQ47aVkBSLJoZKP lgw="}],"query_time":41,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Dec 07 14:09:43 CET 2018","rcvd":247,"when_epoch":1544220583,"when_epoch_utc":null}] diff --git a/tests/fixtures/generic/dig-edns3.out b/tests/fixtures/generic/dig-edns3.out new file mode 100644 index 00000000..2aa4f08f --- /dev/null +++ b/tests/fixtures/generic/dig-edns3.out @@ -0,0 +1,34 @@ +; <<>> DiG 9.11.3-1ubuntu1.3-Ubuntu <<>> @8.8.8.8 metebalci.com +qr +dnssec +; (1 server found) +;; global options: +cmd +;; Sending: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 37727 +;; flags: rd ad; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1 + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags: do; udp: 4096 +; COOKIE: a263795b817be1b1 +;; QUESTION SECTION: +;metebalci.com. IN A + +;; QUERY SIZE: 54 + +;; Got answer: +;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 37727 +;; flags: qr rd ra ad; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 1 + +;; OPT PSEUDOSECTION: +; EDNS: version: 0, flags: do; udp: 512 +;; QUESTION SECTION: +;metebalci.com. IN A + +;; ANSWER SECTION: +metebalci.com. 299 IN A 151.101.1.195 +metebalci.com. 299 IN A 151.101.65.195 +metebalci.com. 299 IN RRSIG A 8 2 300 20181227144044 20181205144044 59764 metebalci.com. z6FupNLEU/8OcB3rNMkVqVaan05Xu89T8hV6+IC7LGjWPtrD+TlNJd8D cGeq8xJLR8b1Q+gBK0QSxpGvk89GaCTjNtMGHLBBdgpyV4syFv2BNzK7 iAJhA8QJ6i5xVFJdzMSsn3WvQvN1W71sirt8+56r1nQ47aVkBSLJoZKP lgw= + +;; Query time: 41 msec +;; SERVER: 8.8.8.8#53(8.8.8.8) +;; WHEN: Fri Dec 07 14:09:43 CET 2018 +;; MSG SIZE rcvd: 247 + diff --git a/tests/test_dig.py b/tests/test_dig.py index 50706f7e..cba855fd 100644 --- a/tests/test_dig.py +++ b/tests/test_dig.py @@ -58,6 +58,25 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-answer-spaces.out'), 'r', encoding='utf-8') as f: self.generic_dig_answer_spaces = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional.out'), 'r', encoding='utf-8') as f: + self.generic_dig_additional = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional2.out'), 'r', encoding='utf-8') as f: + self.generic_dig_additional2 = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional3.out'), 'r', encoding='utf-8') as f: + self.generic_dig_additional3 = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns.out'), 'r', encoding='utf-8') as f: + self.generic_dig_edns = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns2.out'), 'r', encoding='utf-8') as f: + self.generic_dig_edns2 = f.read() + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns3.out'), 'r', encoding='utf-8') as f: + self.generic_dig_edns3 = f.read() + # output with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/centos-7.7/dig.json'), 'r', encoding='utf-8') as f: self.centos_7_7_dig_json = json.loads(f.read()) @@ -107,6 +126,25 @@ class MyTests(unittest.TestCase): with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-answer-spaces.json'), 'r', encoding='utf-8') as f: self.generic_dig_answer_spaces_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional.json'), 'r', encoding='utf-8') as f: + self.generic_dig_additional_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional2.json'), 'r', encoding='utf-8') as f: + self.generic_dig_additional2_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-additional3.json'), 'r', encoding='utf-8') as f: + self.generic_dig_additional3_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns.json'), 'r', encoding='utf-8') as f: + self.generic_dig_edns_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns2.json'), 'r', encoding='utf-8') as f: + self.generic_dig_edns2_json = json.loads(f.read()) + + with open(os.path.join(THIS_DIR, os.pardir, 'tests/fixtures/generic/dig-edns3.json'), 'r', encoding='utf-8') as f: + self.generic_dig_edns3_json = json.loads(f.read()) + def test_dig_nodata(self): """ Test 'dig' with no data @@ -209,6 +247,42 @@ class MyTests(unittest.TestCase): """ self.assertEqual(jc.parsers.dig.parse(self.generic_dig_answer_spaces, quiet=True), self.generic_dig_answer_spaces_json) + def test_dig_additional(self): + """ + Test 'dig' with additional section + """ + self.assertEqual(jc.parsers.dig.parse(self.generic_dig_additional, quiet=True), self.generic_dig_additional_json) + + def test_dig_additional2(self): + """ + Test 'dig' with additional section + """ + self.assertEqual(jc.parsers.dig.parse(self.generic_dig_additional2, quiet=True), self.generic_dig_additional2_json) + + def test_dig_additional3(self): + """ + Test 'dig' with additional section + """ + self.assertEqual(jc.parsers.dig.parse(self.generic_dig_additional3, quiet=True), self.generic_dig_additional3_json) + + def test_dig_edns(self): + """ + Test 'dig' with edns info + """ + self.assertEqual(jc.parsers.dig.parse(self.generic_dig_edns, quiet=True), self.generic_dig_edns_json) + + def test_dig_edns2(self): + """ + Test 'dig' with edns info + """ + self.assertEqual(jc.parsers.dig.parse(self.generic_dig_edns2, quiet=True), self.generic_dig_edns2_json) + + def test_dig_edns3(self): + """ + Test 'dig' with edns info + """ + self.assertEqual(jc.parsers.dig.parse(self.generic_dig_edns3, quiet=True), self.generic_dig_edns3_json) + if __name__ == '__main__': unittest.main() From c6aa4d083550d25bcb621cad524047cfd6a08217 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 16:19:20 -0700 Subject: [PATCH 20/36] update docs with new dig parser examples --- README.md | 84 +++++----- docs/parsers/dig.md | 313 +++++++++++--------------------------- jc/man/jc.1.gz | Bin 2051 -> 2061 bytes jc/parsers/dig.py | 88 ++++++++++- man/jc.1.gz | Bin 2051 -> 2061 bytes templates/readme_template | 84 +++++----- 6 files changed, 252 insertions(+), 317 deletions(-) diff --git a/README.md b/README.md index 1c5c3bef..f2646061 100644 --- a/README.md +++ b/README.md @@ -9,62 +9,56 @@ JSON CLI output utility `jc` JSONifies the output of many CLI tools and file-types for easier parsing in scripts. See the [**Parsers**](#parsers) section for supported commands and file-types. - -This allows further command-line processing of output with tools like `jq` by piping commands: ```bash -ls -l /usr/bin | jc --ls | jq '.[] | select(.size > 50000000)' +dig example.com | jc --dig ``` ```json -{ - "filename": "docker", - "flags": "-rwxr-xr-x", - "links": 1, - "owner": "root", - "group": "root", - "size": 68677120, - "date": "Aug 14 19:41" -} +[{"id":38052,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1, +"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question": +{"name":"example.com.","class":"IN","type":"A"},"answer":[{"name":"example.com.","class":"IN","type":"A","ttl": +39049,"data":"93.184.216.34"}],"query_time":49,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when": +"Fri Apr 16 16:09:00 PDT 2021","rcvd":56,"when_epoch":1618614540,"when_epoch_utc":null}] +``` +This allows further command-line processing of output with tools like `jq` by piping commands: +```bash +$ dig example.com | jc --dig | jq -r '.[].answer[].data' +93.184.216.34 ``` or using the alternative "magic" syntax: ```bash -jc ls -l /usr/bin | jq '.[] | select(.size > 50000000)' -``` -```json -{ - "filename": "docker", - "flags": "-rwxr-xr-x", - "links": 1, - "owner": "root", - "group": "root", - "size": 68677120, - "date": "Aug 14 19:41" -} +$ jc dig example.com | jq -r '.[].answer[].data' +93.184.216.34 ``` The `jc` parsers can also be used as python modules. In this case the output will be a python dictionary, or list of dictionaries, instead of JSON: ```python ->>> import jc.parsers.ls +>>> import jc.parsers.dig >>> ->>> data='''-rwxr-xr-x 1 root wheel 23648 May 3 22:26 cat -... -rwxr-xr-x 1 root wheel 30016 May 3 22:26 chmod -... -rwxr-xr-x 1 root wheel 29024 May 3 22:26 cp -... -rwxr-xr-x 1 root wheel 375824 May 3 22:26 csh -... -rwxr-xr-x 1 root wheel 28608 May 3 22:26 date -... -rwxr-xr-x 1 root wheel 32000 May 3 22:26 dd -... -rwxr-xr-x 1 root wheel 23392 May 3 22:26 df -... -rwxr-xr-x 1 root wheel 18128 May 3 22:26 echo''' +>>> data = '''; <<>> DiG 9.10.6 <<>> example.com +... ;; global options: +cmd +... ;; Got answer: +... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612 +... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 +... +... ;; OPT PSEUDOSECTION: +... ; EDNS: version: 0, flags:; udp: 4096 +... ;; QUESTION SECTION: +... ;example.com. IN A +... +... ;; ANSWER SECTION: +... example.com. 29658 IN A 93.184.216.34 +... +... ;; Query time: 52 msec +... ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) +... ;; WHEN: Fri Apr 16 16:13:00 PDT 2021 +... ;; MSG SIZE rcvd: 56''' >>> ->>> jc.parsers.ls.parse(data) -[{'filename': 'cat', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23648, -'date': 'May 3 22:26'}, {'filename': 'chmod', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', -'group': 'wheel', 'size': 30016, 'date': 'May 3 22:26'}, {'filename': 'cp', 'flags': '-rwxr-xr-x', -'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 29024, 'date': 'May 3 22:26'}, {'filename': 'csh', -'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 375824, 'date': 'May 3 -22:26'}, {'filename': 'date', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', -'size': 28608, 'date': 'May 3 22:26'}, {'filename': 'dd', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': -'root', 'group': 'wheel', 'size': 32000, 'date': 'May 3 22:26'}, {'filename': 'df', 'flags': -'-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23392, 'date': 'May 3 22:26'}, -{'filename': 'echo', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 18128, -'date': 'May 3 22:26'}] +>>> jc.parsers.dig.parse(data) +[{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': +1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': +4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', +'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': +'2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, +'when_epoch': 1618614780, 'when_epoch_utc': None}] ``` Two representations of the data are possible. The default representation uses a strict schema per parser and converts known numbers to int/float JSON values. Certain known values of `None` are converted to JSON `null`, known boolean values are converted, and, in some cases, additional semantic context fields are added. diff --git a/docs/parsers/dig.md b/docs/parsers/dig.md index bf6ad803..92821c2d 100644 --- a/docs/parsers/dig.md +++ b/docs/parsers/dig.md @@ -24,64 +24,83 @@ Schema: [ { - "id": integer, - "opcode": string, - "status": string, + "id": integer, + "opcode": string, + "status": string, "flags": [ - string + string ], - "query_num": integer, - "answer_num": integer, - "authority_num": integer, - "additional_num": integer, + "query_num": integer, + "answer_num": integer, + "authority_num": integer, + "additional_num": integer, "axfr": [ { - "name": string, - "class": string, - "type": string, - "ttl": integer, - "data": string + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string } ], + "opt_pseudosection": { + "edns": { + "version": integer, + "flags": [ + string + ], + "udp": integer + }, + "cookie": string + }, "question": { - "name": string, - "class": string, - "type": string + "name": string, + "class": string, + "type": string }, "answer": [ { - "name": string, - "class": string, - "type": string, - "ttl": integer, - "data": string + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string + } + ], + "additional": [ + { + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string } ], "authority": [ { - "name": string, - "class": string, - "type": string, - "ttl": integer, - "data": string + "name": string, + "class": string, + "type": string, + "ttl": integer, + "data": string } ], - "query_time": integer, # in msec - "server": string, - "when": string, - "when_epoch": integer, # naive timestamp if when field is parsable, else null - "when_epoch_utc": integer, # timezone aware timestamp availabe for UTC, else null - "rcvd": integer - "size": string + "query_time": integer, # in msec + "server": string, + "when": string, + "when_epoch": integer, # naive timestamp if when field is parsable, else null + "when_epoch_utc": integer, # timezone aware timestamp availabe for UTC, else null + "rcvd": integer + "size": string } ] Examples: - $ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p + $ dig example.com | jc --dig -p [ { - "id": 52172, + "id": 2951, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -90,113 +109,35 @@ Examples: "ra" ], "query_num": 1, - "answer_num": 4, + "answer_num": 1, "authority_num": 0, "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, "question": { - "name": "cnn.com.", + "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { - "name": "cnn.com.", + "name": "example.com.", "class": "IN", "type": "A", - "ttl": 27, - "data": "151.101.65.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.129.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.1.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.193.67" + "ttl": 39302, + "data": "93.184.216.34" } ], - "query_time": 38, - "server": "2600", - "when": "Tue Mar 30 20:07:59 PDT 2021", - "rcvd": 100, - "when_epoch": 1617160079, - "when_epoch_utc": null - }, - { - "id": 36292, - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "aa", - "rd" - ], - "query_num": 1, - "answer_num": 1, - "authority_num": 4, - "additional_num": 1, - "question": { - "name": "www.cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "www.cnn.com.", - "class": "IN", - "type": "CNAME", - "ttl": 300, - "data": "turner-tls.map.fastly.net." - } - ], - "authority": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-1086.awsdns-07.org." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-1630.awsdns-11.co.uk." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-47.awsdns-05.com." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": 3600, - "data": "ns-576.awsdns-08.net." - } - ], - "query_time": 27, - "server": "205.251.194.64#53(205.251.194.64)", - "when": "Tue Mar 30 20:07:59 PDT 2021", - "rcvd": 212, - "when_epoch": 1617160079, + "query_time": 49, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Fri Apr 16 16:05:10 PDT 2021", + "rcvd": 56, + "when_epoch": 1618614310, "when_epoch_utc": null } ] @@ -204,7 +145,7 @@ Examples: $ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p -r [ { - "id": "23843", + "id": "46052", "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -213,110 +154,34 @@ Examples: "ra" ], "query_num": "1", - "answer_num": "4", + "answer_num": "1", "authority_num": "0", "additional_num": "1", + "opt_pseudosection": { + "edns": { + "version": "0", + "flags": [], + "udp": "4096" + } + }, "question": { - "name": "cnn.com.", + "name": "example.com.", "class": "IN", "type": "A" }, "answer": [ { - "name": "cnn.com.", + "name": "example.com.", "class": "IN", "type": "A", - "ttl": "30", - "data": "151.101.193.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.1.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.65.67" - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": "30", - "data": "151.101.129.67" + "ttl": "40426", + "data": "93.184.216.34" } ], - "query_time": "24 msec", - "server": "192.168.1.254#53(192.168.1.254)", - "when": "Tue Nov 12 07:16:19 PST 2019", - "rcvd": "100" - }, - { - "id": "8266", - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "aa", - "rd" - ], - "query_num": "1", - "answer_num": "1", - "authority_num": "4", - "additional_num": "1", - "question": { - "name": "www.cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "www.cnn.com.", - "class": "IN", - "type": "CNAME", - "ttl": "300", - "data": "turner-tls.map.fastly.net." - } - ], - "authority": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-1086.awsdns-07.org." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-1630.awsdns-11.co.uk." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-47.awsdns-05.com." - }, - { - "name": "cnn.com.", - "class": "IN", - "type": "NS", - "ttl": "3600", - "data": "ns-576.awsdns-08.net." - } - ], - "query_time": "26 msec", - "server": "205.251.194.64#53(205.251.194.64)", - "when": "Tue Nov 12 07:16:19 PST 2019", - "rcvd": "212" + "query_time": "48 msec", + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Fri Apr 16 16:06:12 PDT 2021", + "rcvd": "56" } ] @@ -421,4 +286,4 @@ Returns: ## Parser Information Compatibility: linux, aix, freebsd, darwin -Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.0 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/man/jc.1.gz b/jc/man/jc.1.gz index 5767a72b1c34a09bf708bf69786bf80cbb0f575b..9fd9c3c2c2a41591ba0a44b04d19681484b2b327 100644 GIT binary patch literal 2061 zcmV+o2=ezIiwFoV8+u>@|7v3{F#w%eZExE+68^4VK?Dn20z`IG+!nat?r^S?-Fh#6 zLF9H@Y!(eIQ8p7vR7on14)^14W=Pqxkx0RPXgxzc^Fnes?{YvGL7>smhj>WtEkgwDn0ah(58|XnGxh1cMv{)^5mMz_)RE&F4>SWf1% z=+7Wf8kDVN%uHQa{(Kpr<=uDYr32D=bsddwC-ezX|Ce(t1&e|kDKsm&HnLbVSuhi8 zSz0qdCwUwTpjjzPk-$e(n`)J_yYyqUyqe7J(gkUCCcy%^!n7#0FaoAwr7F-9^b5wG zq^b;yRSupde=&`#R(Xx{&r47_V57_mU4ZnH$m(;FKB2`q@vFmPUa*y5l>x_AHR>)! zk>DJ_Z_tM#-VU-WsgGx91ccj5Qq3k&N^177-VuuVM(LI$U zb-=U-Cf5!p*L^_kfw~8n%S6N~@s2iJk5Kuz4l^eKBnz`1yj$m_>V}De*7P2JyMegk zghZkbTC9ckU?h9sT6oPs^gvA$dqZL4A+h(b2g6#cs@%hg?Sh*PPt>+0;08KGHr#9o zk3_fci10_wlSgoNdY>mh;|V;6g9sR+z>mS%k)~KeI!%3C?zkTF(paTyC*tTH0cEV& zuLZFkE8#OwU)qsr%k_ro5h*AqPiB)2>m@`&CY-+w)1!798n}X-#Fi!EiTwfp$yof! z@I$xsgIYObNOVIV>4g1T)Wa`4tHkS*$hdL$2@*abBf09g41b%P6G;eb21r+Wl!`NN@sU}4X7i4Tu$vX5}bcZ7He$&BDg z`29ihLysL8nJpADvL_jj2yYa{Q zvp0Pj=d|f@dKU%#Az*3~TX#)5vKMYe-jZE`;ZTmYHtbIcEe+-+4MxR}!oFQe zmA<5Fzjx7&2VbhKe;GNl558MtM|Q*A$?M4z+t{Jv z9@xeO1N?RapL5#DuhW~?k9o}<=-cQR1vS`pFjx@O*M+_=YsqtzSezA5?~kI!&H7G0|MMLAtlb7Ztg8gdO~OVKd3K(88Z1r9fK&es?w4I9_I z*lXbRPDIP~#va&mLoJJL;J~gMI65q49a`BuAqE6@iPqBjV!9?AzZi56evG^noqBX0}{kHkQT!u8vzLAJf24_{Eb{` zuInKf%4F<%cadv@yd?g+EZ}WroPwMAcyu#bEUre&(cRrc-27{a(0bjxv?|y$gS)p# zxP}y8+YK0oH-DA6QpF6|XCs;u|A6mgQaVhP8k88fjY5tsNO(HH`dUFZsgc0cZo%DR zdkMM({6QwIt@St6%5A}5=P-FnLU^cQBVm(qCm|!qW1k5@T}$m6hy;d0)4-buQjdlG z1D{mNcvfyWBm$vj?E15?4BEOj6lWRaWpIMEeQ+_PAd705>?7WP1czN)5|bWp?c-tK z_|)b4#b2*}Wgj^#@YU{fL}}N{`t1C5G+o?WM?utVROI{A7=b^5?ls$Pw}Z7(Ysk8g zKwYD|)xl!B8;3$+O5N^5EnWaYFKBdfzr1qw9qHIK7MuPVUGy-M(dXr-`7M;g8EnEw z&Hp1acKV3igDO_U|7)FdnW4$EAlO)2n#kaSiwFoZvv*(u|7v3{F#w%eZExE+68^4VK?Dn20z`6C>@IM@-Qip(xAksf z8?oDMu~{^fMA=LvQ6;H3I_!_XnIUB>Mj{3Gq4f;)%nOIZA%}@pAK87v&e;2R@6W<_ zKZa*Nva{&yr|3O9`gJ*(DLp(^U?w7ytrIWZl?4JQU8~7ECY*z8!0raxHhs}Gg&f| zXjxekp_4pG1kkLKl}OK8L@G0g)Tw*QRK}jNgq*gj(l`j!b=tlRvU0EZcuk6 z$`t1SeuF*~@ph1nkt-jCwjzz#yh6WBtEA!v)c_1+Wl@M!atnsx8^lOF(^W6uYOKu>l90W>bnW?Kvp}CXDt(jlRAo>t2AlyQm^B}re2Jm&Yz)=W681kf& z5Q5+iiMyTliX;x8QlkZjb~Fp8Z;}bkb15?*r7MTmRX;G!A7n~UqWZzfgQ*Jw6Lm+K zbVpRLm{yPhu@iLkUZ73!KFP3tF5AJgt+X3VD&4N%fd=!4vXkZK*R7+<Kj1%^h(8&A z=$F1%u``B5KlFii*l(g4edc*BUY|tHjXO_}@C6ykxL<$n9LdcP3{C})1ZoIesMLdj z8Um}#W7R-0EmU2)ITFa4U+AgyY^Q6z2EOS#f>U(CwFWzwiNdKAlYgd@W;cr$Aw-r*T8Zav_t)f}24Zr!1~ z0`cwC^%-*BDp zNQu9-r7Ee5w%hKip{rh@N|kJ&Yj0l$x(K?PLi21b_RzAlFJS0E`(8_7aaPb4L2qx^ zmg^Eu9@9lqUTMB%od9*e(=`NUZtztAx3?~w&(t7a&OT3X=CkX|*(&&|YU<8SB@&r6 zEUDqXh}YFzX~P~Rr=}cq{yO1{yn$J|8t1XVZnVbi~&d5Li@gN#psc+=-zfO_gDxL25 zvMyp+&6af*JR1bRZ-f@@e7P3qIE6TeL;?3tk@Iy=u7_9B%1?uQ5wn zHfead*T9>dh?eV(eP+uIbu7ApXLjAtfpxEH?}HmT@Wc&v{n>7$buy6Vz^5YPbxucc z@E?4)dg4Wui&K2GF~YVlJ|5=db{^11-meKda@v{RsrTcQCW23J-4*o8PG9+@!a<2U z`LtZkulx0W71yxkbbf5A5BRK4yC9&x7 z&N@C%9ACQJd-0cxU)To@0lwIMUQ*fhvc5Wh8DB51E`!`KIuY?Wbx+y*7Le_Z6nf6C z=}j3;96W3XUJ9YCt1xi8`=xWOBerQx`MWFmH~zHxIKP1=H;2%E(EPtLXU7l7-K#Pt z{@?3@%RGYGei8&5Yb$d;8m%GJb&P|f=V-`xzrE*+uQ$_QKCXg^sv4>u>^M1L@86yM hJ;XmLu&z@|7v3{F#w%eZExE+68^4VK?Dn20z`IG+!nat?r^S?-Fh#6 zLF9H@Y!(eIQ8p7vR7on14)^14W=Pqxkx0RPXgxzc^Fnes?{YvGL7>smhj>WtEkgwDn0ah(58|XnGxh1cMv{)^5mMz_)RE&F4>SWf1% z=+7Wf8kDVN%uHQa{(Kpr<=uDYr32D=bsddwC-ezX|Ce(t1&e|kDKsm&HnLbVSuhi8 zSz0qdCwUwTpjjzPk-$e(n`)J_yYyqUyqe7J(gkUCCcy%^!n7#0FaoAwr7F-9^b5wG zq^b;yRSupde=&`#R(Xx{&r47_V57_mU4ZnH$m(;FKB2`q@vFmPUa*y5l>x_AHR>)! zk>DJ_Z_tM#-VU-WsgGx91ccj5Qq3k&N^177-VuuVM(LI$U zb-=U-Cf5!p*L^_kfw~8n%S6N~@s2iJk5Kuz4l^eKBnz`1yj$m_>V}De*7P2JyMegk zghZkbTC9ckU?h9sT6oPs^gvA$dqZL4A+h(b2g6#cs@%hg?Sh*PPt>+0;08KGHr#9o zk3_fci10_wlSgoNdY>mh;|V;6g9sR+z>mS%k)~KeI!%3C?zkTF(paTyC*tTH0cEV& zuLZFkE8#OwU)qsr%k_ro5h*AqPiB)2>m@`&CY-+w)1!798n}X-#Fi!EiTwfp$yof! z@I$xsgIYObNOVIV>4g1T)Wa`4tHkS*$hdL$2@*abBf09g41b%P6G;eb21r+Wl!`NN@sU}4X7i4Tu$vX5}bcZ7He$&BDg z`29ihLysL8nJpADvL_jj2yYa{Q zvp0Pj=d|f@dKU%#Az*3~TX#)5vKMYe-jZE`;ZTmYHtbIcEe+-+4MxR}!oFQe zmA<5Fzjx7&2VbhKe;GNl558MtM|Q*A$?M4z+t{Jv z9@xeO1N?RapL5#DuhW~?k9o}<=-cQR1vS`pFjx@O*M+_=YsqtzSezA5?~kI!&H7G0|MMLAtlb7Ztg8gdO~OVKd3K(88Z1r9fK&es?w4I9_I z*lXbRPDIP~#va&mLoJJL;J~gMI65q49a`BuAqE6@iPqBjV!9?AzZi56evG^noqBX0}{kHkQT!u8vzLAJf24_{Eb{` zuInKf%4F<%cadv@yd?g+EZ}WroPwMAcyu#bEUre&(cRrc-27{a(0bjxv?|y$gS)p# zxP}y8+YK0oH-DA6QpF6|XCs;u|A6mgQaVhP8k88fjY5tsNO(HH`dUFZsgc0cZo%DR zdkMM({6QwIt@St6%5A}5=P-FnLU^cQBVm(qCm|!qW1k5@T}$m6hy;d0)4-buQjdlG z1D{mNcvfyWBm$vj?E15?4BEOj6lWRaWpIMEeQ+_PAd705>?7WP1czN)5|bWp?c-tK z_|)b4#b2*}Wgj^#@YU{fL}}N{`t1C5G+o?WM?utVROI{A7=b^5?ls$Pw}Z7(Ysk8g zKwYD|)xl!B8;3$+O5N^5EnWaYFKBdfzr1qw9qHIK7MuPVUGy-M(dXr-`7M;g8EnEw z&Hp1acKV3igDO_U|7)FdnW4$EAlO)2n#kaSiwFoZvv*(u|7v3{F#w%eZExE+68^4VK?Dn20z`6C>@IM@-Qip(xAksf z8?oDMu~{^fMA=LvQ6;H3I_!_XnIUB>Mj{3Gq4f;)%nOIZA%}@pAK87v&e;2R@6W<_ zKZa*Nva{&yr|3O9`gJ*(DLp(^U?w7ytrIWZl?4JQU8~7ECY*z8!0raxHhs}Gg&f| zXjxekp_4pG1kkLKl}OK8L@G0g)Tw*QRK}jNgq*gj(l`j!b=tlRvU0EZcuk6 z$`t1SeuF*~@ph1nkt-jCwjzz#yh6WBtEA!v)c_1+Wl@M!atnsx8^lOF(^W6uYOKu>l90W>bnW?Kvp}CXDt(jlRAo>t2AlyQm^B}re2Jm&Yz)=W681kf& z5Q5+iiMyTliX;x8QlkZjb~Fp8Z;}bkb15?*r7MTmRX;G!A7n~UqWZzfgQ*Jw6Lm+K zbVpRLm{yPhu@iLkUZ73!KFP3tF5AJgt+X3VD&4N%fd=!4vXkZK*R7+<Kj1%^h(8&A z=$F1%u``B5KlFii*l(g4edc*BUY|tHjXO_}@C6ykxL<$n9LdcP3{C})1ZoIesMLdj z8Um}#W7R-0EmU2)ITFa4U+AgyY^Q6z2EOS#f>U(CwFWzwiNdKAlYgd@W;cr$Aw-r*T8Zav_t)f}24Zr!1~ z0`cwC^%-*BDp zNQu9-r7Ee5w%hKip{rh@N|kJ&Yj0l$x(K?PLi21b_RzAlFJS0E`(8_7aaPb4L2qx^ zmg^Eu9@9lqUTMB%od9*e(=`NUZtztAx3?~w&(t7a&OT3X=CkX|*(&&|YU<8SB@&r6 zEUDqXh}YFzX~P~Rr=}cq{yO1{yn$J|8t1XVZnVbi~&d5Li@gN#psc+=-zfO_gDxL25 zvMyp+&6af*JR1bRZ-f@@e7P3qIE6TeL;?3tk@Iy=u7_9B%1?uQ5wn zHfead*T9>dh?eV(eP+uIbu7ApXLjAtfpxEH?}HmT@Wc&v{n>7$buy6Vz^5YPbxucc z@E?4)dg4Wui&K2GF~YVlJ|5=db{^11-meKda@v{RsrTcQCW23J-4*o8PG9+@!a<2U z`LtZkulx0W71yxkbbf5A5BRK4yC9&x7 z&N@C%9ACQJd-0cxU)To@0lwIMUQ*fhvc5Wh8DB51E`!`KIuY?Wbx+y*7Le_Z6nf6C z=}j3;96W3XUJ9YCt1xi8`=xWOBerQx`MWFmH~zHxIKP1=H;2%E(EPtLXU7l7-K#Pt z{@?3@%RGYGei8&5Yb$d;8m%GJb&P|f=V-`xzrE*+uQ$_QKCXg^sv4>u>^M1L@86yM hJ;XmLu&z 50000000)' +dig example.com | jc --dig ``` ```json -{ - "filename": "docker", - "flags": "-rwxr-xr-x", - "links": 1, - "owner": "root", - "group": "root", - "size": 68677120, - "date": "Aug 14 19:41" -} +[{"id":38052,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra"],"query_num":1,"answer_num":1, +"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":[],"udp":4096}},"question": +{"name":"example.com.","class":"IN","type":"A"},"answer":[{"name":"example.com.","class":"IN","type":"A","ttl": +39049,"data":"93.184.216.34"}],"query_time":49,"server":"2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)","when": +"Fri Apr 16 16:09:00 PDT 2021","rcvd":56,"when_epoch":1618614540,"when_epoch_utc":null}] +``` +This allows further command-line processing of output with tools like `jq` by piping commands: +```bash +$ dig example.com | jc --dig | jq -r '.[].answer[].data' +93.184.216.34 ``` or using the alternative "magic" syntax: ```bash -jc ls -l /usr/bin | jq '.[] | select(.size > 50000000)' -``` -```json -{ - "filename": "docker", - "flags": "-rwxr-xr-x", - "links": 1, - "owner": "root", - "group": "root", - "size": 68677120, - "date": "Aug 14 19:41" -} +$ jc dig example.com | jq -r '.[].answer[].data' +93.184.216.34 ``` The `jc` parsers can also be used as python modules. In this case the output will be a python dictionary, or list of dictionaries, instead of JSON: ```python ->>> import jc.parsers.ls +>>> import jc.parsers.dig >>> ->>> data='''-rwxr-xr-x 1 root wheel 23648 May 3 22:26 cat -... -rwxr-xr-x 1 root wheel 30016 May 3 22:26 chmod -... -rwxr-xr-x 1 root wheel 29024 May 3 22:26 cp -... -rwxr-xr-x 1 root wheel 375824 May 3 22:26 csh -... -rwxr-xr-x 1 root wheel 28608 May 3 22:26 date -... -rwxr-xr-x 1 root wheel 32000 May 3 22:26 dd -... -rwxr-xr-x 1 root wheel 23392 May 3 22:26 df -... -rwxr-xr-x 1 root wheel 18128 May 3 22:26 echo''' +>>> data = '''; <<>> DiG 9.10.6 <<>> example.com +... ;; global options: +cmd +... ;; Got answer: +... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612 +... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 +... +... ;; OPT PSEUDOSECTION: +... ; EDNS: version: 0, flags:; udp: 4096 +... ;; QUESTION SECTION: +... ;example.com. IN A +... +... ;; ANSWER SECTION: +... example.com. 29658 IN A 93.184.216.34 +... +... ;; Query time: 52 msec +... ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) +... ;; WHEN: Fri Apr 16 16:13:00 PDT 2021 +... ;; MSG SIZE rcvd: 56''' >>> ->>> jc.parsers.ls.parse(data) -[{'filename': 'cat', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23648, -'date': 'May 3 22:26'}, {'filename': 'chmod', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', -'group': 'wheel', 'size': 30016, 'date': 'May 3 22:26'}, {'filename': 'cp', 'flags': '-rwxr-xr-x', -'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 29024, 'date': 'May 3 22:26'}, {'filename': 'csh', -'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 375824, 'date': 'May 3 -22:26'}, {'filename': 'date', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', -'size': 28608, 'date': 'May 3 22:26'}, {'filename': 'dd', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': -'root', 'group': 'wheel', 'size': 32000, 'date': 'May 3 22:26'}, {'filename': 'df', 'flags': -'-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23392, 'date': 'May 3 22:26'}, -{'filename': 'echo', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 18128, -'date': 'May 3 22:26'}] +>>> jc.parsers.dig.parse(data) +[{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': +1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': +4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', +'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': +'2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, +'when_epoch': 1618614780, 'when_epoch_utc': None}] ``` Two representations of the data are possible. The default representation uses a strict schema per parser and converts known numbers to int/float JSON values. Certain known values of `None` are converted to JSON `null`, known boolean values are converted, and, in some cases, additional semantic context fields are added. From 7ecdf819fa37c38ae6159ad8e7bc973ee4f34559 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 16:29:27 -0700 Subject: [PATCH 21/36] remove dig example from readme, --- README.md | 42 --------------------------------------- templates/readme_template | 42 --------------------------------------- 2 files changed, 84 deletions(-) diff --git a/README.md b/README.md index f2646061..d9c49018 100644 --- a/README.md +++ b/README.md @@ -347,48 +347,6 @@ cat homes.csv | jc --csv -p } ] ``` -### dig -```bash -dig cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig cnn.com @205.251.194.64 -``` -```json -[ - { - "id": 52172, - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "rd", - "ra" - ], - "query_num": 1, - "answer_num": 1, - "authority_num": 0, - "additional_num": 1, - "question": { - "name": "cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.65.67" - } - ], - "query_time": 38, - "server": "2600", - "when": "Tue Mar 30 20:07:59 PDT 2021", - "rcvd": 100, - "when_epoch": 1617160079, - "when_epoch_utc": null - } -] -``` ### /etc/hosts file ```bash cat /etc/hosts | jc --hosts -p diff --git a/templates/readme_template b/templates/readme_template index a1bfa03a..0e655fdf 100644 --- a/templates/readme_template +++ b/templates/readme_template @@ -277,48 +277,6 @@ cat homes.csv | jc --csv -p } ] ``` -### dig -```bash -dig cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig cnn.com @205.251.194.64 -``` -```json -[ - { - "id": 52172, - "opcode": "QUERY", - "status": "NOERROR", - "flags": [ - "qr", - "rd", - "ra" - ], - "query_num": 1, - "answer_num": 1, - "authority_num": 0, - "additional_num": 1, - "question": { - "name": "cnn.com.", - "class": "IN", - "type": "A" - }, - "answer": [ - { - "name": "cnn.com.", - "class": "IN", - "type": "A", - "ttl": 27, - "data": "151.101.65.67" - } - ], - "query_time": 38, - "server": "2600", - "when": "Tue Mar 30 20:07:59 PDT 2021", - "rcvd": 100, - "when_epoch": 1617160079, - "when_epoch_utc": null - } -] -``` ### /etc/hosts file ```bash cat /etc/hosts | jc --hosts -p From eb0038be2490053d32803d30e1c3d4d34509d130 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 16:29:44 -0700 Subject: [PATCH 22/36] update dig examples --- EXAMPLES.md | 59 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 40 insertions(+), 19 deletions(-) diff --git a/EXAMPLES.md b/EXAMPLES.md index 414053cf..1e41f28f 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -548,7 +548,7 @@ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig ```json [ { - "id": 52172, + "id": 10267, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -560,6 +560,13 @@ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig "answer_num": 4, "authority_num": 0, "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, "question": { "name": "cnn.com.", "class": "IN", @@ -570,40 +577,40 @@ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig "name": "cnn.com.", "class": "IN", "type": "A", - "ttl": 27, + "ttl": 17, "data": "151.101.65.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", - "ttl": 27, + "ttl": 17, "data": "151.101.129.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", - "ttl": 27, + "ttl": 17, "data": "151.101.1.67" }, { "name": "cnn.com.", "class": "IN", "type": "A", - "ttl": 27, + "ttl": 17, "data": "151.101.193.67" } ], - "query_time": 38, - "server": "2600", - "when": "Tue Mar 30 20:07:59 PDT 2021", + "query_time": 51, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Fri Apr 16 16:24:32 PDT 2021", "rcvd": 100, - "when_epoch": 1617160079, + "when_epoch": 1618615472, "when_epoch_utc": null }, { - "id": 36292, + "id": 56207, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -615,6 +622,13 @@ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig "answer_num": 1, "authority_num": 4, "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, "question": { "name": "www.cnn.com.", "class": "IN", @@ -659,11 +673,11 @@ dig cnn.com www.cnn.com @205.251.194.64 | jc --dig -p # or: jc -p dig "data": "ns-576.awsdns-08.net." } ], - "query_time": 27, + "query_time": 22, "server": "205.251.194.64#53(205.251.194.64)", - "when": "Tue Mar 30 20:07:59 PDT 2021", + "when": "Fri Apr 16 16:24:32 PDT 2021", "rcvd": 212, - "when_epoch": 1617160079, + "when_epoch": 1618615472, "when_epoch_utc": null } ] @@ -674,7 +688,7 @@ dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 ```json [ { - "id": 22191, + "id": 57656, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -686,6 +700,13 @@ dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 "answer_num": 1, "authority_num": 0, "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", @@ -696,15 +717,15 @@ dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", - "ttl": 1800, + "ttl": 1639, "data": "one.one.one.one." } ], - "query_time": 44, - "server": "2600", - "when": "Tue Mar 30 20:10:34 PDT 2021", + "query_time": 47, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Fri Apr 16 16:25:21 PDT 2021", "rcvd": 78, - "when_epoch": 1617160234, + "when_epoch": 1618615521, "when_epoch_utc": null } ] From 4f6fdd120d23468270c1d7111e4ef71b87759a1c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 16:30:04 -0700 Subject: [PATCH 23/36] use dig as example --- docs/readme.md | 117 ++++++++++++++++++++++++++++--------------------- jc/__init__.py | 117 ++++++++++++++++++++++++++++--------------------- 2 files changed, 134 insertions(+), 100 deletions(-) diff --git a/docs/readme.md b/docs/readme.md index db707c23..334f85d7 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -10,62 +10,79 @@ For documentation on each parser, see the [documentation site](https://kellyjonb CLI Example: - $ ls -l /usr/bin | jc --ls -p + $ dig example.com | jc --dig -p [ { - "filename": "apropos", - "link_to": "whatis", - "flags": "lrwxrwxrwx.", - "links": 1, - "owner": "root", - "group": "root", - "size": 6, - "date": "Aug 15 10:53" - }, - { - "filename": "ar", - "flags": "-rwxr-xr-x.", - "links": 1, - "owner": "root", - "group": "root", - "size": 62744, - "date": "Aug 8 16:14" - }, - { - "filename": "arch", - "flags": "-rwxr-xr-x.", - "links": 1, - "owner": "root", - "group": "root", - "size": 33080, - "date": "Aug 19 23:25" - }, - ... + "id": 2951, + "opcode": "QUERY", + "status": "NOERROR", + "flags": [ + "qr", + "rd", + "ra" + ], + "query_num": 1, + "answer_num": 1, + "authority_num": 0, + "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, + "question": { + "name": "example.com.", + "class": "IN", + "type": "A" + }, + "answer": [ + { + "name": "example.com.", + "class": "IN", + "type": "A", + "ttl": 39302, + "data": "93.184.216.34" + } + ], + "query_time": 49, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Fri Apr 16 16:05:10 PDT 2021", + "rcvd": 56, + "when_epoch": 1618614310, + "when_epoch_utc": null + } ] Module Example: - >>> import jc.parsers.ls + >>> import jc.parsers.dig >>> - >>> data='''-rwxr-xr-x 1 root wheel 23648 May 3 22:26 cat - ... -rwxr-xr-x 1 root wheel 30016 May 3 22:26 chmod - ... -rwxr-xr-x 1 root wheel 29024 May 3 22:26 cp - ... -rwxr-xr-x 1 root wheel 375824 May 3 22:26 csh - ... -rwxr-xr-x 1 root wheel 28608 May 3 22:26 date - ... -rwxr-xr-x 1 root wheel 32000 May 3 22:26 dd - ... -rwxr-xr-x 1 root wheel 23392 May 3 22:26 df - ... -rwxr-xr-x 1 root wheel 18128 May 3 22:26 echo''' + >>> data = '''; <<>> DiG 9.10.6 <<>> example.com + ... ;; global options: +cmd + ... ;; Got answer: + ... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612 + ... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 + ... + ... ;; OPT PSEUDOSECTION: + ... ; EDNS: version: 0, flags:; udp: 4096 + ... ;; QUESTION SECTION: + ... ;example.com. IN A + ... + ... ;; ANSWER SECTION: + ... example.com. 29658 IN A 93.184.216.34 + ... + ... ;; Query time: 52 msec + ... ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) + ... ;; WHEN: Fri Apr 16 16:13:00 PDT 2021 + ... ;; MSG SIZE rcvd: 56''' >>> - >>> jc.parsers.ls.parse(data) - [{'filename': 'cat', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23648, - 'date': 'May 3 22:26'}, {'filename': 'chmod', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', - 'group': 'wheel', 'size': 30016, 'date': 'May 3 22:26'}, {'filename': 'cp', 'flags': '-rwxr-xr-x', - 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 29024, 'date': 'May 3 22:26'}, {'filename': 'csh', - 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 375824, 'date': 'May 3 - 22:26'}, {'filename': 'date', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', - 'size': 28608, 'date': 'May 3 22:26'}, {'filename': 'dd', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': - 'root', 'group': 'wheel', 'size': 32000, 'date': 'May 3 22:26'}, {'filename': 'df', 'flags': - '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23392, 'date': 'May 3 22:26'}, - {'filename': 'echo', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 18128, - 'date': 'May 3 22:26'}] + >>> jc.parsers.dig.parse(data) + [{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': + 1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': + 4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', + 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': + '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, + 'when_epoch': 1618614780, 'when_epoch_utc': None}] diff --git a/jc/__init__.py b/jc/__init__.py index 48a49ca3..3b6efae6 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -8,64 +8,81 @@ For documentation on each parser, see the [documentation site](https://kellyjonb CLI Example: - $ ls -l /usr/bin | jc --ls -p + $ dig example.com | jc --dig -p [ { - "filename": "apropos", - "link_to": "whatis", - "flags": "lrwxrwxrwx.", - "links": 1, - "owner": "root", - "group": "root", - "size": 6, - "date": "Aug 15 10:53" - }, - { - "filename": "ar", - "flags": "-rwxr-xr-x.", - "links": 1, - "owner": "root", - "group": "root", - "size": 62744, - "date": "Aug 8 16:14" - }, - { - "filename": "arch", - "flags": "-rwxr-xr-x.", - "links": 1, - "owner": "root", - "group": "root", - "size": 33080, - "date": "Aug 19 23:25" - }, - ... + "id": 2951, + "opcode": "QUERY", + "status": "NOERROR", + "flags": [ + "qr", + "rd", + "ra" + ], + "query_num": 1, + "answer_num": 1, + "authority_num": 0, + "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, + "question": { + "name": "example.com.", + "class": "IN", + "type": "A" + }, + "answer": [ + { + "name": "example.com.", + "class": "IN", + "type": "A", + "ttl": 39302, + "data": "93.184.216.34" + } + ], + "query_time": 49, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Fri Apr 16 16:05:10 PDT 2021", + "rcvd": 56, + "when_epoch": 1618614310, + "when_epoch_utc": null + } ] Module Example: - >>> import jc.parsers.ls + >>> import jc.parsers.dig >>> - >>> data='''-rwxr-xr-x 1 root wheel 23648 May 3 22:26 cat - ... -rwxr-xr-x 1 root wheel 30016 May 3 22:26 chmod - ... -rwxr-xr-x 1 root wheel 29024 May 3 22:26 cp - ... -rwxr-xr-x 1 root wheel 375824 May 3 22:26 csh - ... -rwxr-xr-x 1 root wheel 28608 May 3 22:26 date - ... -rwxr-xr-x 1 root wheel 32000 May 3 22:26 dd - ... -rwxr-xr-x 1 root wheel 23392 May 3 22:26 df - ... -rwxr-xr-x 1 root wheel 18128 May 3 22:26 echo''' + >>> data = '''; <<>> DiG 9.10.6 <<>> example.com + ... ;; global options: +cmd + ... ;; Got answer: + ... ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 64612 + ... ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 + ... + ... ;; OPT PSEUDOSECTION: + ... ; EDNS: version: 0, flags:; udp: 4096 + ... ;; QUESTION SECTION: + ... ;example.com. IN A + ... + ... ;; ANSWER SECTION: + ... example.com. 29658 IN A 93.184.216.34 + ... + ... ;; Query time: 52 msec + ... ;; SERVER: 2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1) + ... ;; WHEN: Fri Apr 16 16:13:00 PDT 2021 + ... ;; MSG SIZE rcvd: 56''' >>> - >>> jc.parsers.ls.parse(data) - [{'filename': 'cat', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23648, - 'date': 'May 3 22:26'}, {'filename': 'chmod', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', - 'group': 'wheel', 'size': 30016, 'date': 'May 3 22:26'}, {'filename': 'cp', 'flags': '-rwxr-xr-x', - 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 29024, 'date': 'May 3 22:26'}, {'filename': 'csh', - 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 375824, 'date': 'May 3 - 22:26'}, {'filename': 'date', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', - 'size': 28608, 'date': 'May 3 22:26'}, {'filename': 'dd', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': - 'root', 'group': 'wheel', 'size': 32000, 'date': 'May 3 22:26'}, {'filename': 'df', 'flags': - '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 23392, 'date': 'May 3 22:26'}, - {'filename': 'echo', 'flags': '-rwxr-xr-x', 'links': 1, 'owner': 'root', 'group': 'wheel', 'size': 18128, - 'date': 'May 3 22:26'}] + >>> jc.parsers.dig.parse(data) + [{'id': 64612, 'opcode': 'QUERY', 'status': 'NOERROR', 'flags': ['qr', 'rd', 'ra'], 'query_num': 1, 'answer_num': + 1, 'authority_num': 0, 'additional_num': 1, 'opt_pseudosection': {'edns': {'version': 0, 'flags': [], 'udp': + 4096}}, 'question': {'name': 'example.com.', 'class': 'IN', 'type': 'A'}, 'answer': [{'name': 'example.com.', + 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': + '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, + 'when_epoch': 1618614780, 'when_epoch_utc': None}] """ name = 'jc' From b083bcc10fa1105fc09ce8d2c3297aa5575c9d51 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 16 Apr 2021 16:30:17 -0700 Subject: [PATCH 24/36] update man page --- jc/man/jc.1.gz | Bin 2061 -> 2061 bytes man/jc.1.gz | Bin 2061 -> 2061 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/jc/man/jc.1.gz b/jc/man/jc.1.gz index 9fd9c3c2c2a41591ba0a44b04d19681484b2b327..f36f0a3c057f3d287a735827109c360a6b9e0801 100644 GIT binary patch delta 15 WcmeAb=oMg-@8;mJlHJJ0&H(@%#{(Du delta 15 WcmeAb=oMg-@8;mplitY2&H(@%bpr|j diff --git a/man/jc.1.gz b/man/jc.1.gz index 9fd9c3c2c2a41591ba0a44b04d19681484b2b327..f36f0a3c057f3d287a735827109c360a6b9e0801 100644 GIT binary patch delta 15 WcmeAb=oMg-@8;mJlHJJ0&H(@%#{(Du delta 15 WcmeAb=oMg-@8;mplitY2&H(@%bpr|j From 32bf8ad6f4fff83fdfd83d66c1ba8f1af5a65a90 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 17 Apr 2021 15:02:45 -0700 Subject: [PATCH 25/36] update dig docs --- CHANGELOG | 2 +- EXAMPLES.md | 10 +++++----- docs/parsers/dig.md | 32 +++++++++++++++++++++++--------- jc/parsers/dig.py | 32 +++++++++++++++++++++++--------- 4 files changed, 52 insertions(+), 24 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1fd37dea..91240a80 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20210415 v1.15.2 +20210416 v1.15.2 - Add systeminfo parser tested on Windows - Update dig parser to fix an issue with IPv6 addresses in the server field - Update dig parser to fix an issue when axfr entries contain a semicolon diff --git a/EXAMPLES.md b/EXAMPLES.md index 1e41f28f..9342d4fe 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -688,7 +688,7 @@ dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 ```json [ { - "id": 57656, + "id": 20785, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -717,15 +717,15 @@ dig -x 1.1.1.1 | jc --dig -p # or: jc -p dig -x 1.1.1.1 "name": "1.1.1.1.in-addr.arpa.", "class": "IN", "type": "PTR", - "ttl": 1639, + "ttl": 1800, "data": "one.one.one.one." } ], - "query_time": 47, + "query_time": 40, "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", - "when": "Fri Apr 16 16:25:21 PDT 2021", + "when": "Sat Apr 17 14:50:50 PDT 2021", "rcvd": 78, - "when_epoch": 1618615521, + "when_epoch": 1618696250, "when_epoch_utc": null } ] diff --git a/docs/parsers/dig.md b/docs/parsers/dig.md index 92821c2d..ceb6a960 100644 --- a/docs/parsers/dig.md +++ b/docs/parsers/dig.md @@ -188,7 +188,7 @@ Examples: $ dig -x 1.1.1.1 | jc --dig -p [ { - "id": 22191, + "id": 20785, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -200,6 +200,13 @@ Examples: "answer_num": 1, "authority_num": 0, "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", @@ -214,11 +221,11 @@ Examples: "data": "one.one.one.one." } ], - "query_time": 44, - "server": "2600", - "when": "Tue Mar 30 20:10:34 PDT 2021", + "query_time": 40, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Sat Apr 17 14:50:50 PDT 2021", "rcvd": 78, - "when_epoch": 1617160234, + "when_epoch": 1618696250, "when_epoch_utc": null } ] @@ -226,7 +233,7 @@ Examples: $ dig -x 1.1.1.1 | jc --dig -p -r [ { - "id": "50986", + "id": "32644", "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -238,6 +245,13 @@ Examples: "answer_num": "1", "authority_num": "0", "additional_num": "1", + "opt_pseudosection": { + "edns": { + "version": "0", + "flags": [], + "udp": "4096" + } + }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", @@ -252,9 +266,9 @@ Examples: "data": "one.one.one.one." } ], - "query_time": "38 msec", - "server": "2600", - "when": "Tue Nov 12 07:17:19 PST 2019", + "query_time": "52 msec", + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Sat Apr 17 14:51:46 PDT 2021", "rcvd": "78" } ] diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index cea973b0..7325fa36 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -185,7 +185,7 @@ Examples: $ dig -x 1.1.1.1 | jc --dig -p [ { - "id": 22191, + "id": 20785, "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -197,6 +197,13 @@ Examples: "answer_num": 1, "authority_num": 0, "additional_num": 1, + "opt_pseudosection": { + "edns": { + "version": 0, + "flags": [], + "udp": 4096 + } + }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", @@ -211,11 +218,11 @@ Examples: "data": "one.one.one.one." } ], - "query_time": 44, - "server": "2600", - "when": "Tue Mar 30 20:10:34 PDT 2021", + "query_time": 40, + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Sat Apr 17 14:50:50 PDT 2021", "rcvd": 78, - "when_epoch": 1617160234, + "when_epoch": 1618696250, "when_epoch_utc": null } ] @@ -223,7 +230,7 @@ Examples: $ dig -x 1.1.1.1 | jc --dig -p -r [ { - "id": "50986", + "id": "32644", "opcode": "QUERY", "status": "NOERROR", "flags": [ @@ -235,6 +242,13 @@ Examples: "answer_num": "1", "authority_num": "0", "additional_num": "1", + "opt_pseudosection": { + "edns": { + "version": "0", + "flags": [], + "udp": "4096" + } + }, "question": { "name": "1.1.1.1.in-addr.arpa.", "class": "IN", @@ -249,9 +263,9 @@ Examples: "data": "one.one.one.one." } ], - "query_time": "38 msec", - "server": "2600", - "when": "Tue Nov 12 07:17:19 PST 2019", + "query_time": "52 msec", + "server": "2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)", + "when": "Sat Apr 17 14:51:46 PDT 2021", "rcvd": "78" } ] From 7581c8d0f4262fc6a05240bb21ffe533b153f6e4 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 17 Apr 2021 17:07:20 -0700 Subject: [PATCH 26/36] add query_size field. handle user-specified dig output better - especially when querying dnssec --- docs/parsers/dig.md | 1 + jc/parsers/dig.py | 74 ++++++++++++++++----------- tests/fixtures/generic/dig-edns3.json | 2 +- 3 files changed, 45 insertions(+), 32 deletions(-) diff --git a/docs/parsers/dig.md b/docs/parsers/dig.md index ceb6a960..a7d4943c 100644 --- a/docs/parsers/dig.md +++ b/docs/parsers/dig.md @@ -85,6 +85,7 @@ Schema: "data": string } ], + "query_size": integer, "query_time": integer, # in msec "server": string, "when": string, diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 7325fa36..8bbb621c 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -82,6 +82,7 @@ Schema: "data": string } ], + "query_size": integer, "query_time": integer, # in msec "server": string, "when": string, @@ -301,7 +302,7 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd'] + int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd', 'query_size'] for key in int_list: if key in entry: try: @@ -483,6 +484,28 @@ def _parse_axfr(axfr): 'data': axfr_data} +def _parse_footer(footer): + # footer consists of 4 lines + # footer line 1 + if footer.startswith(';; Query time:'): + return {'query_time': footer.split(':')[1].lstrip()} + + # footer line 2 + if footer.startswith(';; SERVER:'): + return {'server': footer.split(':', maxsplit=1)[1].lstrip()} + + # footer line 3 + if footer.startswith(';; WHEN:'): + return {'when': footer.split(':', maxsplit=1)[1].lstrip()} + + # footer line 4 (last line) + if footer.startswith(';; MSG SIZE rcvd:'): + return {'rcvd': footer.split(':')[1].lstrip()} + + elif footer.startswith(';; XFR size:'): + return {'size': footer.split(':')[1].lstrip()} + + def parse(data, raw=False, quiet=False): """ Main text parsing function @@ -506,7 +529,7 @@ def parse(data, raw=False, quiet=False): # remove blank lines cleandata = list(filter(None, cleandata)) - # section can be: header, flags, question, authority, answer, xfr, additional, opt_pseudosection, footer + # section can be: header, flags, question, authority, answer, axfr, additional, opt_pseudosection, footer section = '' output_entry = {} @@ -514,6 +537,9 @@ def parse(data, raw=False, quiet=False): for line in cleandata: # identify sections + if line.startswith(';; Got answer:'): + section = '' + continue if line.startswith('; <<>> ') and ' axfr ' in line.lower(): section = 'axfr' @@ -522,6 +548,8 @@ def parse(data, raw=False, quiet=False): if line.startswith(';; ->>HEADER<<-'): section = 'header' + if output_entry: + raw_output.append(output_entry) output_entry = {} output_entry.update(_parse_header(line)) continue @@ -554,8 +582,17 @@ def parse(data, raw=False, quiet=False): additional_list = [] continue + if line.startswith(';; Query time:'): + section = 'footer' + output_entry.update(_parse_footer(line)) + continue + # parse sections + if line.startswith(';; QUERY SIZE:'): + output_entry.update({'query_size': line.split(': ', maxsplit=1)[1]}) + continue + if not line.startswith(';') and section == 'axfr': axfr_list.append(_parse_axfr(line)) output_entry.update({'axfr': axfr_list}) @@ -586,37 +623,12 @@ def parse(data, raw=False, quiet=False): output_entry.update({'additional': additional_list}) continue - # footer consists of 4 lines - # footer line 1 - if line.startswith(';; Query time:'): - section = 'footer' - output_entry.update({'query_time': line.split(':')[1].lstrip()}) + if section == 'footer': + output_entry.update(_parse_footer(line)) continue - # footer line 2 - if line.startswith(';; SERVER:'): - output_entry.update({'server': line.split(':', maxsplit=1)[1].lstrip()}) - continue - - # footer line 3 - if line.startswith(';; WHEN:'): - output_entry.update({'when': line.split(':', maxsplit=1)[1].lstrip()}) - continue - - # footer line 4 (last line) - if line.startswith(';; MSG SIZE rcvd:'): - section = '' - output_entry.update({'rcvd': line.split(':')[1].lstrip()}) - - if output_entry: - raw_output.append(output_entry) - - elif line.startswith(';; XFR size:'): - section = '' - output_entry.update({'size': line.split(':')[1].lstrip()}) - - if output_entry: - raw_output.append(output_entry) + if output_entry: + raw_output.append(output_entry) raw_output = list(filter(None, raw_output)) diff --git a/tests/fixtures/generic/dig-edns3.json b/tests/fixtures/generic/dig-edns3.json index a863d25f..c662b326 100644 --- a/tests/fixtures/generic/dig-edns3.json +++ b/tests/fixtures/generic/dig-edns3.json @@ -1 +1 @@ -[{"id":37727,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra","ad"],"query_num":1,"answer_num":3,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":512}},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"answer":[{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.1.195"},{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.65.195"},{"name":"metebalci.com.","class":"IN","type":"RRSIG","ttl":299,"data":"A 8 2 300 20181227144044 20181205144044 59764 metebalci.com. z6FupNLEU/8OcB3rNMkVqVaan05Xu89T8hV6+IC7LGjWPtrD+TlNJd8D cGeq8xJLR8b1Q+gBK0QSxpGvk89GaCTjNtMGHLBBdgpyV4syFv2BNzK7 iAJhA8QJ6i5xVFJdzMSsn3WvQvN1W71sirt8+56r1nQ47aVkBSLJoZKP lgw="}],"query_time":41,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Dec 07 14:09:43 CET 2018","rcvd":247,"when_epoch":1544220583,"when_epoch_utc":null}] +[{"id":37727,"opcode":"QUERY","status":"NOERROR","flags":["rd","ad"],"query_num":1,"answer_num":0,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":4096},"cookie":"a263795b817be1b1"},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"query_size":54},{"id":37727,"opcode":"QUERY","status":"NOERROR","flags":["qr","rd","ra","ad"],"query_num":1,"answer_num":3,"authority_num":0,"additional_num":1,"opt_pseudosection":{"edns":{"version":0,"flags":["do"],"udp":512}},"question":{"name":"metebalci.com.","class":"IN","type":"A"},"answer":[{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.1.195"},{"name":"metebalci.com.","class":"IN","type":"A","ttl":299,"data":"151.101.65.195"},{"name":"metebalci.com.","class":"IN","type":"RRSIG","ttl":299,"data":"A 8 2 300 20181227144044 20181205144044 59764 metebalci.com. z6FupNLEU/8OcB3rNMkVqVaan05Xu89T8hV6+IC7LGjWPtrD+TlNJd8D cGeq8xJLR8b1Q+gBK0QSxpGvk89GaCTjNtMGHLBBdgpyV4syFv2BNzK7 iAJhA8QJ6i5xVFJdzMSsn3WvQvN1W71sirt8+56r1nQ47aVkBSLJoZKP lgw="}],"query_time":41,"server":"8.8.8.8#53(8.8.8.8)","when":"Fri Dec 07 14:09:43 CET 2018","rcvd":247,"when_epoch":1544220583,"when_epoch_utc":null}] From b1fc4533833ca25f59869bfec8ac114bf49c7847 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 17 Apr 2021 17:22:30 -0700 Subject: [PATCH 27/36] fix _IfconfigParser name --- jc/parsers/ifconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/ifconfig.py b/jc/parsers/ifconfig.py index dd512e52..9be8d806 100644 --- a/jc/parsers/ifconfig.py +++ b/jc/parsers/ifconfig.py @@ -264,7 +264,7 @@ class _IfconfigParser(object): :return: """ for attr in kwargs.keys(): - if attr not in IfconfigParser.attributes: + if attr not in _IfconfigParser.attributes: raise ValueError("Attribute [{}] not supported.".format(attr)) filtered_interfaces = [] From f7b9fbefdde6973077573fec02342eb9946789c6 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 17 Apr 2021 17:22:44 -0700 Subject: [PATCH 28/36] add query_size info for dig --- CHANGELOG | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG b/CHANGELOG index 91240a80..e02a1c39 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,7 @@ jc changelog - Update dig parser to fix an issue with IPv6 addresses in the server field - Update dig parser to fix an issue when axfr entries contain a semicolon - Update dig parser to add support for Additional Section and Opt Pseudosection +- Update dig parser to add query_size field - Use dig parser as the main example in readme, documentation, and man page 20210413 v1.15.1 From b5d8968144e76090870f8563dc1bce910fba668c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 17 Apr 2021 17:22:59 -0700 Subject: [PATCH 29/36] add convert_to_int function --- jc/utils.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/jc/utils.py b/jc/utils.py index e6d88f74..186592f7 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -83,6 +83,25 @@ def has_data(data): return True if data and not data.isspace() else False +def convert_to_int(value): + """ + Converts string input to integer by stripping all non-numeric characters + + Parameters: + + value: (string) Input value + + Returns: + integer/None Integer if successful conversion, otherwise None + """ + try: + value = int(re.sub('[^0-9]', '', value)) + except (ValueError, TypeError): + return None + + return value + + class timestamp: """ Input a date-time text string of several formats and convert to a naive or timezone-aware epoch timestamp in UTC From 246c707c98d3128b4e38f5c4b23a1e0ceedc0b0c Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 18 Apr 2021 11:46:42 -0700 Subject: [PATCH 30/36] use jc.utils conversions --- CHANGELOG | 1 + docs/parsers/acpi.md | 2 +- docs/parsers/airport.md | 2 +- docs/parsers/airport_s.md | 2 +- docs/parsers/blkid.md | 2 +- docs/parsers/cksum.md | 2 +- docs/parsers/df.md | 2 +- docs/parsers/dir.md | 2 +- docs/parsers/dmidecode.md | 2 +- docs/parsers/du.md | 2 +- docs/parsers/free.md | 2 +- docs/parsers/fstab.md | 2 +- docs/parsers/group.md | 2 +- docs/parsers/hash.md | 2 +- docs/parsers/hciconfig.md | 2 +- docs/parsers/history.md | 2 +- docs/parsers/id.md | 2 +- docs/parsers/ifconfig.md | 2 +- docs/utils.md | 48 +++++++++++++++++++ jc/parsers/acpi.py | 22 ++------- jc/parsers/airport.py | 7 +-- jc/parsers/airport_s.py | 12 ++--- jc/parsers/arp.py | 5 +- jc/parsers/blkid.py | 7 +-- jc/parsers/cksum.py | 8 ++-- jc/parsers/df.py | 14 ++---- jc/parsers/dig.py | 50 ++++---------------- jc/parsers/dir.py | 11 ++--- jc/parsers/dmidecode.py | 8 +--- jc/parsers/du.py | 8 +--- jc/parsers/foo.py | 2 + jc/parsers/free.py | 8 +--- jc/parsers/fstab.py | 8 +--- jc/parsers/group.py | 8 +--- jc/parsers/hash.py | 9 +--- jc/parsers/hciconfig.py | 8 +--- jc/parsers/history.py | 6 +-- jc/parsers/id.py | 17 ++----- jc/parsers/ifconfig.py | 11 ++--- jc/utils.py | 62 ++++++++++++++++++++++++- tests/fixtures/centos-7.7/df-h.json | 2 +- tests/fixtures/centos-7.7/free-h.json | 2 +- tests/fixtures/osx-10.11.6/df-h.json | 2 +- tests/fixtures/osx-10.14.6/df-h.json | 2 +- tests/fixtures/ubuntu-18.04/df-h.json | 2 +- tests/fixtures/ubuntu-18.04/free-h.json | 2 +- 46 files changed, 190 insertions(+), 196 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index e02a1c39..7fbf50c6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,6 +7,7 @@ jc changelog - Update dig parser to add support for Additional Section and Opt Pseudosection - Update dig parser to add query_size field - Use dig parser as the main example in readme, documentation, and man page +- Standardize int, float, and boolean conversion rules 20210413 v1.15.1 - New feature to show parser documentation interactively with -h --parser_name diff --git a/docs/parsers/acpi.md b/docs/parsers/acpi.md index 3df64cd5..cac7087c 100644 --- a/docs/parsers/acpi.md +++ b/docs/parsers/acpi.md @@ -252,4 +252,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/airport.md b/docs/parsers/airport.md index 93a05dcd..9966499c 100644 --- a/docs/parsers/airport.md +++ b/docs/parsers/airport.md @@ -105,4 +105,4 @@ Returns: ## Parser Information Compatibility: darwin -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/airport_s.md b/docs/parsers/airport_s.md index 7ce6792d..08929c09 100644 --- a/docs/parsers/airport_s.md +++ b/docs/parsers/airport_s.md @@ -133,4 +133,4 @@ Returns: ## Parser Information Compatibility: darwin -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/blkid.md b/docs/parsers/blkid.md index a8738fbb..f3246fb1 100644 --- a/docs/parsers/blkid.md +++ b/docs/parsers/blkid.md @@ -145,4 +145,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/cksum.md b/docs/parsers/cksum.md index f5b56c59..21c8c175 100644 --- a/docs/parsers/cksum.md +++ b/docs/parsers/cksum.md @@ -79,4 +79,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/df.md b/docs/parsers/df.md index 7eb225f6..2bed3ed4 100644 --- a/docs/parsers/df.md +++ b/docs/parsers/df.md @@ -122,4 +122,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, freebsd -Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/dir.md b/docs/parsers/dir.md index f3607377..de4d2aad 100644 --- a/docs/parsers/dir.md +++ b/docs/parsers/dir.md @@ -145,4 +145,4 @@ Returns: ## Parser Information Compatibility: win32 -Version 1.1 by Rasheed Elsaleh (rasheed@rebelliondefense.com) +Version 1.2 by Rasheed Elsaleh (rasheed@rebelliondefense.com) diff --git a/docs/parsers/dmidecode.md b/docs/parsers/dmidecode.md index 62d2a7a6..7f85b819 100644 --- a/docs/parsers/dmidecode.md +++ b/docs/parsers/dmidecode.md @@ -150,4 +150,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/du.md b/docs/parsers/du.md index 96b067f4..9d87abbb 100644 --- a/docs/parsers/du.md +++ b/docs/parsers/du.md @@ -112,4 +112,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, aix, freebsd -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/free.md b/docs/parsers/free.md index 13f5f662..34736377 100644 --- a/docs/parsers/free.md +++ b/docs/parsers/free.md @@ -97,4 +97,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/fstab.md b/docs/parsers/fstab.md index 396eefff..a6ab9d22 100644 --- a/docs/parsers/fstab.md +++ b/docs/parsers/fstab.md @@ -110,4 +110,4 @@ Returns: ## Parser Information Compatibility: linux, freebsd -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/group.md b/docs/parsers/group.md index a9eb2204..034c80d6 100644 --- a/docs/parsers/group.md +++ b/docs/parsers/group.md @@ -134,4 +134,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, aix, freebsd -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/hash.md b/docs/parsers/hash.md index 99ace38f..721e8b83 100644 --- a/docs/parsers/hash.md +++ b/docs/parsers/hash.md @@ -62,4 +62,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/hciconfig.md b/docs/parsers/hciconfig.md index 6e6f84a1..93e34812 100644 --- a/docs/parsers/hciconfig.md +++ b/docs/parsers/hciconfig.md @@ -342,4 +342,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/history.md b/docs/parsers/history.md index b2a4ae2d..81716d62 100644 --- a/docs/parsers/history.md +++ b/docs/parsers/history.md @@ -83,4 +83,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/id.md b/docs/parsers/id.md index d44dd7a4..303858f1 100644 --- a/docs/parsers/id.md +++ b/docs/parsers/id.md @@ -130,4 +130,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, aix, freebsd -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ifconfig.md b/docs/parsers/ifconfig.md index ef58b50f..985be4be 100644 --- a/docs/parsers/ifconfig.md +++ b/docs/parsers/ifconfig.md @@ -211,4 +211,4 @@ Returns: ## Parser Information Compatibility: linux, aix, freebsd, darwin -Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/utils.md b/docs/utils.md index 077f969c..60bd45cc 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -69,6 +69,54 @@ Returns: Boolean True if input string (data) contains non-whitespace characters, otherwise False +## convert_to_int +```python +convert_to_int(value) +``` + +Converts string input to integer by stripping all non-numeric characters + +Parameters: + + value: (string) Input value + +Returns: + + integer/None Integer if successful conversion, otherwise None + + +## convert_to_float +```python +convert_to_float(value) +``` + +Converts string input to float by stripping all non-numeric characters + +Parameters: + + value: (string) Input value + +Returns: + + float/None Float if successful conversion, otherwise None + + +## convert_to_bool +```python +convert_to_bool(value) +``` + +Converts string, integer, or float input to boolean by checking for 'truthy' values + +Parameters: + + value: (string/integer/float) Input value + +Returns: + + True/False False unless a 'truthy' number or string is found ('y', 'yes', 'true', '1', 1, -1, etc.) + + ## timestamp ```python timestamp(datetime_string) diff --git a/jc/parsers/acpi.py b/jc/parsers/acpi.py index 6937d59b..59d09191 100644 --- a/jc/parsers/acpi.py +++ b/jc/parsers/acpi.py @@ -227,7 +227,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`acpi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -258,36 +258,24 @@ def _process(proc_data): for entry in proc_data: for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if 'trip_points' in entry: for tp in entry['trip_points']: for key in int_list: if key in tp: - try: - tp[key] = int(tp[key]) - except (ValueError): - tp[key] = None + tp[key] = jc.utils.convert_to_int(tp[key]) for entry in proc_data: for key in float_list: if key in entry: - try: - entry[key] = float(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_float(entry[key]) if 'trip_points' in entry: for tp in entry['trip_points']: for key in float_list: if key in tp: - try: - tp[key] = float(tp[key]) - except (ValueError): - tp[key] = None + tp[key] = jc.utils.convert_to_float(tp[key]) for entry in proc_data: if 'until_charged' in entry: diff --git a/jc/parsers/airport.py b/jc/parsers/airport.py index 546989e7..f541316d 100644 --- a/jc/parsers/airport.py +++ b/jc/parsers/airport.py @@ -80,7 +80,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`airport -I` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -111,10 +111,7 @@ def _process(proc_data): 'lasttxrate', 'maxrate', 'lastassocstatus', 'mcs'] for key in proc_data: if key in int_list: - try: - proc_data[key] = int(proc_data[key]) - except (ValueError): - proc_data[key] = None + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) return proc_data diff --git a/jc/parsers/airport_s.py b/jc/parsers/airport_s.py index 4158f398..3ae4aef9 100644 --- a/jc/parsers/airport_s.py +++ b/jc/parsers/airport_s.py @@ -109,7 +109,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`airport -s` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -141,19 +141,13 @@ def _process(proc_data): int_list = ['rssi'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) # booleans bool_list = ['ht'] for key in entry: if key in bool_list: - try: - entry[key] = True if entry[key] == 'Y' else False - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_bool(entry[key]) if 'security' in entry: entry['security'] = entry['security'].split() diff --git a/jc/parsers/arp.py b/jc/parsers/arp.py index 4df2f744..896e37c4 100644 --- a/jc/parsers/arp.py +++ b/jc/parsers/arp.py @@ -152,10 +152,7 @@ def _process(proc_data): int_list = ['expires'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/blkid.py b/jc/parsers/blkid.py index 4acb1cb9..0153efc7 100644 --- a/jc/parsers/blkid.py +++ b/jc/parsers/blkid.py @@ -121,7 +121,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`blkid` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -157,10 +157,7 @@ def _process(proc_data): 'id_iolimit_logical_sector_size'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/cksum.py b/jc/parsers/cksum.py index 32a6c24d..b3150f6e 100644 --- a/jc/parsers/cksum.py +++ b/jc/parsers/cksum.py @@ -54,7 +54,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`cksum` and `sum` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -84,10 +84,8 @@ def _process(proc_data): int_list = ['checksum', 'blocks'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) + return proc_data diff --git a/jc/parsers/df.py b/jc/parsers/df.py index 5fd8c3bb..714c4ae4 100644 --- a/jc/parsers/df.py +++ b/jc/parsers/df.py @@ -98,7 +98,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.6' + version = '1.7' description = '`df` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -144,11 +144,7 @@ def _process(proc_data): # change any entry for key with '_blocks' in the name to int for k in entry: if '_blocks' in str(k): - try: - blocks_int = int(entry[k]) - entry[k] = blocks_int - except (ValueError): - entry[k] = None + entry[k] = jc.utils.convert_to_int(entry[k]) # remove percent sign from 'use_percent', 'capacity_percent', and 'iused_percent' if 'use_percent' in entry: @@ -164,11 +160,7 @@ def _process(proc_data): int_list = ['used', 'available', 'use_percent', 'capacity_percent', 'ifree', 'iused', 'iused_percent'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 8bbb621c..4ceccfea 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -302,67 +302,35 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd', 'query_size'] + int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd', + 'query_size', 'query_time'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if 'axfr' in entry: for ax in entry['axfr']: - try: - ttl_int = int(ax['ttl']) - ax['ttl'] = ttl_int - except (ValueError): - ax['ttl'] = None + ax['ttl'] = jc.utils.convert_to_int(ax['ttl']) if 'opt_pseudosection' in entry: if 'edns' in entry['opt_pseudosection']: if 'version' in entry['opt_pseudosection']['edns']: - try: - entry['opt_pseudosection']['edns']['version'] = int(entry['opt_pseudosection']['edns']['version']) - except (ValueError): - entry['opt_pseudosection']['edns']['version'] = None + entry['opt_pseudosection']['edns']['version'] = jc.utils.convert_to_int(entry['opt_pseudosection']['edns']['version']) if 'udp' in entry['opt_pseudosection']['edns']: - try: - entry['opt_pseudosection']['edns']['udp'] = int(entry['opt_pseudosection']['edns']['udp']) - except (ValueError): - entry['opt_pseudosection']['edns']['udp'] = None + entry['opt_pseudosection']['edns']['udp'] = jc.utils.convert_to_int(entry['opt_pseudosection']['edns']['udp']) if 'answer' in entry: for ans in entry['answer']: - try: - ttl_int = int(ans['ttl']) - ans['ttl'] = ttl_int - except (ValueError): - ans['ttl'] = None + ans['ttl'] = jc.utils.convert_to_int(ans['ttl']) if 'additional' in entry: for add in entry['additional']: - try: - ttl_int = int(add['ttl']) - add['ttl'] = ttl_int - except (ValueError): - add['ttl'] = None + add['ttl'] = jc.utils.convert_to_int(add['ttl']) if 'authority' in entry: for auth in entry['authority']: - try: - ttl_int = int(auth['ttl']) - auth['ttl'] = ttl_int - except (ValueError): - auth['ttl'] = None - - if 'query_time' in entry: - try: - qt_int = int(entry['query_time'].split()[0]) - entry['query_time'] = qt_int - except (ValueError): - entry['query_time'] = None + auth['ttl'] = jc.utils.convert_to_int(auth['ttl']) if 'when' in entry: ts = jc.utils.timestamp(entry['when']) diff --git a/jc/parsers/dir.py b/jc/parsers/dir.py index dac056b4..19fae60a 100644 --- a/jc/parsers/dir.py +++ b/jc/parsers/dir.py @@ -121,7 +121,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`dir` command parser' author = 'Rasheed Elsaleh' author_email = 'rasheed@rebelliondefense.com' @@ -156,13 +156,8 @@ def _process(proc_data): # add ints int_list = ["size"] for key in int_list: - if entry.get(key): - try: - key_int = int(entry[key].replace(",", "")) - except ValueError: - entry[key] = None - else: - entry[key] = key_int + if key in entry: + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index fc2c1747..5c7e6971 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -125,7 +125,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`dmidecode` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -155,11 +155,7 @@ def _process(proc_data): int_list = ['type', 'bytes'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if not entry['values']: entry['values'] = None diff --git a/jc/parsers/du.py b/jc/parsers/du.py index 553596a1..d5dd592e 100644 --- a/jc/parsers/du.py +++ b/jc/parsers/du.py @@ -88,7 +88,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`du` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -118,11 +118,7 @@ def _process(proc_data): for entry in proc_data: for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/foo.py b/jc/parsers/foo.py index 25d2c98a..ca3e828d 100644 --- a/jc/parsers/foo.py +++ b/jc/parsers/foo.py @@ -66,6 +66,8 @@ def _process(proc_data): """ # rebuild output for added semantic information + # use helper functions in jc.utils for int, float, bool conversions and timestamps + return proc_data diff --git a/jc/parsers/free.py b/jc/parsers/free.py index 09d2bdb7..c8fcc116 100644 --- a/jc/parsers/free.py +++ b/jc/parsers/free.py @@ -73,7 +73,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`free` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -103,11 +103,7 @@ def _process(proc_data): int_list = ['total', 'used', 'free', 'shared', 'buff_cache', 'available'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/fstab.py b/jc/parsers/fstab.py index 5892a748..4620a4f6 100644 --- a/jc/parsers/fstab.py +++ b/jc/parsers/fstab.py @@ -85,7 +85,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`/etc/fstab` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -113,11 +113,7 @@ def _process(proc_data): int_list = ['fs_freq', 'fs_passno'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/group.py b/jc/parsers/group.py index eb2de469..22ba0e66 100644 --- a/jc/parsers/group.py +++ b/jc/parsers/group.py @@ -109,7 +109,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`/etc/group` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -138,11 +138,7 @@ def _process(proc_data): int_list = ['gid'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if entry['members'] == ['']: entry['members'] = [] diff --git a/jc/parsers/hash.py b/jc/parsers/hash.py index 54b4546c..f73ac0fa 100644 --- a/jc/parsers/hash.py +++ b/jc/parsers/hash.py @@ -38,7 +38,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`hash` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -63,15 +63,10 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - # change to int int_list = ['hits'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/hciconfig.py b/jc/parsers/hciconfig.py index e1f1ba9c..27801b38 100644 --- a/jc/parsers/hciconfig.py +++ b/jc/parsers/hciconfig.py @@ -317,7 +317,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`hciconfig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -346,15 +346,11 @@ def _process(proc_data): for entry in proc_data: - # integers int_list = ['acl_mtu', 'acl_mtu_packets', 'sco_mtu', 'sco_mtu_packets', 'rx_bytes', 'rx_acl', 'rx_sco', 'rx_events', 'rx_errors', 'tx_bytes', 'tx_acl', 'tx_sco', 'tx_commands', 'tx_errors'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if 'service_classes' in entry and len(entry['service_classes']) == 1 and 'Unspecified' in entry['service_classes']: entry['service_classes'] = None diff --git a/jc/parsers/history.py b/jc/parsers/history.py index f5fd77ba..24f9851d 100644 --- a/jc/parsers/history.py +++ b/jc/parsers/history.py @@ -57,7 +57,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`history` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -82,12 +82,10 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ - - # rebuild output for added semantic information processed = [] for k, v in proc_data.items(): proc_line = { - 'line': int(k) if k.isdigit() else None, + 'line': jc.utils.convert_to_int(k), 'command': v, } processed.append(proc_line) diff --git a/jc/parsers/id.py b/jc/parsers/id.py index c603f3cc..c3f54e44 100644 --- a/jc/parsers/id.py +++ b/jc/parsers/id.py @@ -105,7 +105,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`id` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -133,25 +133,16 @@ def _process(proc_data): """ if 'uid' in proc_data: if 'id' in proc_data['uid']: - try: - proc_data['uid']['id'] = int(proc_data['uid']['id']) - except (ValueError): - proc_data['uid']['id'] = None + proc_data['uid']['id'] = jc.utils.convert_to_int(proc_data['uid']['id']) if 'gid' in proc_data: if 'id' in proc_data['gid']: - try: - proc_data['gid']['id'] = int(proc_data['gid']['id']) - except (ValueError): - proc_data['gid']['id'] = None + proc_data['gid']['id'] = jc.utils.convert_to_int(proc_data['gid']['id']) if 'groups' in proc_data: for group in proc_data['groups']: if 'id' in group: - try: - group['id'] = int(group['id']) - except (ValueError): - group['id'] = None + group['id'] = jc.utils.convert_to_int(group['id']) return proc_data diff --git a/jc/parsers/ifconfig.py b/jc/parsers/ifconfig.py index 9be8d806..c45b60fb 100644 --- a/jc/parsers/ifconfig.py +++ b/jc/parsers/ifconfig.py @@ -188,7 +188,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.9' + version = '1.10' description = '`ifconfig` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -398,7 +398,8 @@ class _IfconfigParser(object): if match: details = match.groupdict() for k, v in details.items(): - if isinstance(v, str): details[k] = v.strip() + if isinstance(v, str): + details[k] = v.strip() _interface.update(details) if _interface is not None: available_interfaces[_interface['name']] = self.update_interface_details(_interface) @@ -435,11 +436,7 @@ def _process(proc_data): 'tx_collisions', 'metric'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError, TypeError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) # convert OSX-style subnet mask to dotted quad if 'ipv4_mask' in entry: diff --git a/jc/utils.py b/jc/utils.py index 186592f7..278b2664 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -92,16 +92,76 @@ def convert_to_int(value): value: (string) Input value Returns: + integer/None Integer if successful conversion, otherwise None """ try: - value = int(re.sub('[^0-9]', '', value)) + value = int(re.sub(r'[^0-9\-\.]', '', value)) + except (ValueError, TypeError): + try: + value = round(convert_to_float(value)) + except (ValueError, TypeError): + return None + + return value + + +def convert_to_float(value): + """ + Converts string input to float by stripping all non-numeric characters + + Parameters: + + value: (string) Input value + + Returns: + + float/None Float if successful conversion, otherwise None + """ + try: + value = float(re.sub(r'[^0-9\-\.]', '', value)) except (ValueError, TypeError): return None return value +def convert_to_bool(value): + """ + Converts string, integer, or float input to boolean by checking for 'truthy' values + + Parameters: + + value: (string/integer/float) Input value + + Returns: + + True/False False unless a 'truthy' number or string is found ('y', 'yes', 'true', '1', 1, -1, etc.) + """ + # if number, then bool it + # if string, try to convert to float + # if float converts, then bool the result + # if float does not convert then look for truthy string and bool True + # else False + truthy = ['y', 'yes', 'true'] + + if isinstance(value, (int, float)): + return bool(value) + + if isinstance(value, str): + try: + test_value = convert_to_float(value) + if test_value is not None: + return bool(test_value) + except Exception: + pass + + if value: + return True if value.lower() in truthy else False + + return False + + class timestamp: """ Input a date-time text string of several formats and convert to a naive or timezone-aware epoch timestamp in UTC diff --git a/tests/fixtures/centos-7.7/df-h.json b/tests/fixtures/centos-7.7/df-h.json index f1e3f13b..13569fd6 100644 --- a/tests/fixtures/centos-7.7/df-h.json +++ b/tests/fixtures/centos-7.7/df-h.json @@ -1 +1 @@ -[{"filesystem": "devtmpfs", "size": "1.9G", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/dev"}, {"filesystem": "tmpfs", "size": "1.9G", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/dev/shm"}, {"filesystem": "tmpfs", "size": "1.9G", "used": null, "available": null, "use_percent": 1, "mounted_on": "/run"}, {"filesystem": "tmpfs", "size": "1.9G", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/sys/fs/cgroup"}, {"filesystem": "/dev/mapper/centos-root", "size": "17G", "used": null, "available": null, "use_percent": 11, "mounted_on": "/"}, {"filesystem": "/dev/sda1", "size": "1014M", "used": null, "available": null, "use_percent": 23, "mounted_on": "/boot"}, {"filesystem": "tmpfs", "size": "378M", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/run/user/1000"}] +[{"filesystem":"devtmpfs","size":"1.9G","used":0,"mounted_on":"/dev","available":2,"use_percent":0},{"filesystem":"tmpfs","size":"1.9G","used":0,"mounted_on":"/dev/shm","available":2,"use_percent":0},{"filesystem":"tmpfs","size":"1.9G","used":12,"mounted_on":"/run","available":2,"use_percent":1},{"filesystem":"tmpfs","size":"1.9G","used":0,"mounted_on":"/sys/fs/cgroup","available":2,"use_percent":0},{"filesystem":"/dev/mapper/centos-root","size":"17G","used":2,"mounted_on":"/","available":16,"use_percent":11},{"filesystem":"/dev/sda1","size":"1014M","used":233,"mounted_on":"/boot","available":782,"use_percent":23},{"filesystem":"tmpfs","size":"378M","used":0,"mounted_on":"/run/user/1000","available":378,"use_percent":0}] diff --git a/tests/fixtures/centos-7.7/free-h.json b/tests/fixtures/centos-7.7/free-h.json index 4bc5380a..1d47988f 100644 --- a/tests/fixtures/centos-7.7/free-h.json +++ b/tests/fixtures/centos-7.7/free-h.json @@ -1 +1 @@ -[{"type": "Mem", "total": null, "used": null, "free": null, "shared": null, "buff_cache": null, "available": null}, {"type": "Swap", "total": null, "used": null, "free": null}] +[{"type":"Mem","total":4,"used":217,"free":3,"shared":11,"buff_cache":267,"available":3},{"type":"Swap","total":2,"used":0,"free":2}] diff --git a/tests/fixtures/osx-10.11.6/df-h.json b/tests/fixtures/osx-10.11.6/df-h.json index 078f486b..b69a0c51 100644 --- a/tests/fixtures/osx-10.11.6/df-h.json +++ b/tests/fixtures/osx-10.11.6/df-h.json @@ -1 +1 @@ -[{"filesystem": "/dev/disk1s1", "size": "466Gi", "used": null, "iused": 674413, "ifree": 9223372036854101394, "mounted_on": "/", "available": null, "capacity_percent": 30, "iused_percent": 0}, {"filesystem": "devfs", "size": "188Ki", "used": null, "iused": 650, "ifree": 0, "mounted_on": "/dev", "available": null, "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "/dev/disk1s4", "size": "466Gi", "used": null, "iused": 2, "ifree": 9223372036854775805, "mounted_on": "/private/var/vm", "available": null, "capacity_percent": 1, "iused_percent": 0}, {"filesystem": "map -hosts", "size": "0Bi", "used": null, "iused": 0, "ifree": 0, "mounted_on": "/net", "available": null, "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "map auto_home", "size": "0Bi", "used": null, "iused": 0, "ifree": 0, "mounted_on": "/home", "available": null, "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil", "size": "3.5Ti", "used": null, "iused": 301134832, "ifree": 649465741, "mounted_on": "/Volumes/brazil", "available": null, "capacity_percent": 32, "iused_percent": 32}] +[{"filesystem":"/dev/disk1s1","size":"466Gi","used":137,"iused":674413,"ifree":9223372036854101394,"mounted_on":"/","available":326,"capacity_percent":30,"iused_percent":0},{"filesystem":"devfs","size":"188Ki","used":188,"iused":650,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":"466Gi","used":2,"iused":2,"ifree":9223372036854775805,"mounted_on":"/private/var/vm","available":326,"capacity_percent":1,"iused_percent":0},{"filesystem":"map -hosts","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":"3.5Ti","used":1,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2,"capacity_percent":32,"iused_percent":32}] diff --git a/tests/fixtures/osx-10.14.6/df-h.json b/tests/fixtures/osx-10.14.6/df-h.json index ca49a8b8..4467cf76 100644 --- a/tests/fixtures/osx-10.14.6/df-h.json +++ b/tests/fixtures/osx-10.14.6/df-h.json @@ -1 +1 @@ -[{"filesystem": "/dev/disk1s1", "size": "466Gi", "used": null, "iused": 1507697, "ifree": 9223372036853268110, "mounted_on": "/", "available": null, "capacity_percent": 32, "iused_percent": 0}, {"filesystem": "devfs", "size": "334Ki", "used": null, "iused": 1154, "ifree": 0, "mounted_on": "/dev", "available": null, "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "/dev/disk1s4", "size": "466Gi", "used": null, "iused": 6, "ifree": 9223372036854775801, "mounted_on": "/private/var/vm", "available": null, "capacity_percent": 2, "iused_percent": 0}, {"filesystem": "map -hosts", "size": "0Bi", "used": null, "iused": 0, "ifree": 0, "mounted_on": "/net", "available": null, "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "map auto_home", "size": "0Bi", "used": null, "iused": 0, "ifree": 0, "mounted_on": "/home", "available": null, "capacity_percent": 100, "iused_percent": 100}, {"filesystem": "/dev/disk2s2", "size": "6.9Gi", "used": null, "iused": 8, "ifree": 4294967271, "mounted_on": "/Volumes/InstallESD", "available": null, "capacity_percent": 76, "iused_percent": 0}, {"filesystem": "com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1", "size": "466Gi", "used": null, "iused": 1459164, "ifree": 9223372036853316643, "mounted_on": "/Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD", "available": null, "capacity_percent": 30, "iused_percent": 0}, {"filesystem": "//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil", "size": "3.5Ti", "used": null, "iused": 301134832, "ifree": 649465741, "mounted_on": "/Volumes/brazil", "available": null, "capacity_percent": 32, "iused_percent": 32}] +[{"filesystem":"/dev/disk1s1","size":"466Gi","used":144,"iused":1507697,"ifree":9223372036853268110,"mounted_on":"/","available":315,"capacity_percent":32,"iused_percent":0},{"filesystem":"devfs","size":"334Ki","used":334,"iused":1154,"ifree":0,"mounted_on":"/dev","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk1s4","size":"466Gi","used":6,"iused":6,"ifree":9223372036854775801,"mounted_on":"/private/var/vm","available":315,"capacity_percent":2,"iused_percent":0},{"filesystem":"map -hosts","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/net","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"map auto_home","size":"0Bi","used":0,"iused":0,"ifree":0,"mounted_on":"/home","available":0,"capacity_percent":100,"iused_percent":100},{"filesystem":"/dev/disk2s2","size":"6.9Gi","used":5,"iused":8,"ifree":4294967271,"mounted_on":"/Volumes/InstallESD","available":2,"capacity_percent":76,"iused_percent":0},{"filesystem":"com.apple.TimeMachine.2019-11-29-075900@/dev/disk1s1","size":"466Gi","used":132,"iused":1459164,"ifree":9223372036853316643,"mounted_on":"/Volumes/com.apple.TimeMachine.localsnapshots/Backups.backupdb/kbrazil-mac/2019-11-29-075900/Macintosh HD","available":315,"capacity_percent":30,"iused_percent":0},{"filesystem":"//brazil@MyCloudEX2Ultra._afpovertcp._tcp.local/brazil","size":"3.5Ti","used":1,"iused":301134832,"ifree":649465741,"mounted_on":"/Volumes/brazil","available":2,"capacity_percent":32,"iused_percent":32}] diff --git a/tests/fixtures/ubuntu-18.04/df-h.json b/tests/fixtures/ubuntu-18.04/df-h.json index 56d3a3d8..90617838 100644 --- a/tests/fixtures/ubuntu-18.04/df-h.json +++ b/tests/fixtures/ubuntu-18.04/df-h.json @@ -1 +1 @@ -[{"filesystem": "udev", "size": "955M", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/dev"}, {"filesystem": "tmpfs", "size": "198M", "used": null, "available": null, "use_percent": 1, "mounted_on": "/run"}, {"filesystem": "/dev/sda2", "size": "20G", "used": null, "available": null, "use_percent": 30, "mounted_on": "/"}, {"filesystem": "tmpfs", "size": "986M", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/dev/shm"}, {"filesystem": "tmpfs", "size": "5.0M", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/run/lock"}, {"filesystem": "tmpfs", "size": "986M", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/sys/fs/cgroup"}, {"filesystem": "/dev/loop0", "size": "55M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/core18/1223"}, {"filesystem": "/dev/loop1", "size": "11M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/slcli/383"}, {"filesystem": "/dev/loop2", "size": "89M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/core/7396"}, {"filesystem": "/dev/loop3", "size": "67M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/google-cloud-sdk/103"}, {"filesystem": "/dev/loop5", "size": "55M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/core18/1074"}, {"filesystem": "/dev/loop7", "size": "8.7M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/doctl/187"}, {"filesystem": "/dev/loop8", "size": "3.2M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/stress-ng/847"}, {"filesystem": "/dev/loop10", "size": "90M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/core/7917"}, {"filesystem": "/dev/loop11", "size": "3.3M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/stress-ng/924"}, {"filesystem": "tmpfs", "size": "197M", "used": 0, "available": null, "use_percent": 0, "mounted_on": "/run/user/1000"}, {"filesystem": "/dev/loop9", "size": "8.7M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/doctl/215"}, {"filesystem": "/dev/loop4", "size": "67M", "used": null, "available": 0, "use_percent": 100, "mounted_on": "/snap/google-cloud-sdk/104"}] +[{"filesystem":"udev","size":"955M","used":0,"mounted_on":"/dev","available":955,"use_percent":0},{"filesystem":"tmpfs","size":"198M","used":1,"mounted_on":"/run","available":196,"use_percent":1},{"filesystem":"/dev/sda2","size":"20G","used":6,"mounted_on":"/","available":14,"use_percent":30},{"filesystem":"tmpfs","size":"986M","used":0,"mounted_on":"/dev/shm","available":986,"use_percent":0},{"filesystem":"tmpfs","size":"5.0M","used":0,"mounted_on":"/run/lock","available":5,"use_percent":0},{"filesystem":"tmpfs","size":"986M","used":0,"mounted_on":"/sys/fs/cgroup","available":986,"use_percent":0},{"filesystem":"/dev/loop0","size":"55M","used":55,"mounted_on":"/snap/core18/1223","available":0,"use_percent":100},{"filesystem":"/dev/loop1","size":"11M","used":11,"mounted_on":"/snap/slcli/383","available":0,"use_percent":100},{"filesystem":"/dev/loop2","size":"89M","used":89,"mounted_on":"/snap/core/7396","available":0,"use_percent":100},{"filesystem":"/dev/loop3","size":"67M","used":67,"mounted_on":"/snap/google-cloud-sdk/103","available":0,"use_percent":100},{"filesystem":"/dev/loop5","size":"55M","used":55,"mounted_on":"/snap/core18/1074","available":0,"use_percent":100},{"filesystem":"/dev/loop7","size":"8.7M","used":9,"mounted_on":"/snap/doctl/187","available":0,"use_percent":100},{"filesystem":"/dev/loop8","size":"3.2M","used":3,"mounted_on":"/snap/stress-ng/847","available":0,"use_percent":100},{"filesystem":"/dev/loop10","size":"90M","used":90,"mounted_on":"/snap/core/7917","available":0,"use_percent":100},{"filesystem":"/dev/loop11","size":"3.3M","used":3,"mounted_on":"/snap/stress-ng/924","available":0,"use_percent":100},{"filesystem":"tmpfs","size":"197M","used":0,"mounted_on":"/run/user/1000","available":197,"use_percent":0},{"filesystem":"/dev/loop9","size":"8.7M","used":9,"mounted_on":"/snap/doctl/215","available":0,"use_percent":100},{"filesystem":"/dev/loop4","size":"67M","used":67,"mounted_on":"/snap/google-cloud-sdk/104","available":0,"use_percent":100}] diff --git a/tests/fixtures/ubuntu-18.04/free-h.json b/tests/fixtures/ubuntu-18.04/free-h.json index 4bc5380a..586bb889 100644 --- a/tests/fixtures/ubuntu-18.04/free-h.json +++ b/tests/fixtures/ubuntu-18.04/free-h.json @@ -1 +1 @@ -[{"type": "Mem", "total": null, "used": null, "free": null, "shared": null, "buff_cache": null, "available": null}, {"type": "Swap", "total": null, "used": null, "free": null}] +[{"type":"Mem","total":2,"used":237,"free":466,"shared":1,"buff_cache":1,"available":2},{"type":"Swap","total":2,"used":268,"free":2}] From 1f034826f69c461495f7a302cc8fe35e3052e72f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 18 Apr 2021 13:01:25 -0700 Subject: [PATCH 31/36] use jc.utils for conversions --- docs/parsers/iptables.md | 2 +- docs/parsers/jobs.md | 2 +- docs/parsers/last.md | 2 +- docs/parsers/ls.md | 3 +- docs/parsers/lsblk.md | 2 +- docs/parsers/lsmod.md | 2 +- docs/parsers/lsof.md | 2 +- docs/parsers/netstat.md | 2 +- docs/parsers/ntpq.md | 2 +- docs/parsers/passwd.md | 2 +- docs/parsers/ping.md | 2 +- docs/parsers/ps.md | 2 +- docs/parsers/route.md | 2 +- docs/parsers/rpm_qi.md | 2 +- docs/parsers/shadow.md | 2 +- docs/parsers/ss.md | 2 +- docs/parsers/stat.md | 2 +- jc/parsers/iptables.py | 10 ++---- jc/parsers/jobs.py | 8 ++--- jc/parsers/last.py | 4 +-- jc/parsers/ls.py | 9 ++---- jc/parsers/lsblk.py | 14 ++------ jc/parsers/lsmod.py | 9 ++---- jc/parsers/lsof.py | 10 ++---- jc/parsers/netstat.py | 37 ++++++++-------------- jc/parsers/ntpq.py | 12 ++----- jc/parsers/passwd.py | 8 ++--- jc/parsers/ping.py | 32 ++++++------------- jc/parsers/ps.py | 15 +++------ jc/parsers/route.py | 8 ++--- jc/parsers/rpm_qi.py | 9 ++---- jc/parsers/shadow.py | 8 ++--- jc/parsers/ss.py | 22 +++++-------- jc/parsers/stat.py | 11 +++---- tests/fixtures/centos-7.7/ls-alh.json | 2 +- tests/fixtures/centos-7.7/lsof-sudo.json | 2 +- tests/fixtures/centos-7.7/lsof.json | 2 +- tests/fixtures/osx-10.11.6/ls-alh.json | 2 +- tests/fixtures/osx-10.14.6/ls-alh.json | 2 +- tests/fixtures/ubuntu-18.04/ls-alh.json | 2 +- tests/fixtures/ubuntu-18.04/lsof-sudo.json | 2 +- tests/fixtures/ubuntu-18.04/lsof.json | 2 +- 42 files changed, 93 insertions(+), 184 deletions(-) diff --git a/docs/parsers/iptables.md b/docs/parsers/iptables.md index e2792c63..6cbc0c60 100644 --- a/docs/parsers/iptables.md +++ b/docs/parsers/iptables.md @@ -188,4 +188,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/jobs.md b/docs/parsers/jobs.md index d5a5178d..80fff5e8 100644 --- a/docs/parsers/jobs.md +++ b/docs/parsers/jobs.md @@ -119,4 +119,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/last.md b/docs/parsers/last.md index b95ed89d..b5a1419c 100644 --- a/docs/parsers/last.md +++ b/docs/parsers/last.md @@ -128,4 +128,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, aix, freebsd -Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ls.md b/docs/parsers/ls.md index a073597c..7c523c04 100644 --- a/docs/parsers/ls.md +++ b/docs/parsers/ls.md @@ -6,7 +6,6 @@ jc - JSON CLI output utility `ls` and `vdir` command output parser Options supported: - `lbaR1` - `--time-style=full-iso` -- `-h`: File sizes will be available in text form with `-r` but larger file sizes with human readable suffixes will be converted to `Null` in the default view since the parser attempts to convert this field to an integer. Note: The `-1`, `-l`, or `-b` option of `ls` should be used to correctly parse filenames that include newline characters. Since `ls` does not encode newlines in filenames when outputting to a pipe it will cause `jc` to see multiple files instead of a single file if `-1`, `-l`, or `-b` is not used. Alternatively, `vdir` can be used, which is the same as running `ls -lb`. @@ -132,4 +131,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/lsblk.md b/docs/parsers/lsblk.md index eeb77fad..5958575f 100644 --- a/docs/parsers/lsblk.md +++ b/docs/parsers/lsblk.md @@ -293,4 +293,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/lsmod.md b/docs/parsers/lsmod.md index ede5369c..f914e1c6 100644 --- a/docs/parsers/lsmod.md +++ b/docs/parsers/lsmod.md @@ -150,4 +150,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/lsof.md b/docs/parsers/lsof.md index d2bd428b..4de5fef6 100644 --- a/docs/parsers/lsof.md +++ b/docs/parsers/lsof.md @@ -144,4 +144,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/netstat.md b/docs/parsers/netstat.md index dea01c4c..d19ee7f9 100644 --- a/docs/parsers/netstat.md +++ b/docs/parsers/netstat.md @@ -379,4 +379,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, freebsd -Version 1.9 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.10 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ntpq.md b/docs/parsers/ntpq.md index 822456b0..a5001b67 100644 --- a/docs/parsers/ntpq.md +++ b/docs/parsers/ntpq.md @@ -231,4 +231,4 @@ Returns: ## Parser Information Compatibility: linux, freebsd -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/passwd.md b/docs/parsers/passwd.md index 52f188e8..f808b80d 100644 --- a/docs/parsers/passwd.md +++ b/docs/parsers/passwd.md @@ -119,4 +119,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, aix, freebsd -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ping.md b/docs/parsers/ping.md index 91c14f85..3e7db2b5 100644 --- a/docs/parsers/ping.md +++ b/docs/parsers/ping.md @@ -170,4 +170,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, freebsd -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ps.md b/docs/parsers/ps.md index 5b645dc0..7d525dec 100644 --- a/docs/parsers/ps.md +++ b/docs/parsers/ps.md @@ -231,4 +231,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/route.md b/docs/parsers/route.md index 74fe454a..ed559ff1 100644 --- a/docs/parsers/route.md +++ b/docs/parsers/route.md @@ -135,4 +135,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/rpm_qi.md b/docs/parsers/rpm_qi.md index b5e01223..0766c222 100644 --- a/docs/parsers/rpm_qi.md +++ b/docs/parsers/rpm_qi.md @@ -181,4 +181,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/shadow.md b/docs/parsers/shadow.md index 7c4b7846..ff22a0d1 100644 --- a/docs/parsers/shadow.md +++ b/docs/parsers/shadow.md @@ -126,4 +126,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, aix, freebsd -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/ss.md b/docs/parsers/ss.md index d531672c..8bc98d89 100644 --- a/docs/parsers/ss.md +++ b/docs/parsers/ss.md @@ -303,4 +303,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/stat.md b/docs/parsers/stat.md index 37ba9fd7..350b25f5 100644 --- a/docs/parsers/stat.md +++ b/docs/parsers/stat.md @@ -193,4 +193,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, freebsd -Version 1.7 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.8 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/iptables.py b/jc/parsers/iptables.py index 264a49fd..110de268 100644 --- a/jc/parsers/iptables.py +++ b/jc/parsers/iptables.py @@ -163,7 +163,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.5' + version = '1.6' description = '`iptables` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -193,11 +193,7 @@ def _process(proc_data): int_list = ['num', 'pkts'] for key in int_list: if key in rule: - try: - key_int = int(rule[key]) - rule[key] = key_int - except (ValueError): - rule[key] = None + rule[key] = jc.utils.convert_to_int(rule[key]) if 'bytes' in rule: multiplier = 1 @@ -218,7 +214,7 @@ def _process(proc_data): rule['bytes'] = rule['bytes'].rstrip('P') try: - bytes_int = int(rule['bytes']) + bytes_int = jc.utils.convert_to_int(rule['bytes']) rule['bytes'] = bytes_int * multiplier except (ValueError): rule['bytes'] = None diff --git a/jc/parsers/jobs.py b/jc/parsers/jobs.py index 50dc3cd9..42ba7aab 100644 --- a/jc/parsers/jobs.py +++ b/jc/parsers/jobs.py @@ -95,7 +95,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`jobs` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -124,11 +124,7 @@ def _process(proc_data): int_list = ['job_number', 'pid'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/last.py b/jc/parsers/last.py index 5a498837..84969db2 100644 --- a/jc/parsers/last.py +++ b/jc/parsers/last.py @@ -104,7 +104,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.6' + version = '1.7' description = '`last` and `lastb` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -161,7 +161,7 @@ def _process(proc_data): entry['logout_epoch'] = timestamp.naive if 'login_epoch' in entry and 'logout_epoch' in entry: - entry['duration_seconds'] = int(entry['logout_epoch']) - int(entry['login_epoch']) + entry['duration_seconds'] = entry['logout_epoch'] - entry['login_epoch'] if 'duration' in entry and re.match(r'^\d+\+', entry['duration']): m = re.match(r'^(?P\d+)\+(?P\d\d):(?P\d\d)', entry['duration']) diff --git a/jc/parsers/ls.py b/jc/parsers/ls.py index 976ba984..691657af 100644 --- a/jc/parsers/ls.py +++ b/jc/parsers/ls.py @@ -3,7 +3,6 @@ Options supported: - `lbaR1` - `--time-style=full-iso` -- `-h`: File sizes will be available in text form with `-r` but larger file sizes with human readable suffixes will be converted to `Null` in the default view since the parser attempts to convert this field to an integer. Note: The `-1`, `-l`, or `-b` option of `ls` should be used to correctly parse filenames that include newline characters. Since `ls` does not encode newlines in filenames when outputting to a pipe it will cause `jc` to see multiple files instead of a single file if `-1`, `-l`, or `-b` is not used. Alternatively, `vdir` can be used, which is the same as running `ls -lb`. @@ -108,7 +107,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.8' + version = '1.9' description = '`ls` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -137,11 +136,7 @@ def _process(proc_data): int_list = ['links', 'size'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if 'date' in entry: # to speed up processing only try to convert the date if it's not the default format diff --git a/jc/parsers/lsblk.py b/jc/parsers/lsblk.py index 5a119bb7..cd09b74f 100644 --- a/jc/parsers/lsblk.py +++ b/jc/parsers/lsblk.py @@ -269,7 +269,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.6' + version = '1.7' description = '`lsblk` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -299,21 +299,13 @@ def _process(proc_data): bool_list = ['rm', 'ro', 'rota', 'disc_zero', 'rand'] for key in bool_list: if key in entry: - try: - key_bool = bool(int(entry[key])) - entry[key] = key_bool - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_bool(entry[key]) # integer changes int_list = ['ra', 'alignment', 'min_io', 'opt_io', 'phy_sec', 'log_sec', 'rq_size', 'disc_aln'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/lsmod.py b/jc/parsers/lsmod.py index 8aa63bbe..ba1b286a 100644 --- a/jc/parsers/lsmod.py +++ b/jc/parsers/lsmod.py @@ -126,7 +126,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`lsmod` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -152,15 +152,10 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - # integer changes int_list = ['size', 'used'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/lsof.py b/jc/parsers/lsof.py index ed077231..96dff8ea 100644 --- a/jc/parsers/lsof.py +++ b/jc/parsers/lsof.py @@ -120,7 +120,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`lsof` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -146,15 +146,11 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - # integer changes int_list = ['pid', 'tid', 'size_off', 'node'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError, TypeError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) + return proc_data diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 66aab271..a712168d 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -349,11 +349,12 @@ Examples: } ] """ +import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.9' + version = '1.10' description = '`netstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -389,33 +390,23 @@ def _process(proc_data): 's_bcnt', 'r_bmax', 's_bmax', 'rexmit', 'ooorcv', '0_win'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) + + if 'local_port' in entry: + local_num = jc.utils.convert_to_int(entry['local_port']) + if local_num: + entry['local_port_num'] = local_num + + if 'foreign_port' in entry: + foreign_num = jc.utils.convert_to_int(entry['foreign_port']) + if foreign_num: + entry['foreign_port_num'] = foreign_num # float changes float_list = ['rexmt', 'persist', 'keep', '2msl', 'delack', 'rcvtime'] for key in float_list: if key in entry: - try: - key_float = float(entry[key]) - entry[key] = key_float - except (ValueError): - entry[key] = None - - if 'local_port' in entry: - try: - entry['local_port_num'] = int(entry['local_port']) - except (ValueError): - pass - - if 'foreign_port' in entry: - try: - entry['foreign_port_num'] = int(entry['foreign_port']) - except (ValueError): - pass + entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data diff --git a/jc/parsers/ntpq.py b/jc/parsers/ntpq.py index af44e5c6..bf879abc 100644 --- a/jc/parsers/ntpq.py +++ b/jc/parsers/ntpq.py @@ -207,7 +207,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`ntpq -p` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -242,18 +242,12 @@ def _process(proc_data): int_list = ['st', 'when', 'poll', 'reach'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) float_list = ['delay', 'offset', 'jitter'] for key in float_list: if key in entry: - try: - entry[key] = float(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data diff --git a/jc/parsers/passwd.py b/jc/parsers/passwd.py index 02fb0627..bf6912df 100644 --- a/jc/parsers/passwd.py +++ b/jc/parsers/passwd.py @@ -94,7 +94,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`/etc/passwd` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -123,11 +123,7 @@ def _process(proc_data): int_list = ['uid', 'gid'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/ping.py b/jc/parsers/ping.py index 968e0a6a..e8121062 100644 --- a/jc/parsers/ping.py +++ b/jc/parsers/ping.py @@ -146,7 +146,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`ping` and `ping6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -175,34 +175,20 @@ def _process(proc_data): float_list = ['packet_loss_percent', 'round_trip_ms_min', 'round_trip_ms_avg', 'round_trip_ms_max', 'round_trip_ms_stddev', 'timestamp', 'time_ms'] - for key in proc_data.keys(): - for item in int_list: - if item == key: - try: - proc_data[key] = int(proc_data[key]) - except (ValueError, TypeError): - proc_data[key] = None + for key in proc_data: + if key in int_list: + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) - for item in float_list: - if item == key: - try: - proc_data[key] = float(proc_data[key]) - except (ValueError, TypeError): - proc_data[key] = None + if key in float_list: + proc_data[key] = jc.utils.convert_to_float(proc_data[key]) if key == 'responses': for entry in proc_data['responses']: - for k in entry.keys(): + for k in entry: if k in int_list: - try: - entry[k] = int(entry[k]) - except (ValueError, TypeError): - entry[k] = None + entry[k] = jc.utils.convert_to_int(entry[k]) if k in float_list: - try: - entry[k] = float(entry[k]) - except (ValueError, TypeError): - entry[k] = None + entry[k] = jc.utils.convert_to_float(entry[k]) return proc_data diff --git a/jc/parsers/ps.py b/jc/parsers/ps.py index 046eb90b..97c3e428 100644 --- a/jc/parsers/ps.py +++ b/jc/parsers/ps.py @@ -207,7 +207,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`ps` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -245,22 +245,15 @@ def _process(proc_data): int_list = ['pid', 'ppid', 'c', 'vsz', 'rss'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) # change to float float_list = ['cpu_percent', 'mem_percent'] for key in float_list: if key in entry: - try: - key_float = float(entry[key]) - entry[key] = key_float - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_float(entry[key]) + # clean up other fields if 'tty' in entry: if entry['tty'] == '?' or entry['tty'] == '??': entry['tty'] = None diff --git a/jc/parsers/route.py b/jc/parsers/route.py index e71b4e2f..9fc3f721 100644 --- a/jc/parsers/route.py +++ b/jc/parsers/route.py @@ -111,7 +111,7 @@ import jc.parsers.universal class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.5' + version = '1.6' description = '`route` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -140,11 +140,7 @@ def _process(proc_data): int_list = ['metric', 'ref', 'use', 'mss', 'window', 'irtt'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) # add flags_pretty # Flag mapping from https://www.man7.org/linux/man-pages/man8/route.8.html diff --git a/jc/parsers/rpm_qi.py b/jc/parsers/rpm_qi.py index 95cba163..19df676f 100644 --- a/jc/parsers/rpm_qi.py +++ b/jc/parsers/rpm_qi.py @@ -156,7 +156,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`rpm -qi` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -183,14 +183,11 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - + int_list = ['epoch', 'size'] for key in int_list: if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if 'build_date' in entry: timestamp = jc.utils.timestamp(entry['build_date']) diff --git a/jc/parsers/shadow.py b/jc/parsers/shadow.py index 87fb83c1..4df9c09e 100644 --- a/jc/parsers/shadow.py +++ b/jc/parsers/shadow.py @@ -101,7 +101,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`/etc/shadow` file parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -130,11 +130,7 @@ def _process(proc_data): int_list = ['last_changed', 'minimum', 'maximum', 'warn', 'inactive', 'expire'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/ss.py b/jc/parsers/ss.py index 5c11143f..0437d126 100644 --- a/jc/parsers/ss.py +++ b/jc/parsers/ss.py @@ -279,7 +279,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`ss` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -308,23 +308,17 @@ def _process(proc_data): int_list = ['recv_q', 'send_q', 'pid'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) if 'local_port' in entry: - try: - entry['local_port_num'] = int(entry['local_port']) - except (ValueError): - pass + local_num = jc.utils.convert_to_int(entry['local_port']) + if local_num is not None and local_num >= 0: + entry['local_port_num'] = local_num if 'peer_port' in entry: - try: - entry['peer_port_num'] = int(entry['peer_port']) - except (ValueError): - pass + peer_num = jc.utils.convert_to_int(entry['peer_port']) + if peer_num is not None and peer_num >= 0: + entry['peer_port_num'] = peer_num return proc_data diff --git a/jc/parsers/stat.py b/jc/parsers/stat.py index bb4f6846..534a815d 100644 --- a/jc/parsers/stat.py +++ b/jc/parsers/stat.py @@ -169,7 +169,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.7' + version = '1.8' description = '`stat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -195,14 +195,11 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'unix_device', 'rdev', 'block_size'] + int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'unix_device', + 'rdev', 'block_size'] for key in int_list: if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + entry[key] = jc.utils.convert_to_int(entry[key]) # turn - into null for time fields and add calculated timestamp fields for entry in proc_data: diff --git a/tests/fixtures/centos-7.7/ls-alh.json b/tests/fixtures/centos-7.7/ls-alh.json index b5d653e8..0d082260 100644 --- a/tests/fixtures/centos-7.7/ls-alh.json +++ b/tests/fixtures/centos-7.7/ls-alh.json @@ -1 +1 @@ -[{"filename": ".", "flags": "dr-xr-xr-x.", "links": 17, "owner": "root", "group": "root", "size": 224, "date": "Aug 15 10:56"}, {"filename": "..", "flags": "dr-xr-xr-x.", "links": 17, "owner": "root", "group": "root", "size": 224, "date": "Aug 15 10:56"}, {"filename": "bin", "link_to": "usr/bin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 10:53"}, {"filename": "boot", "flags": "dr-xr-xr-x.", "links": 5, "owner": "root", "group": "root", "size": null, "date": "Oct 21 13:18"}, {"filename": "dev", "flags": "drwxr-xr-x.", "links": 20, "owner": "root", "group": "root", "size": null, "date": "Oct 25 18:21"}, {"filename": "etc", "flags": "drwxr-xr-x.", "links": 78, "owner": "root", "group": "root", "size": null, "date": "Oct 25 18:47"}, {"filename": "home", "flags": "drwxr-xr-x.", "links": 3, "owner": "root", "group": "root", "size": 21, "date": "Aug 15 10:56"}, {"filename": "lib", "link_to": "usr/lib", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 7, "date": "Aug 15 10:53"}, {"filename": "lib64", "link_to": "usr/lib64", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 9, "date": "Aug 15 10:53"}, {"filename": "media", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "mnt", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "opt", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "proc", "flags": "dr-xr-xr-x.", "links": 121, "owner": "root", "group": "root", "size": 0, "date": "Oct 25 18:21"}, {"filename": "root", "flags": "dr-xr-x---.", "links": 3, "owner": "root", "group": "root", "size": 170, "date": "Oct 15 11:11"}, {"filename": "run", "flags": "drwxr-xr-x.", "links": 26, "owner": "root", "group": "root", "size": 800, "date": "Oct 25 18:47"}, {"filename": "sbin", "link_to": "usr/sbin", "flags": "lrwxrwxrwx.", "links": 1, "owner": "root", "group": "root", "size": 8, "date": "Aug 15 10:53"}, {"filename": "srv", "flags": "drwxr-xr-x.", "links": 2, "owner": "root", "group": "root", "size": 6, "date": "Apr 10 2018"}, {"filename": "sys", "flags": "dr-xr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 0, "date": "Oct 25 18:21"}, {"filename": "tmp", "flags": "drwxrwxrwt.", "links": 19, "owner": "root", "group": "root", "size": null, "date": "Oct 26 10:14"}, {"filename": "usr", "flags": "drwxr-xr-x.", "links": 13, "owner": "root", "group": "root", "size": 155, "date": "Aug 15 10:53"}, {"filename": "var", "flags": "drwxr-xr-x.", "links": 19, "owner": "root", "group": "root", "size": 267, "date": "Aug 15 10:57"}] +[{"filename":".","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"..","flags":"dr-xr-xr-x.","links":17,"owner":"root","group":"root","size":224,"date":"Aug 15 10:56"},{"filename":"bin","link_to":"usr/bin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"boot","flags":"dr-xr-xr-x.","links":5,"owner":"root","group":"root","size":4,"date":"Oct 21 13:18"},{"filename":"dev","flags":"drwxr-xr-x.","links":20,"owner":"root","group":"root","size":3,"date":"Oct 25 18:21"},{"filename":"etc","flags":"drwxr-xr-x.","links":78,"owner":"root","group":"root","size":8,"date":"Oct 25 18:47"},{"filename":"home","flags":"drwxr-xr-x.","links":3,"owner":"root","group":"root","size":21,"date":"Aug 15 10:56"},{"filename":"lib","link_to":"usr/lib","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":7,"date":"Aug 15 10:53"},{"filename":"lib64","link_to":"usr/lib64","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":9,"date":"Aug 15 10:53"},{"filename":"media","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"mnt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"opt","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"proc","flags":"dr-xr-xr-x.","links":121,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"root","flags":"dr-xr-x---.","links":3,"owner":"root","group":"root","size":170,"date":"Oct 15 11:11"},{"filename":"run","flags":"drwxr-xr-x.","links":26,"owner":"root","group":"root","size":800,"date":"Oct 25 18:47"},{"filename":"sbin","link_to":"usr/sbin","flags":"lrwxrwxrwx.","links":1,"owner":"root","group":"root","size":8,"date":"Aug 15 10:53"},{"filename":"srv","flags":"drwxr-xr-x.","links":2,"owner":"root","group":"root","size":6,"date":"Apr 10 2018"},{"filename":"sys","flags":"dr-xr-xr-x.","links":13,"owner":"root","group":"root","size":0,"date":"Oct 25 18:21"},{"filename":"tmp","flags":"drwxrwxrwt.","links":19,"owner":"root","group":"root","size":4,"date":"Oct 26 10:14"},{"filename":"usr","flags":"drwxr-xr-x.","links":13,"owner":"root","group":"root","size":155,"date":"Aug 15 10:53"},{"filename":"var","flags":"drwxr-xr-x.","links":19,"owner":"root","group":"root","size":267,"date":"Aug 15 10:57"}] diff --git a/tests/fixtures/centos-7.7/lsof-sudo.json b/tests/fixtures/centos-7.7/lsof-sudo.json index 6a960a0d..2c241c5c 100644 --- a/tests/fixtures/centos-7.7/lsof-sudo.json +++ b/tests/fixtures/centos-7.7/lsof-sudo.json @@ -1 +1 @@ -[{"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 1624520, "node": 50360451, "name": "/usr/lib/systemd/systemd"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91800, "node": 32817, "name": "/usr/lib64/libkmod.so.2.2.10"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 45344, "node": 50610926, "name": "/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1431995, "node": 50392663, "name": "/etc/selinux/targeted/contexts/files/file_contexts.bin"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[timerfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[signalfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "6r", "type": "DIR", "device": "0,22", "size_off": 0, "node": 8688, "name": "/sys/fs/cgroup/systemd"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[timerfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "8u", "type": "netlink", "device": null, "size_off": null, "node": 13770, "name": "KOBJECT_UEVENT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 8964, "name": "/proc/1/mountinfo"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "10r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "11r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532019, "name": "/proc/swaps"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96aeb677f000", "size_off": null, "node": 13771, "name": "/run/systemd/private"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "14r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "19u", "type": "netlink", "device": null, "size_off": null, "node": 13776, "name": "AUDIT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "20u", "type": "unix", "device": "0xffff96aeb677c400", "size_off": null, "node": 13851, "name": "/run/lvm/lvmpolld.socket"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "21u", "type": "FIFO", "device": "0,20", "size_off": null, "node": 13862, "name": "/run/dmeventd-server"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "22u", "type": "FIFO", "device": "0,20", "size_off": null, "node": 13863, "name": "/run/dmeventd-client"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "23u", "type": "unix", "device": "0xffff96afb3392000", "size_off": null, "node": 8971, "name": "/run/systemd/notify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "24u", "type": "unix", "device": "0xffff96afb3391c00", "size_off": null, "node": 8973, "name": "/run/systemd/cgroups-agent"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "25u", "type": "unix", "device": "0xffff96aeb677bc00", "size_off": null, "node": 13864, "name": "/run/systemd/shutdownd"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "26r", "type": "CHR", "device": "10,235", "size_off": null, "node": 8458, "name": "/dev/autofs"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "27r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 13903, "name": "pipe"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "28u", "type": "unix", "device": "0xffff96afb3393400", "size_off": null, "node": 8991, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "29u", "type": "unix", "device": "0xffff96afb3393800", "size_off": null, "node": 8994, "name": "/run/systemd/journal/socket"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "30u", "type": "unix", "device": "0xffff96afb3393c00", "size_off": null, "node": 8996, "name": "/dev/log"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "31u", "type": "unix", "device": "0xffff96aeb677a800", "size_off": null, "node": 13918, "name": "/run/lvm/lvmetad.socket"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "32u", "type": "unix", "device": "0xffff96aeb6788000", "size_off": null, "node": 13962, "name": "/run/udev/control"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "33r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "34u", "type": "netlink", "device": null, "size_off": null, "node": 14051, "name": "KOBJECT_UEVENT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "35u", "type": "FIFO", "device": "0,20", "size_off": null, "node": 14170, "name": "/run/systemd/initctl/fifo"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "36u", "type": "unix", "device": "0xffff96aeb6715800", "size_off": null, "node": 14252, "name": "socket"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "37u", "type": "unix", "device": "0xffff96afb4d62400", "size_off": null, "node": 17785, "name": "/run/dbus/system_bus_socket"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "38u", "type": "unix", "device": "0xffff96aeb6713c00", "size_off": null, "node": 14409, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "39u", "type": "unix", "device": "0xffff96afb4d67000", "size_off": null, "node": 17796, "name": "socket"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "40u", "type": "unix", "device": "0xffff96aeb677e000", "size_off": null, "node": 14760, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "41u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[timerfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "42u", "type": "unix", "device": "0xffff96afb4d63400", "size_off": null, "node": 17845, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "43u", "type": "unix", "device": "0xffff96afb4d71800", "size_off": null, "node": 18956, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "44u", "type": "netlink", "device": null, "size_off": null, "node": 14577, "name": "SELINUX"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "48u", "type": "unix", "device": "0xffff96afb5775c00", "size_off": null, "node": 18141, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "51u", "type": "unix", "device": "0xffff96afb5767800", "size_off": null, "node": 18419, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "52u", "type": "unix", "device": "0xffff96af33931800", "size_off": null, "node": 21303, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "53u", "type": "unix", "device": "0xffff96afb573b800", "size_off": null, "node": 21448, "name": "/run/systemd/journal/stdout"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "54u", "type": "unix", "device": "0xffff96afb573d800", "size_off": null, "node": 21430, "name": "/run/systemd/journal/stdout"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/exe"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/exe"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/5/exe"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/exe"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/exe"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/exe"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/exe"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/exe"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/exe"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "0,5", "size_off": 3180, "node": 3, "name": "/"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "0,5", "size_off": 3180, "node": 3, "name": "/"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/exe"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/exe"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/exe"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/exe"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/exe"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/exe"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/exe"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/exe"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/exe"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/exe"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/exe"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/exe"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/exe"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/31/exe"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/32/exe"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/33/exe"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/41/exe"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/42/exe"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/43/exe"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/44/exe"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/45/exe"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/47/exe"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/60/exe"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/95/exe"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/272/exe"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/273/exe"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/274/exe"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/275/exe"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/291/exe"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/exe"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/330/exe"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/331/exe"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/339/exe"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/346/exe"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/357/exe"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/358/exe"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/431/exe"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/432/exe"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/442/exe"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/443/exe"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/455/exe"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/456/exe"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/457/exe"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/458/exe"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/459/exe"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/460/exe"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/461/exe"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/462/exe"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/463/exe"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/464/exe"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/465/exe"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/466/exe"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 346152, "node": 50360465, "name": "/usr/lib/systemd/systemd-journald"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37056, "node": 9833, "name": "/usr/lib64/libacl.so.1.1.0"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "0,20", "size_off": 8, "node": 9217, "name": "/run/systemd/journal/kernel-seqnum"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb3393400", "size_off": null, "node": 8991, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96afb3393800", "size_off": null, "node": 8994, "name": "/run/systemd/journal/socket"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96afb3393c00", "size_off": null, "node": 8996, "name": "/dev/log"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "6w", "type": "CHR", "device": "1,11", "size_off": null, "node": 6491, "name": "/dev/kmsg"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "8u", "type": "CHR", "device": "1,11", "size_off": null, "node": 6491, "name": "/dev/kmsg"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 9218, "name": "/proc/sys/kernel/hostname"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[signalfd]"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "11u", "type": "unix", "device": "0xffff96aeb6716000", "size_off": null, "node": 14029, "name": "socket"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "12u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[timerfd]"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "13u", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "14u", "type": "unix", "device": "0xffff96afb4d63400", "size_off": null, "node": 17845, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "15u", "type": "unix", "device": "0xffff96aeb6713c00", "size_off": null, "node": 14409, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "16u", "type": "unix", "device": "0xffff96afb4d71800", "size_off": null, "node": 18956, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "17u", "type": "unix", "device": "0xffff96aeb677e000", "size_off": null, "node": 14760, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "21u", "type": "unix", "device": "0xffff96afb5775c00", "size_off": null, "node": 18141, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "22u", "type": "unix", "device": "0xffff96af33931800", "size_off": null, "node": 21303, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "23u", "type": "unix", "device": "0xffff96afb573d800", "size_off": null, "node": 21430, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "24u", "type": "unix", "device": "0xffff96afb5767800", "size_off": null, "node": 18419, "name": "/run/systemd/journal/stdout"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "25u", "type": "unix", "device": "0xffff96afb573b800", "size_off": null, "node": 21448, "name": "/run/systemd/journal/stdout"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 73376, "node": 3435, "name": "/usr/sbin/lvmetad"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 45344, "node": 50610926, "name": "/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1431995, "node": 50392663, "name": "/etc/selinux/targeted/contexts/files/file_contexts.bin"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96aeb6714c00", "size_off": null, "node": 14408, "name": "socket"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96aeb6714c00", "size_off": null, "node": 14408, "name": "socket"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96aeb677a800", "size_off": null, "node": 13918, "name": "/run/lvm/lvmetad.socket"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "4wW", "type": "REG", "device": "0,20", "size_off": 4, "node": 14581, "name": "/run/lvmetad.pid"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 416168, "node": 50360488, "name": "/usr/lib/systemd/systemd-udevd"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 8201136, "node": 17105721, "name": "/etc/udev/hwdb.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 483595, "node": 17105570, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.symbols.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 813600, "node": 17072551, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.alias.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37056, "node": 9833, "name": "/usr/lib64/libacl.so.1.1.0"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91800, "node": 32817, "name": "/usr/lib64/libkmod.so.2.2.10"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 379859, "node": 16790240, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.dep.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 45344, "node": 50610926, "name": "/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1431995, "node": 50392663, "name": "/etc/selinux/targeted/contexts/files/file_contexts.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 9425, "node": 17105934, "name": "/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.builtin.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96aeb6779000", "size_off": null, "node": 14759, "name": "socket"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96aeb6779000", "size_off": null, "node": 14759, "name": "socket"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "3u", "type": "netlink", "device": null, "size_off": null, "node": 14051, "name": "KOBJECT_UEVENT"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96aeb6788000", "size_off": null, "node": 13962, "name": "/run/udev/control"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96aeb6713400", "size_off": null, "node": 14838, "name": "socket"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "6r", "type": "REG", "device": "253,0", "size_off": 8201136, "node": 17105721, "name": "/etc/udev/hwdb.bin"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "7r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "8u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[signalfd]"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "9u", "type": "unix", "device": "0xffff96afb46a5400", "size_off": null, "node": 14872, "name": "socket"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "10u", "type": "unix", "device": "0xffff96afb46a5c00", "size_off": null, "node": 14873, "name": "socket"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "11u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/629/exe"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/638/exe"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/641/exe"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/646/exe"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/651/exe"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/654/exe"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/658/exe"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/667/exe"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/675/exe"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/677/exe"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/678/exe"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/681/exe"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 128664, "node": 3639, "name": "/usr/sbin/auditd"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 128456, "node": 7752, "name": "/usr/lib64/libauparse.so.0.0.0"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 42520, "node": 10468, "name": "/usr/lib64/libwrap.so.0.7.6"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "3u", "type": "netlink", "device": null, "size_off": null, "node": 17617, "name": "AUDIT"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "5w", "type": "REG", "device": "253,0", "size_off": 2121390, "node": 72, "name": "/var/log/audit/audit.log"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4d62c00", "size_off": null, "node": 17621, "name": "socket"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "9u", "type": "unix", "device": "0xffff96afb4d64800", "size_off": null, "node": 17630, "name": "socket"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "10u", "type": "unix", "device": "0xffff96afb4d63c00", "size_off": null, "node": 17631, "name": "socket"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 128664, "node": 3639, "name": "/usr/sbin/auditd"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 128456, "node": 7752, "name": "/usr/lib64/libauparse.so.0.0.0"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 42520, "node": 10468, "name": "/usr/lib64/libwrap.so.0.7.6"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "3u", "type": "netlink", "device": null, "size_off": null, "node": 17617, "name": "AUDIT"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "5w", "type": "REG", "device": "253,0", "size_off": 2121390, "node": 72, "name": "/var/log/audit/audit.log"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4d62c00", "size_off": null, "node": 17621, "name": "socket"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "9u", "type": "unix", "device": "0xffff96afb4d64800", "size_off": null, "node": 17630, "name": "socket"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "10u", "type": "unix", "device": "0xffff96afb4d63c00", "size_off": null, "node": 17631, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 223320, "node": 50360532, "name": "/usr/bin/dbus-daemon"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "1u", "type": "unix", "device": "0xffff96afb4d62800", "size_off": null, "node": 17844, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "2u", "type": "unix", "device": "0xffff96afb4d62800", "size_off": null, "node": 17844, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "3u", "type": "unix", "device": "0xffff96afb4d62400", "size_off": null, "node": 17785, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "5u", "type": "sock", "device": "0,7", "size_off": null, "node": 17853, "name": "protocol: NETLINK"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "6u", "type": "netlink", "device": null, "size_off": null, "node": 17854, "name": "SELINUX"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "7r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "8u", "type": "unix", "device": "0xffff96afb4d60000", "size_off": null, "node": 17859, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "9u", "type": "unix", "device": "0xffff96afb4d61000", "size_off": null, "node": 17860, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "10u", "type": "unix", "device": "0xffff96afb4d64000", "size_off": null, "node": 17861, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "11u", "type": "unix", "device": "0xffff96afb4d77800", "size_off": null, "node": 18364, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "12u", "type": "unix", "device": "0xffff96afb5766000", "size_off": null, "node": 18610, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "13u", "type": "unix", "device": "0xffff96aeb670dc00", "size_off": null, "node": 18893, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "14u", "type": "unix", "device": "0xffff96afb573e000", "size_off": null, "node": 19006, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "15u", "type": "unix", "device": "0xffff96afb573c800", "size_off": null, "node": 19075, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "16u", "type": "unix", "device": "0xffff96afb4b95400", "size_off": null, "node": 22479, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "19u", "type": "unix", "device": "0xffff96afb573a400", "size_off": null, "node": 20120, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "20u", "type": "unix", "device": "0xffff96af325fe800", "size_off": null, "node": 23047, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 223320, "node": 50360532, "name": "/usr/bin/dbus-daemon"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "1u", "type": "unix", "device": "0xffff96afb4d62800", "size_off": null, "node": 17844, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "2u", "type": "unix", "device": "0xffff96afb4d62800", "size_off": null, "node": 17844, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "3u", "type": "unix", "device": "0xffff96afb4d62400", "size_off": null, "node": 17785, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "5u", "type": "sock", "device": "0,7", "size_off": null, "node": 17853, "name": "protocol: NETLINK"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "6u", "type": "netlink", "device": null, "size_off": null, "node": 17854, "name": "SELINUX"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "7r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "8u", "type": "unix", "device": "0xffff96afb4d60000", "size_off": null, "node": 17859, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "9u", "type": "unix", "device": "0xffff96afb4d61000", "size_off": null, "node": 17860, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "10u", "type": "unix", "device": "0xffff96afb4d64000", "size_off": null, "node": 17861, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "11u", "type": "unix", "device": "0xffff96afb4d77800", "size_off": null, "node": 18364, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "12u", "type": "unix", "device": "0xffff96afb5766000", "size_off": null, "node": 18610, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "13u", "type": "unix", "device": "0xffff96aeb670dc00", "size_off": null, "node": 18893, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "14u", "type": "unix", "device": "0xffff96afb573e000", "size_off": null, "node": 19006, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "15u", "type": "unix", "device": "0xffff96afb573c800", "size_off": null, "node": 19075, "name": "socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "16u", "type": "unix", "device": "0xffff96afb4b95400", "size_off": null, "node": 22479, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "19u", "type": "unix", "device": "0xffff96afb573a400", "size_off": null, "node": 20120, "name": "/run/dbus/system_bus_socket"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "20u", "type": "unix", "device": "0xffff96af325fe800", "size_off": null, "node": 23047, "name": "/run/dbus/system_bus_socket"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 120432, "node": 50360556, "name": "/usr/lib/polkit-1/polkitd"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 4028168, "node": 33229, "name": "/usr/lib64/libmozjs-17.0.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 118704, "node": 1479, "name": "/usr/lib64/libpolkit-gobject-1.so.0.0.0"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "6u", "type": "unix", "device": "0xffff96afb5760400", "size_off": null, "node": 18604, "name": "socket"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "10u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "11u", "type": "unix", "device": "0xffff96afb5770800", "size_off": null, "node": 18730, "name": "socket"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 635736, "node": 50360467, "name": "/usr/lib/systemd/systemd-logind"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37056, "node": 9833, "name": "/usr/lib64/libacl.so.1.1.0"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb5775800", "size_off": null, "node": 18140, "name": "socket"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb5775800", "size_off": null, "node": 18140, "name": "socket"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb5771800", "size_off": null, "node": 18269, "name": "socket"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[timerfd]"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "6r", "type": "REG", "device": "0,18", "size_off": 4096, "node": 26737, "name": "/sys/devices/virtual/tty/tty0/active"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[signalfd]"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "8u", "type": "netlink", "device": null, "size_off": null, "node": 18359, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 18360, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 18361, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 18362, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb56a8800", "size_off": null, "node": 18363, "name": "socket"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[timerfd]"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "14u", "type": "CHR", "device": "13,64", "size_off": null, "node": 8504, "name": "/dev/input/event0"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "15u", "type": "CHR", "device": "4,6", "size_off": null, "node": 6505, "name": "/dev/tty6"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "16r", "type": "FIFO", "device": "0,20", "size_off": null, "node": 20214, "name": "/run/systemd/inhibit/1.ref"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "17r", "type": "FIFO", "device": "0,20", "size_off": null, "node": 23441, "name": "/run/systemd/sessions/1.ref"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "18r", "type": "FIFO", "device": "0,20", "size_off": null, "node": 44958, "name": "/run/systemd/sessions/17.ref"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 70216, "node": 33648, "name": "/usr/sbin/crond"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb5767400", "size_off": null, "node": 18418, "name": "socket"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb5767400", "size_off": null, "node": 18418, "name": "socket"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "3uW", "type": "REG", "device": "0,20", "size_off": 4, "node": 18523, "name": "/run/crond.pid"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96afb5765c00", "size_off": null, "node": 18549, "name": "socket"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "5r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 269392, "node": 34110, "name": "/usr/sbin/chronyd"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86472, "node": 33489, "name": "/usr/lib64/libnss_myhostname.so.2"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 31408, "node": 503056, "name": "/usr/lib64/libnss_dns-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "3u", "type": "unix", "device": "0xffff96afb5764c00", "size_off": null, "node": 18498, "name": "socket"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "5u", "type": "IPv4", "device": "18535", "size_off": null, "node": null, "name": "localhost:323"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "6u", "type": "IPv6", "device": "18536", "size_off": null, "node": null, "name": "localhost:323"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "7r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "8u", "type": "unix", "device": "0xffff96afb5762400", "size_off": null, "node": 18547, "name": "/var/run/chrony/chronyd.sock"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 49640, "node": 32755, "name": "/usr/sbin/agetty"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "4,1", "size_off": null, "node": 6500, "name": "/dev/tty1"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "4,1", "size_off": null, "node": 6500, "name": "/dev/tty1"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "4,1", "size_off": null, "node": 6500, "name": "/dev/tty1"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 37248, "node": 50358286, "name": "/usr/bin/login"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15480, "node": 50338864, "name": "/usr/lib64/security/pam_lastlog.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 309168, "node": 50359979, "name": "/usr/lib64/security/pam_systemd.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19600, "node": 50338865, "name": "/usr/lib64/security/pam_limits.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11152, "node": 50338863, "name": "/usr/lib64/security/pam_keyinit.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40784, "node": 50338872, "name": "/usr/lib64/security/pam_namespace.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28256, "node": 50338850, "name": "/usr/lib64/security/pam_console.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11200, "node": 50338868, "name": "/usr/lib64/security/pam_loginuid.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19760, "node": 50338880, "name": "/usr/lib64/security/pam_selinux.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 44600, "node": 10026, "name": "/usr/lib64/libcrack.so.2.9.0"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23832, "node": 10300, "name": "/usr/lib64/libpwquality.so.1.0.2"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11232, "node": 50339023, "name": "/usr/lib64/security/pam_pwquality.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6984, "node": 50338874, "name": "/usr/lib64/security/pam_permit.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11144, "node": 50338867, "name": "/usr/lib64/security/pam_localuser.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11176, "node": 50338873, "name": "/usr/lib64/security/pam_nologin.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6872, "node": 50338853, "name": "/usr/lib64/security/pam_deny.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15408, "node": 50338885, "name": "/usr/lib64/security/pam_succeed_if.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 57728, "node": 50338891, "name": "/usr/lib64/security/pam_unix.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11168, "node": 50338857, "name": "/usr/lib64/security/pam_faildelay.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15552, "node": 50338855, "name": "/usr/lib64/security/pam_env.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11216, "node": 50338879, "name": "/usr/lib64/security/pam_securetty.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15632, "node": 10151, "name": "/usr/lib64/libpam_misc.so.0.82.0"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "5w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 23441, "name": "/run/systemd/sessions/1.ref"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 298820, "node": 50360560, "name": "/usr/lib64/girepository-1.0/NM-1.0.typelib"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 343452, "node": 50359338, "name": "/usr/lib64/girepository-1.0/Gio-2.0.typelib"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11672, "node": 50742920, "name": "/usr/lib64/python2.7/lib-dynload/syslog.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 59120, "node": 50359337, "name": "/usr/lib64/girepository-1.0/GObject-2.0.typelib"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777637, "name": "/tmp/ffiCvbwRW"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 41033, "node": 33614496, "name": "/var/log/firewalld"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96aeb670d400", "size_off": null, "node": 18892, "name": "socket"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "6u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777637, "name": "/tmp/ffiCvbwRW (deleted)"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "7r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "10u", "type": "unix", "device": "0xffff96afb4b92000", "size_off": null, "node": 22509, "name": "socket"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 298820, "node": 50360560, "name": "/usr/lib64/girepository-1.0/NM-1.0.typelib"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 343452, "node": 50359338, "name": "/usr/lib64/girepository-1.0/Gio-2.0.typelib"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11672, "node": 50742920, "name": "/usr/lib64/python2.7/lib-dynload/syslog.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 59120, "node": 50359337, "name": "/usr/lib64/girepository-1.0/GObject-2.0.typelib"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777637, "name": "/tmp/ffiCvbwRW"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 41033, "node": 33614496, "name": "/var/log/firewalld"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96aeb670d400", "size_off": null, "node": 18892, "name": "socket"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "6u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777637, "name": "/tmp/ffiCvbwRW (deleted)"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "7r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "8r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "10u", "type": "unix", "device": "0xffff96afb4b92000", "size_off": null, "node": 22509, "name": "socket"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 2957744, "node": 1486, "name": "/usr/sbin/NetworkManager"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86472, "node": 33489, "name": "/usr/lib64/libnss_myhostname.so.2"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 31408, "node": 503056, "name": "/usr/lib64/libnss_dns-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 152272, "node": 297594, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 53944, "node": 10457, "name": "/usr/lib64/libjansson.so.4.10.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23984, "node": 34203, "name": "/usr/lib64/libteamdctl.so.0.1.5"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 41352, "node": 297593, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24320, "node": 168491, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 248184, "node": 168492, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 186680, "node": 32577, "name": "/usr/lib64/libssh2.so.1.0.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 208920, "node": 10446, "name": "/usr/lib64/libidn.so.11.6.11"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 439320, "node": 32975, "name": "/usr/lib64/libcurl.so.4.3.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24448, "node": 33454, "name": "/usr/lib64/libndp.so.0.0.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb4d75800", "size_off": null, "node": 18955, "name": "socket"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb4d75800", "size_off": null, "node": 18955, "name": "socket"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96afb5770c00", "size_off": null, "node": 18979, "name": "socket"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "6r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "7r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532390, "name": "mnt"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "8u", "type": "netlink", "device": null, "size_off": null, "node": 18990, "name": "KOBJECT_UEVENT"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 18991, "name": "GENERIC"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 18992, "name": "ROUTE"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "11u", "type": "unix", "device": "0xffff96afb573e400", "size_off": null, "node": 19005, "name": "socket"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "12u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "13r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "14r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "15u", "type": "netlink", "device": null, "size_off": null, "node": 19858, "name": "KOBJECT_UEVENT"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "16u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "17u", "type": "unix", "device": "0xffff96afb573e800", "size_off": null, "node": 20119, "name": "socket"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "18u", "type": "unix", "device": "0xffff96af33897400", "size_off": null, "node": 20600, "name": "/var/run/NetworkManager/private-dhcp"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "19w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 20214, "name": "/run/systemd/inhibit/1.ref"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "20u", "type": "raw6", "device": null, "size_off": null, "node": 24206, "name": "00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 2957744, "node": 1486, "name": "/usr/sbin/NetworkManager"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86472, "node": 33489, "name": "/usr/lib64/libnss_myhostname.so.2"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 31408, "node": 503056, "name": "/usr/lib64/libnss_dns-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 152272, "node": 297594, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 53944, "node": 10457, "name": "/usr/lib64/libjansson.so.4.10.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23984, "node": 34203, "name": "/usr/lib64/libteamdctl.so.0.1.5"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 41352, "node": 297593, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24320, "node": 168491, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 248184, "node": 168492, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 186680, "node": 32577, "name": "/usr/lib64/libssh2.so.1.0.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 208920, "node": 10446, "name": "/usr/lib64/libidn.so.11.6.11"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 439320, "node": 32975, "name": "/usr/lib64/libcurl.so.4.3.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24448, "node": 33454, "name": "/usr/lib64/libndp.so.0.0.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb4d75800", "size_off": null, "node": 18955, "name": "socket"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb4d75800", "size_off": null, "node": 18955, "name": "socket"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96afb5770c00", "size_off": null, "node": 18979, "name": "socket"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "6r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "7r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532390, "name": "mnt"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "8u", "type": "netlink", "device": null, "size_off": null, "node": 18990, "name": "KOBJECT_UEVENT"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 18991, "name": "GENERIC"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 18992, "name": "ROUTE"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "11u", "type": "unix", "device": "0xffff96afb573e400", "size_off": null, "node": 19005, "name": "socket"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "12u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "13r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "14r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "15u", "type": "netlink", "device": null, "size_off": null, "node": 19858, "name": "KOBJECT_UEVENT"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "16u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "17u", "type": "unix", "device": "0xffff96afb573e800", "size_off": null, "node": 20119, "name": "socket"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "18u", "type": "unix", "device": "0xffff96af33897400", "size_off": null, "node": 20600, "name": "/var/run/NetworkManager/private-dhcp"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "19w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 20214, "name": "/run/systemd/inhibit/1.ref"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "20u", "type": "raw6", "device": null, "size_off": null, "node": 24206, "name": "00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 2957744, "node": 1486, "name": "/usr/sbin/NetworkManager"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86472, "node": 33489, "name": "/usr/lib64/libnss_myhostname.so.2"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 31408, "node": 503056, "name": "/usr/lib64/libnss_dns-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 152272, "node": 297594, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 53944, "node": 10457, "name": "/usr/lib64/libjansson.so.4.10.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23984, "node": 34203, "name": "/usr/lib64/libteamdctl.so.0.1.5"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 41352, "node": 297593, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24320, "node": 168491, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 248184, "node": 168492, "name": "/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 186680, "node": 32577, "name": "/usr/lib64/libssh2.so.1.0.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 208920, "node": 10446, "name": "/usr/lib64/libidn.so.11.6.11"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 439320, "node": 32975, "name": "/usr/lib64/libcurl.so.4.3.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24448, "node": 33454, "name": "/usr/lib64/libndp.so.0.0.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb4d75800", "size_off": null, "node": 18955, "name": "socket"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb4d75800", "size_off": null, "node": 18955, "name": "socket"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96afb5770c00", "size_off": null, "node": 18979, "name": "socket"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "6r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "7r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532390, "name": "mnt"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "8u", "type": "netlink", "device": null, "size_off": null, "node": 18990, "name": "KOBJECT_UEVENT"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 18991, "name": "GENERIC"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 18992, "name": "ROUTE"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "11u", "type": "unix", "device": "0xffff96afb573e400", "size_off": null, "node": 19005, "name": "socket"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "12u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "13r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "14r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "15u", "type": "netlink", "device": null, "size_off": null, "node": 19858, "name": "KOBJECT_UEVENT"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "16u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "17u", "type": "unix", "device": "0xffff96afb573e800", "size_off": null, "node": 20119, "name": "socket"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "18u", "type": "unix", "device": "0xffff96af33897400", "size_off": null, "node": 20600, "name": "/var/run/NetworkManager/private-dhcp"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "19w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 20214, "name": "/run/systemd/inhibit/1.ref"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "20u", "type": "raw6", "device": null, "size_off": null, "node": 24206, "name": "00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33407632, "node": 50705016, "name": "/usr/bin/dockerd-current"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 660208, "node": 9827, "name": "/usr/lib64/libsepol.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 70856, "node": 10327, "name": "/usr/lib64/libassuan.so.0.4.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 212120, "node": 102415, "name": "/usr/lib64/libgpgme.so.11.8.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 356112, "node": 16794, "name": "/usr/lib64/libdevmapper.so.1.02"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 266680, "node": 33458, "name": "/usr/lib64/libseccomp.so.2.3.1"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "mem-W", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb728c800", "size_off": null, "node": 21801, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff96af34e1f800", "size_off": null, "node": 21822, "name": "/var/run/docker.sock"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325fc800", "size_off": null, "node": 22240, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "7uW", "type": "REG", "device": "253,0", "size_off": 32768, "node": 34346870, "name": "/var/lib/docker/volumes/metadata.db"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff96afb4b94400", "size_off": null, "node": 22478, "name": "socket"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "9r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026531956, "name": "net"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 22649, "name": "ROUTE"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 22650, "name": "XFRM"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff96afb4b97c00", "size_off": null, "node": 22839, "name": "/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 852856, "node": 297586, "name": "/usr/sbin/sshd"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 42520, "node": 10468, "name": "/usr/lib64/libwrap.so.0.7.6"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11344, "node": 32826, "name": "/usr/lib64/libfipscheck.so.1.2.1"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb573c000", "size_off": null, "node": 21429, "name": "socket"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb573c000", "size_off": null, "node": 21429, "name": "socket"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "3u", "type": "IPv4", "device": "21598", "size_off": null, "node": null, "name": "*:ssh (LISTEN)"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "4u", "type": "IPv6", "device": "21607", "size_off": null, "node": null, "name": "*:ssh (LISTEN)"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127000, "node": 50359909, "name": "/usr/lib64/python2.7/lib-dynload/_ctypes.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86984, "node": 50338611, "name": "/usr/lib64/python2.7/lib-dynload/datetime.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85192, "node": 50338603, "name": "/usr/lib64/python2.7/lib-dynload/cPickle.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777634, "name": "/tmp/ffiOEEtFw"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 23686, "node": 17522009, "name": "/var/log/tuned/tuned.log"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 21954, "name": "KOBJECT_UEVENT"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "5r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325f9c00", "size_off": null, "node": 23046, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "8u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777634, "name": "/tmp/ffiOEEtFw (deleted)"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "10w", "type": "CHR", "device": "10,61", "size_off": null, "node": 8659, "name": "/dev/cpu_dma_latency"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "11r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "12w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127000, "node": 50359909, "name": "/usr/lib64/python2.7/lib-dynload/_ctypes.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86984, "node": 50338611, "name": "/usr/lib64/python2.7/lib-dynload/datetime.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85192, "node": 50338603, "name": "/usr/lib64/python2.7/lib-dynload/cPickle.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777634, "name": "/tmp/ffiOEEtFw"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 23686, "node": 17522009, "name": "/var/log/tuned/tuned.log"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 21954, "name": "KOBJECT_UEVENT"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "5r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325f9c00", "size_off": null, "node": 23046, "name": "socket"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "8u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777634, "name": "/tmp/ffiOEEtFw (deleted)"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "10w", "type": "CHR", "device": "10,61", "size_off": null, "node": 8659, "name": "/dev/cpu_dma_latency"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "11r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "12w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127000, "node": 50359909, "name": "/usr/lib64/python2.7/lib-dynload/_ctypes.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86984, "node": 50338611, "name": "/usr/lib64/python2.7/lib-dynload/datetime.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85192, "node": 50338603, "name": "/usr/lib64/python2.7/lib-dynload/cPickle.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777634, "name": "/tmp/ffiOEEtFw"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 23686, "node": 17522009, "name": "/var/log/tuned/tuned.log"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 21954, "name": "KOBJECT_UEVENT"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "5r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325f9c00", "size_off": null, "node": 23046, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "8u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777634, "name": "/tmp/ffiOEEtFw (deleted)"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "10w", "type": "CHR", "device": "10,61", "size_off": null, "node": 8659, "name": "/dev/cpu_dma_latency"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "11r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "12w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127000, "node": 50359909, "name": "/usr/lib64/python2.7/lib-dynload/_ctypes.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86984, "node": 50338611, "name": "/usr/lib64/python2.7/lib-dynload/datetime.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85192, "node": 50338603, "name": "/usr/lib64/python2.7/lib-dynload/cPickle.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777634, "name": "/tmp/ffiOEEtFw"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 23686, "node": 17522009, "name": "/var/log/tuned/tuned.log"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 21954, "name": "KOBJECT_UEVENT"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "5r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325f9c00", "size_off": null, "node": 23046, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "8u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777634, "name": "/tmp/ffiOEEtFw (deleted)"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "10w", "type": "CHR", "device": "10,61", "size_off": null, "node": 8659, "name": "/dev/cpu_dma_latency"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "11r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "12w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 7216, "node": 50359089, "name": "/usr/bin/python2.7"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 91024, "node": 33744, "name": "/usr/lib64/libudev.so.1.6.2"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 156960, "node": 50359917, "name": "/usr/lib64/python2.7/lib-dynload/_io.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127000, "node": 50359909, "name": "/usr/lib64/python2.7/lib-dynload/_ctypes.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86984, "node": 50338611, "name": "/usr/lib64/python2.7/lib-dynload/datetime.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 217144, "node": 32802, "name": "/usr/lib64/libgirepository-1.0.so.1.0.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6952, "node": 10074, "name": "/usr/lib64/libgthread-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 331480, "node": 17071684, "name": "/usr/lib64/python2.7/site-packages/gi/_gi.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 265600, "node": 8147, "name": "/usr/lib64/libblkid.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 277808, "node": 8164, "name": "/usr/lib64/libmount.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15640, "node": 9972, "name": "/usr/lib64/libgmodule-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 32304, "node": 9828, "name": "/usr/lib64/libffi.so.6.0.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1722920, "node": 9963, "name": "/usr/lib64/libgio-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1156656, "node": 9967, "name": "/usr/lib64/libglib-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 339112, "node": 10068, "name": "/usr/lib64/libgobject-2.0.so.0.5600.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168312, "node": 102248, "name": "/usr/lib64/libdbus-glib-1.so.2.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11976, "node": 102254, "name": "/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 173320, "node": 10025, "name": "/usr/lib64/libexpat.so.1.6.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 54544, "node": 50358894, "name": "/usr/lib64/python2.7/lib-dynload/pyexpat.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 333384, "node": 33781, "name": "/usr/lib64/libdbus-1.so.3.14.14"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 166248, "node": 102253, "name": "/usr/lib64/python2.7/site-packages/_dbus_bindings.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19264, "node": 50338618, "name": "/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 29264, "node": 50358903, "name": "/usr/lib64/python2.7/lib-dynload/selectmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 12408, "node": 50338621, "name": "/usr/lib64/python2.7/lib-dynload/grpmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 16432, "node": 50359923, "name": "/usr/lib64/python2.7/lib-dynload/_randommodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22880, "node": 50359914, "name": "/usr/lib64/python2.7/lib-dynload/_hashlib.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25768, "node": 50338601, "name": "/usr/lib64/python2.7/lib-dynload/binascii.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 37384, "node": 50358881, "name": "/usr/lib64/python2.7/lib-dynload/math.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85192, "node": 50338603, "name": "/usr/lib64/python2.7/lib-dynload/cPickle.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 95120, "node": 50338580, "name": "/usr/lib64/python2.7/lib-dynload/_ssl.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 83968, "node": 50359924, "name": "/usr/lib64/python2.7/lib-dynload/_socketmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23992, "node": 50338604, "name": "/usr/lib64/python2.7/lib-dynload/cStringIO.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25064, "node": 50742922, "name": "/usr/lib64/python2.7/lib-dynload/timemodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 39024, "node": 50338821, "name": "/usr/lib64/python2.7/lib-dynload/_struct.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 21344, "node": 50359919, "name": "/usr/lib64/python2.7/lib-dynload/_localemodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 17056, "node": 50359913, "name": "/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28736, "node": 50742918, "name": "/usr/lib64/python2.7/lib-dynload/stropmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 22920, "node": 50359915, "name": "/usr/lib64/python2.7/lib-dynload/_heapq.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 62096, "node": 50338582, "name": "/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 47672, "node": 50742588, "name": "/usr/lib64/python2.7/lib-dynload/operator.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 33096, "node": 50358878, "name": "/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1847496, "node": 9994, "name": "/usr/lib64/libpython2.7.so.1.0"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 185712, "node": 50359335, "name": "/usr/lib64/girepository-1.0/GLib-2.0.typelib"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "DEL", "type": "REG", "device": "253,0", "size_off": null, "node": 16777634, "name": "/tmp/ffiOEEtFw"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96afb573bc00", "size_off": null, "node": 21373, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "3w", "type": "REG", "device": "253,0", "size_off": 23686, "node": 17522009, "name": "/var/log/tuned/tuned.log"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 21954, "name": "KOBJECT_UEVENT"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "5r", "type": "CHR", "device": "1,9", "size_off": null, "node": 6490, "name": "/dev/urandom"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff96af325f9c00", "size_off": null, "node": 23046, "name": "socket"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "8u", "type": "REG", "device": "253,0", "size_off": 4096, "node": 16777634, "name": "/tmp/ffiOEEtFw (deleted)"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "9u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventfd]"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "10w", "type": "CHR", "device": "10,61", "size_off": null, "node": 8659, "name": "/dev/cpu_dma_latency"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "11r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "12w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 23069, "name": "pipe"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 663904, "node": 236336, "name": "/usr/sbin/rsyslogd"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25024, "node": 50686701, "name": "/usr/lib64/rsyslog/imjournal.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 38048, "node": 50686710, "name": "/usr/lib64/rsyslog/imuxsock.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24432, "node": 50686711, "name": "/usr/lib64/rsyslog/lmnet.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40896, "node": 33450, "name": "/usr/lib64/libfastjson.so.4.0.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15424, "node": 33470, "name": "/usr/lib64/libestr.so.0.0.0"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96af34d2d400", "size_off": null, "node": 21563, "name": "socket"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "5r", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "6w", "type": "REG", "device": "253,0", "size_off": 914211, "node": 33614498, "name": "/var/log/messages"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "7w", "type": "REG", "device": "253,0", "size_off": 18112, "node": 33707325, "name": "/var/log/cron"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "8w", "type": "REG", "device": "253,0", "size_off": 34573, "node": 33614499, "name": "/var/log/secure"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "9w", "type": "REG", "device": "253,0", "size_off": 594, "node": 33614497, "name": "/var/log/maillog"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 663904, "node": 236336, "name": "/usr/sbin/rsyslogd"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25024, "node": 50686701, "name": "/usr/lib64/rsyslog/imjournal.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 38048, "node": 50686710, "name": "/usr/lib64/rsyslog/imuxsock.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24432, "node": 50686711, "name": "/usr/lib64/rsyslog/lmnet.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40896, "node": 33450, "name": "/usr/lib64/libfastjson.so.4.0.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15424, "node": 33470, "name": "/usr/lib64/libestr.so.0.0.0"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96af34d2d400", "size_off": null, "node": 21563, "name": "socket"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "5r", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "6w", "type": "REG", "device": "253,0", "size_off": 914211, "node": 33614498, "name": "/var/log/messages"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "7w", "type": "REG", "device": "253,0", "size_off": 18112, "node": 33707325, "name": "/var/log/cron"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "8w", "type": "REG", "device": "253,0", "size_off": 34573, "node": 33614499, "name": "/var/log/secure"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "9w", "type": "REG", "device": "253,0", "size_off": 594, "node": 33614497, "name": "/var/log/maillog"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 663904, "node": 236336, "name": "/usr/sbin/rsyslogd"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 25024, "node": 50686701, "name": "/usr/lib64/rsyslog/imjournal.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 38048, "node": 50686710, "name": "/usr/lib64/rsyslog/imuxsock.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 24432, "node": 50686711, "name": "/usr/lib64/rsyslog/lmnet.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20064, "node": 8146, "name": "/usr/lib64/libuuid.so.1.3.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40896, "node": 33450, "name": "/usr/lib64/libfastjson.so.4.0.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15424, "node": 33470, "name": "/usr/lib64/libestr.so.0.0.0"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "3r", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "inotify"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96af34d2d400", "size_off": null, "node": 21563, "name": "socket"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "5r", "type": "REG", "device": "0,20", "size_off": 8388608, "node": 9246, "name": "/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "6w", "type": "REG", "device": "253,0", "size_off": 914211, "node": 33614498, "name": "/var/log/messages"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "7w", "type": "REG", "device": "253,0", "size_off": 18112, "node": 33707325, "name": "/var/log/cron"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "8w", "type": "REG", "device": "253,0", "size_off": 34573, "node": 33614499, "name": "/var/log/secure"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "9w", "type": "REG", "device": "253,0", "size_off": 594, "node": 33614497, "name": "/var/log/maillog"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 10806520, "node": 50705012, "name": "/usr/bin/docker-containerd-current"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff96af33934c00", "size_off": null, "node": 21302, "name": "socket"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96afb49b1400", "size_off": null, "node": 21877, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "6w", "type": "REG", "device": "0,20", "size_off": 0, "node": 21879, "name": "/run/docker/libcontainerd/containerd/events.log"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96af325fd800", "size_off": null, "node": 22241, "name": "/var/run/docker/libcontainerd/docker-containerd.sock"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 201, "node": 33759002, "name": "/var/spool/postfix"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 172568, "node": 33758955, "name": "/usr/libexec/postfix/master"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1850600, "node": 10008, "name": "/usr/lib64/libdb-5.3.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 3135712, "node": 50359390, "name": "/usr/lib64/mysql/libmysqlclient.so.18.0.0"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96af325f8800", "size_off": null, "node": 22293, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "4u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "5r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22403, "name": "pipe"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "6u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "7u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "8u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "9u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "10uW", "type": "REG", "device": "253,0", "size_off": 33, "node": 236387, "name": "/var/spool/postfix/pid/master.pid"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "11uW", "type": "REG", "device": "253,0", "size_off": 33, "node": 17559024, "name": "/var/lib/postfix/master.lock"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "12r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22392, "name": "pipe"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "13u", "type": "IPv4", "device": "22317", "size_off": null, "node": null, "name": "localhost:smtp (LISTEN)"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "14u", "type": "IPv6", "device": "22318", "size_off": null, "node": null, "name": "localhost:smtp (LISTEN)"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "15u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "16u", "type": "unix", "device": "0xffff96af325f9000", "size_off": null, "node": 22319, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "17u", "type": "unix", "device": "0xffff96af325fe400", "size_off": null, "node": 22320, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "18u", "type": "unix", "device": "0xffff96af325fc000", "size_off": null, "node": 22321, "name": "public/pickup"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "19u", "type": "unix", "device": "0xffff96af325ffc00", "size_off": null, "node": 22322, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "20u", "type": "unix", "device": "0xffff96af33897c00", "size_off": null, "node": 22323, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "22u", "type": "unix", "device": "0xffff96af3778e800", "size_off": null, "node": 22325, "name": "public/cleanup"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "23u", "type": "unix", "device": "0xffff96af33933400", "size_off": null, "node": 22326, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "24u", "type": "unix", "device": "0xffff96af33932800", "size_off": null, "node": 22327, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "25u", "type": "unix", "device": "0xffff96af33932000", "size_off": null, "node": 22328, "name": "public/qmgr"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "26u", "type": "unix", "device": "0xffff96af33931400", "size_off": null, "node": 22329, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "27u", "type": "unix", "device": "0xffff96afb49b0800", "size_off": null, "node": 22330, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "29u", "type": "unix", "device": "0xffff96afb49b4800", "size_off": null, "node": 22332, "name": "private/tlsmgr"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "30u", "type": "unix", "device": "0xffff96af32678000", "size_off": null, "node": 22333, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "31u", "type": "unix", "device": "0xffff96af32678400", "size_off": null, "node": 22334, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "32u", "type": "unix", "device": "0xffff96af32678800", "size_off": null, "node": 22335, "name": "private/rewrite"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "33u", "type": "unix", "device": "0xffff96af32679000", "size_off": null, "node": 22336, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "34u", "type": "unix", "device": "0xffff96af32679400", "size_off": null, "node": 22337, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "35u", "type": "unix", "device": "0xffff96af32679800", "size_off": null, "node": 22338, "name": "private/bounce"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "36u", "type": "unix", "device": "0xffff96af32679c00", "size_off": null, "node": 22339, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "37u", "type": "unix", "device": "0xffff96af3267a000", "size_off": null, "node": 22340, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "38u", "type": "unix", "device": "0xffff96af3267a400", "size_off": null, "node": 22341, "name": "private/defer"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "39u", "type": "unix", "device": "0xffff96af3267a800", "size_off": null, "node": 22342, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "40u", "type": "unix", "device": "0xffff96af3267ac00", "size_off": null, "node": 22343, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "41u", "type": "unix", "device": "0xffff96af3267b000", "size_off": null, "node": 22344, "name": "private/trace"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "42u", "type": "unix", "device": "0xffff96af3267b400", "size_off": null, "node": 22345, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "43u", "type": "unix", "device": "0xffff96af3267b800", "size_off": null, "node": 22346, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "44u", "type": "unix", "device": "0xffff96af3267bc00", "size_off": null, "node": 22347, "name": "private/verify"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "45u", "type": "unix", "device": "0xffff96af3267c000", "size_off": null, "node": 22348, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "46u", "type": "unix", "device": "0xffff96af3267c400", "size_off": null, "node": 22349, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "47u", "type": "unix", "device": "0xffff96af3267c800", "size_off": null, "node": 22350, "name": "public/flush"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "48u", "type": "unix", "device": "0xffff96af3267cc00", "size_off": null, "node": 22351, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "49u", "type": "unix", "device": "0xffff96af3267d000", "size_off": null, "node": 22352, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "50u", "type": "unix", "device": "0xffff96af3267d400", "size_off": null, "node": 22353, "name": "private/proxymap"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "51u", "type": "unix", "device": "0xffff96af3267d800", "size_off": null, "node": 22354, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "52u", "type": "unix", "device": "0xffff96af3267dc00", "size_off": null, "node": 22355, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "53u", "type": "unix", "device": "0xffff96af3267e000", "size_off": null, "node": 22356, "name": "private/proxywrite"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "54u", "type": "unix", "device": "0xffff96af3267e400", "size_off": null, "node": 22357, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "55u", "type": "unix", "device": "0xffff96af3267e800", "size_off": null, "node": 22358, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "56u", "type": "unix", "device": "0xffff96af3267ec00", "size_off": null, "node": 22359, "name": "private/smtp"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "57u", "type": "unix", "device": "0xffff96af3267f000", "size_off": null, "node": 22360, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "58u", "type": "unix", "device": "0xffff96af3267f400", "size_off": null, "node": 22361, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "59u", "type": "unix", "device": "0xffff96af3267f800", "size_off": null, "node": 22362, "name": "private/relay"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "60u", "type": "unix", "device": "0xffff96af3267fc00", "size_off": null, "node": 22363, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "61u", "type": "unix", "device": "0xffff96afb49b4400", "size_off": null, "node": 22364, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "62u", "type": "unix", "device": "0xffff96afb49b1800", "size_off": null, "node": 22365, "name": "public/showq"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "63u", "type": "unix", "device": "0xffff96afb49b2c00", "size_off": null, "node": 22366, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "64u", "type": "unix", "device": "0xffff96afb49b7800", "size_off": null, "node": 22367, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "65u", "type": "unix", "device": "0xffff96af32680400", "size_off": null, "node": 22368, "name": "private/error"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "66u", "type": "unix", "device": "0xffff96af32680800", "size_off": null, "node": 22369, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "67u", "type": "unix", "device": "0xffff96af32680c00", "size_off": null, "node": 22370, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "68u", "type": "unix", "device": "0xffff96af32681000", "size_off": null, "node": 22371, "name": "private/retry"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "69u", "type": "unix", "device": "0xffff96af32681400", "size_off": null, "node": 22372, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "70u", "type": "unix", "device": "0xffff96af32681800", "size_off": null, "node": 22373, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "71u", "type": "unix", "device": "0xffff96af32681c00", "size_off": null, "node": 22374, "name": "private/discard"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "72u", "type": "unix", "device": "0xffff96af32682000", "size_off": null, "node": 22375, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "73u", "type": "unix", "device": "0xffff96af32682400", "size_off": null, "node": 22376, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "74u", "type": "unix", "device": "0xffff96af32682800", "size_off": null, "node": 22377, "name": "private/local"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "75u", "type": "unix", "device": "0xffff96af32682c00", "size_off": null, "node": 22378, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "76u", "type": "unix", "device": "0xffff96af32683000", "size_off": null, "node": 22379, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "77u", "type": "unix", "device": "0xffff96af32683400", "size_off": null, "node": 22380, "name": "private/virtual"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "78u", "type": "unix", "device": "0xffff96af32683800", "size_off": null, "node": 22381, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "79u", "type": "unix", "device": "0xffff96af32683c00", "size_off": null, "node": 22382, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "80u", "type": "unix", "device": "0xffff96af32684000", "size_off": null, "node": 22383, "name": "private/lmtp"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "81u", "type": "unix", "device": "0xffff96af32684400", "size_off": null, "node": 22384, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "82u", "type": "unix", "device": "0xffff96af32684800", "size_off": null, "node": 22385, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "83u", "type": "unix", "device": "0xffff96af32684c00", "size_off": null, "node": 22386, "name": "private/anvil"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "84u", "type": "unix", "device": "0xffff96af32685000", "size_off": null, "node": 22387, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "85u", "type": "unix", "device": "0xffff96af32685400", "size_off": null, "node": 22388, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "86u", "type": "unix", "device": "0xffff96af32685800", "size_off": null, "node": 22389, "name": "private/scache"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "87u", "type": "unix", "device": "0xffff96af32685c00", "size_off": null, "node": 22390, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "88u", "type": "unix", "device": "0xffff96af32686000", "size_off": null, "node": 22391, "name": "socket"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "89w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22392, "name": "pipe"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "90r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22393, "name": "pipe"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "91w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22393, "name": "pipe"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "92w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22403, "name": "pipe"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 201, "node": 33759002, "name": "/var/spool/postfix"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 352192, "node": 33759007, "name": "/usr/libexec/postfix/qmgr"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1850600, "node": 10008, "name": "/usr/lib64/libdb-5.3.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 3135712, "node": 50359390, "name": "/usr/lib64/mysql/libmysqlclient.so.18.0.0"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "3r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22393, "name": "pipe"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "4w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22393, "name": "pipe"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "5u", "type": "unix", "device": "0xffff96afb49b0800", "size_off": null, "node": 22330, "name": "socket"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "6u", "type": "unix", "device": "0xffff96af33932000", "size_off": null, "node": 22328, "name": "public/qmgr"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "7u", "type": "unix", "device": "0xffff96afb4b91400", "size_off": null, "node": 22409, "name": "socket"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "8u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "11r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22441, "name": "pipe"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "12w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22441, "name": "pipe"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "92w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22403, "name": "pipe"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 6, "node": 503040, "name": "/home/kbrazil/git"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 964600, "node": 50332501, "name": "/usr/bin/bash"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 174576, "node": 9816, "name": "/usr/lib64/libtinfo.so.5.9"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 424352, "node": 1487, "name": "/usr/sbin/dhclient"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 28056, "node": 8126, "name": "/usr/lib64/libsystemd-daemon.so.0.0.12"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 446120, "node": 50742944, "name": "/usr/lib64/bind9-export/libisc-export.so.169.0.3"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2304128, "node": 50696880, "name": "/usr/lib64/bind9-export/libdns-export.so.1102.1.2"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 125280, "node": 1483, "name": "/usr/lib64/libomapi.so.0.0.0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff96af3778d400", "size_off": null, "node": 24201, "name": "socket"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "4w", "type": "REG", "device": "253,0", "size_off": 3192, "node": 33574989, "name": "/var/lib/NetworkManager/dhclient-d92ece08-9e02-47d5-b2d2-92c80e155744-ens33.lease"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "5u", "type": "pack", "device": "24213", "size_off": null, "node": null, "name": "type=SOCK_RAW"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "6u", "type": "IPv4", "device": "24214", "size_off": null, "node": null, "name": "*:bootpc"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 201, "node": 33759002, "name": "/var/spool/postfix"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 285208, "node": 33758958, "name": "/usr/libexec/postfix/pickup"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 991616, "node": 32681, "name": "/usr/lib64/libstdc++.so.6.0.19"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1850600, "node": 10008, "name": "/usr/lib64/libdb-5.3.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 3135712, "node": 50359390, "name": "/usr/lib64/mysql/libmysqlclient.so.18.0.0"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "3r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22393, "name": "pipe"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "4w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22393, "name": "pipe"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "5u", "type": "unix", "device": "0xffff96af33897c00", "size_off": null, "node": 22323, "name": "socket"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "6u", "type": "unix", "device": "0xffff96af325fc000", "size_off": null, "node": 22321, "name": "public/pickup"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "7u", "type": "unix", "device": "0xffff96afb4b90c00", "size_off": null, "node": 44430, "name": "socket"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "8u", "type": "a_inode", "device": "0,10", "size_off": 0, "node": 6481, "name": "[eventpoll]"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "9r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 44446, "name": "pipe"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "10w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 44446, "name": "pipe"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "92w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 22403, "name": "pipe"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 852856, "node": 297586, "name": "/usr/sbin/sshd"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15480, "node": 50338864, "name": "/usr/lib64/security/pam_lastlog.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15632, "node": 10151, "name": "/usr/lib64/libpam_misc.so.0.82.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 309168, "node": 50359979, "name": "/usr/lib64/security/pam_systemd.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19600, "node": 50338865, "name": "/usr/lib64/security/pam_limits.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11152, "node": 50338863, "name": "/usr/lib64/security/pam_keyinit.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40784, "node": 50338872, "name": "/usr/lib64/security/pam_namespace.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11200, "node": 50338868, "name": "/usr/lib64/security/pam_loginuid.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19760, "node": 50338880, "name": "/usr/lib64/security/pam_selinux.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 44600, "node": 10026, "name": "/usr/lib64/libcrack.so.2.9.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23832, "node": 10300, "name": "/usr/lib64/libpwquality.so.1.0.2"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11232, "node": 50339023, "name": "/usr/lib64/security/pam_pwquality.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6984, "node": 50338874, "name": "/usr/lib64/security/pam_permit.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11144, "node": 50338867, "name": "/usr/lib64/security/pam_localuser.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11176, "node": 50338873, "name": "/usr/lib64/security/pam_nologin.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6872, "node": 50338853, "name": "/usr/lib64/security/pam_deny.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15408, "node": 50338885, "name": "/usr/lib64/security/pam_succeed_if.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 57728, "node": 50338891, "name": "/usr/lib64/security/pam_unix.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11168, "node": 50338857, "name": "/usr/lib64/security/pam_faildelay.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15552, "node": 50338855, "name": "/usr/lib64/security/pam_env.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15496, "node": 50338882, "name": "/usr/lib64/security/pam_sepermit.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86472, "node": 33489, "name": "/usr/lib64/libnss_myhostname.so.2"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 31408, "node": 503056, "name": "/usr/lib64/libnss_dns-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 42520, "node": 10468, "name": "/usr/lib64/libwrap.so.0.7.6"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11344, "node": 32826, "name": "/usr/lib64/libfipscheck.so.1.2.1"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "3u", "type": "IPv4", "device": "44866", "size_off": null, "node": null, "name": "localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED)"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96aeb657b000", "size_off": null, "node": 44962, "name": "socket"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "5u", "type": "CHR", "device": "5,2", "size_off": null, "node": 8461, "name": "/dev/ptmx"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "6w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 44958, "name": "/run/systemd/sessions/17.ref"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff96aeb6579400", "size_off": null, "node": 44966, "name": "socket"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 852856, "node": 297586, "name": "/usr/sbin/sshd"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15480, "node": 50338864, "name": "/usr/lib64/security/pam_lastlog.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15632, "node": 10151, "name": "/usr/lib64/libpam_misc.so.0.82.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 309168, "node": 50359979, "name": "/usr/lib64/security/pam_systemd.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19600, "node": 50338865, "name": "/usr/lib64/security/pam_limits.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11152, "node": 50338863, "name": "/usr/lib64/security/pam_keyinit.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40784, "node": 50338872, "name": "/usr/lib64/security/pam_namespace.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11200, "node": 50338868, "name": "/usr/lib64/security/pam_loginuid.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19760, "node": 50338880, "name": "/usr/lib64/security/pam_selinux.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 44600, "node": 10026, "name": "/usr/lib64/libcrack.so.2.9.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23832, "node": 10300, "name": "/usr/lib64/libpwquality.so.1.0.2"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11232, "node": 50339023, "name": "/usr/lib64/security/pam_pwquality.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6984, "node": 50338874, "name": "/usr/lib64/security/pam_permit.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11144, "node": 50338867, "name": "/usr/lib64/security/pam_localuser.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11176, "node": 50338873, "name": "/usr/lib64/security/pam_nologin.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6872, "node": 50338853, "name": "/usr/lib64/security/pam_deny.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15408, "node": 50338885, "name": "/usr/lib64/security/pam_succeed_if.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 57728, "node": 50338891, "name": "/usr/lib64/security/pam_unix.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11168, "node": 50338857, "name": "/usr/lib64/security/pam_faildelay.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15552, "node": 50338855, "name": "/usr/lib64/security/pam_env.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15496, "node": 50338882, "name": "/usr/lib64/security/pam_sepermit.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 86472, "node": 33489, "name": "/usr/lib64/libnss_myhostname.so.2"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 31408, "node": 503056, "name": "/usr/lib64/libnss_dns-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 85968, "node": 10471, "name": "/usr/lib64/liblz4.so.1.7.5"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 203688, "node": 33742, "name": "/usr/lib64/libsystemd.so.0.6.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 42520, "node": 10468, "name": "/usr/lib64/libwrap.so.0.7.6"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11344, "node": 32826, "name": "/usr/lib64/libfipscheck.so.1.2.1"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "3u", "type": "IPv4", "device": "44866", "size_off": null, "node": null, "name": "localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED)"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "4u", "type": "unix", "device": "0xffff96aeb657b000", "size_off": null, "node": 44962, "name": "socket"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "5u", "type": "unix", "device": "0xffff96aeb657fc00", "size_off": null, "node": 44965, "name": "socket"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "6w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 44958, "name": "/run/systemd/sessions/17.ref"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "7r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 44977, "name": "pipe"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "8w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 44977, "name": "pipe"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "9u", "type": "CHR", "device": "5,2", "size_off": null, "node": 8461, "name": "/dev/ptmx"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "13u", "type": "CHR", "device": "5,2", "size_off": null, "node": 8461, "name": "/dev/ptmx"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "14u", "type": "CHR", "device": "5,2", "size_off": null, "node": 8461, "name": "/dev/ptmx"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 964600, "node": 50332501, "name": "/usr/bin/bash"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 174576, "node": 9816, "name": "/usr/lib64/libtinfo.so.5.9"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4587/exe"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4715/exe"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4716/exe"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 964600, "node": 50332501, "name": "/usr/bin/bash"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 174576, "node": 9816, "name": "/usr/lib64/libtinfo.so.5.9"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "255r", "type": "REG", "device": "253,0", "size_off": 1568, "node": 16993585, "name": "/home/kbrazil/testfiles/tests.sh"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 147320, "node": 50705101, "name": "/usr/bin/sudo"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 68192, "node": 9982, "name": "/usr/lib64/libbz2.so.1.0.6"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 157424, "node": 9974, "name": "/usr/lib64/liblzma.so.5.2.2"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 100024, "node": 503087, "name": "/usr/lib64/libelf-0.176.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19896, "node": 9831, "name": "/usr/lib64/libattr.so.1.1.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 88776, "node": 8134, "name": "/usr/lib64/libgcc_s-4.8.5-20150702.so.1"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 338704, "node": 33747, "name": "/usr/lib64/libdw-0.176.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15632, "node": 10151, "name": "/usr/lib64/libpam_misc.so.0.82.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1137024, "node": 1449, "name": "/usr/lib64/libm-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20048, "node": 8119, "name": "/usr/lib64/libcap.so.2.22"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 309168, "node": 50359979, "name": "/usr/lib64/security/pam_systemd.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19600, "node": 50338865, "name": "/usr/lib64/security/pam_limits.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11152, "node": 50338863, "name": "/usr/lib64/security/pam_keyinit.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 44600, "node": 10026, "name": "/usr/lib64/libcrack.so.2.9.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23832, "node": 10300, "name": "/usr/lib64/libpwquality.so.1.0.2"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11232, "node": 50339023, "name": "/usr/lib64/security/pam_pwquality.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6984, "node": 50338874, "name": "/usr/lib64/security/pam_permit.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11144, "node": 50338867, "name": "/usr/lib64/security/pam_localuser.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 6872, "node": 50338853, "name": "/usr/lib64/security/pam_deny.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15408, "node": 50338885, "name": "/usr/lib64/security/pam_succeed_if.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 115848, "node": 1452, "name": "/usr/lib64/libnsl-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 57728, "node": 50338891, "name": "/usr/lib64/security/pam_unix.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11168, "node": 50338857, "name": "/usr/lib64/security/pam_faildelay.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15552, "node": 50338855, "name": "/usr/lib64/security/pam_env.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15688, "node": 9878, "name": "/usr/lib64/libkeyutils.so.1.5"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 11392, "node": 7832, "name": "/usr/lib64/libfreebl3.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 43776, "node": 503075, "name": "/usr/lib64/librt-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 67104, "node": 9952, "name": "/usr/lib64/libkrb5support.so.0.1"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15920, "node": 7825, "name": "/usr/lib64/libcom_err.so.2.1"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 210784, "node": 9845, "name": "/usr/lib64/libk5crypto.so.3.1"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 967784, "node": 9948, "name": "/usr/lib64/libkrb5.so.3.3"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 320784, "node": 8155, "name": "/usr/lib64/libgssapi_krb5.so.2.2"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 40664, "node": 1119, "name": "/usr/lib64/libcrypt-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19384, "node": 10000, "name": "/usr/lib64/libgpg-error.so.0.10.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 251792, "node": 1468, "name": "/usr/lib64/libnspr4.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 20040, "node": 1469, "name": "/usr/lib64/libplc4.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 15744, "node": 1471, "name": "/usr/lib64/libplds4.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 198960, "node": 1472, "name": "/usr/lib64/libnssutil3.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 1257792, "node": 33488, "name": "/usr/lib64/libnss3.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 168336, "node": 503336, "name": "/usr/lib64/libsmime3.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 370584, "node": 503337, "name": "/usr/lib64/libssl3.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2521144, "node": 8157, "name": "/usr/lib64/libcrypto.so.1.0.2k"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 470376, "node": 9842, "name": "/usr/lib64/libssl.so.1.0.2k"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 121320, "node": 10329, "name": "/usr/lib64/libsasl2.so.3.0.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 105824, "node": 503073, "name": "/usr/lib64/libresolv-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 535064, "node": 10016, "name": "/usr/lib64/libgcrypt.so.11.8.2"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 90248, "node": 8171, "name": "/usr/lib64/libz.so.1.2.7"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61952, "node": 32966, "name": "/usr/lib64/liblber-2.4.so.2.10.7"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 352608, "node": 32968, "name": "/usr/lib64/libldap-2.4.so.2.10.7"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61672, "node": 10149, "name": "/usr/lib64/libpam.so.0.83.1"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 423008, "node": 50696807, "name": "/usr/libexec/sudo/sudoers.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 23968, "node": 10009, "name": "/usr/lib64/libcap-ng.so.0.0.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 77984, "node": 50696804, "name": "/usr/libexec/sudo/libsudo_util.so.0.0.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 14496, "node": 503085, "name": "/usr/lib64/libutil-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 127184, "node": 1475, "name": "/usr/lib64/libaudit.so.1.0.0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "1w", "type": "REG", "device": "253,0", "size_off": 0, "node": 16825879, "name": "/home/kbrazil/testfiles/lsof-sudo.out"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "3u", "type": "netlink", "device": null, "size_off": null, "node": 49570, "name": "AUDIT"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff96af33896000", "size_off": null, "node": 49582, "name": "socket"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "6w", "type": "FIFO", "device": "0,20", "size_off": null, "node": 44958, "name": "/run/systemd/sessions/17.ref"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "7r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49585, "name": "pipe"}, {"command": "sudo", "pid": 4779, "tid": null, "user": "root", "fd": "8w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49585, "name": "pipe"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 154184, "node": 1092, "name": "/usr/sbin/lsof"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "1w", "type": "REG", "device": "253,0", "size_off": 0, "node": 16825879, "name": "/home/kbrazil/testfiles/lsof-sudo.out"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "3r", "type": "DIR", "device": "0,3", "size_off": 0, "node": 1, "name": "/proc"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "4r", "type": "DIR", "device": "0,3", "size_off": 0, "node": 49587, "name": "/proc/4781/fd"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "5w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49597, "name": "pipe"}, {"command": "lsof", "pid": 4781, "tid": null, "user": "root", "fd": "6r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49598, "name": "pipe"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 154184, "node": 1092, "name": "/usr/sbin/lsof"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "4r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49597, "name": "pipe"}, {"command": "lsof", "pid": 4782, "tid": null, "user": "root", "fd": "7w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49598, "name": "pipe"}] +[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":1624520,"node":50360451,"name":"/usr/lib/systemd/systemd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91800,"node":32817,"name":"/usr/lib64/libkmod.so.2.2.10"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":45344,"node":50610926,"name":"/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1431995,"node":50392663,"name":"/etc/selinux/targeted/contexts/files/file_contexts.bin"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"6r","type":"DIR","device":"0,22","size_off":0,"node":8688,"name":"/sys/fs/cgroup/systemd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":13770,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":8964,"name":"/proc/1/mountinfo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"10r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"11r","type":"REG","device":"0,3","size_off":0,"node":4026532019,"name":"/proc/swaps"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff96aeb677f000","size_off":0,"node":13771,"name":"/run/systemd/private"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"19u","type":"netlink","device":null,"size_off":0,"node":13776,"name":"AUDIT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"20u","type":"unix","device":"0xffff96aeb677c400","size_off":0,"node":13851,"name":"/run/lvm/lvmpolld.socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"21u","type":"FIFO","device":"0,20","size_off":0,"node":13862,"name":"/run/dmeventd-server"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"22u","type":"FIFO","device":"0,20","size_off":0,"node":13863,"name":"/run/dmeventd-client"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff96afb3392000","size_off":0,"node":8971,"name":"/run/systemd/notify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff96afb3391c00","size_off":0,"node":8973,"name":"/run/systemd/cgroups-agent"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff96aeb677bc00","size_off":0,"node":13864,"name":"/run/systemd/shutdownd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"26r","type":"CHR","device":"10,235","size_off":0,"node":8458,"name":"/dev/autofs"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"27r","type":"FIFO","device":"0,9","size_off":0,"node":13903,"name":"pipe"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"28u","type":"unix","device":"0xffff96afb3393400","size_off":0,"node":8991,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"29u","type":"unix","device":"0xffff96afb3393800","size_off":0,"node":8994,"name":"/run/systemd/journal/socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"30u","type":"unix","device":"0xffff96afb3393c00","size_off":0,"node":8996,"name":"/dev/log"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"31u","type":"unix","device":"0xffff96aeb677a800","size_off":0,"node":13918,"name":"/run/lvm/lvmetad.socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"32u","type":"unix","device":"0xffff96aeb6788000","size_off":0,"node":13962,"name":"/run/udev/control"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"33r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"34u","type":"netlink","device":null,"size_off":0,"node":14051,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"35u","type":"FIFO","device":"0,20","size_off":0,"node":14170,"name":"/run/systemd/initctl/fifo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"36u","type":"unix","device":"0xffff96aeb6715800","size_off":0,"node":14252,"name":"socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"37u","type":"unix","device":"0xffff96afb4d62400","size_off":0,"node":17785,"name":"/run/dbus/system_bus_socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff96aeb6713c00","size_off":0,"node":14409,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff96afb4d67000","size_off":0,"node":17796,"name":"socket"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff96aeb677e000","size_off":0,"node":14760,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"41u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"42u","type":"unix","device":"0xffff96afb4d63400","size_off":0,"node":17845,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"43u","type":"unix","device":"0xffff96afb4d71800","size_off":0,"node":18956,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"44u","type":"netlink","device":null,"size_off":0,"node":14577,"name":"SELINUX"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"48u","type":"unix","device":"0xffff96afb5775c00","size_off":0,"node":18141,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"51u","type":"unix","device":"0xffff96afb5767800","size_off":0,"node":18419,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"52u","type":"unix","device":"0xffff96af33931800","size_off":0,"node":21303,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"53u","type":"unix","device":"0xffff96afb573b800","size_off":0,"node":21448,"name":"/run/systemd/journal/stdout"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"54u","type":"unix","device":"0xffff96afb573d800","size_off":0,"node":21430,"name":"/run/systemd/journal/stdout"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/exe"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"0,5","size_off":3180,"node":3,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"0,5","size_off":3180,"node":3,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/exe"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/exe"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/exe"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/exe"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/exe"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/exe"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/exe"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/exe"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/exe"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/exe"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/exe"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/exe"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/exe"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/exe"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/exe"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/exe"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/exe"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/exe"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/exe"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/exe"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/exe"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/exe"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/exe"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/exe"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/exe"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/exe"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/exe"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/exe"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/exe"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/exe"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/exe"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/exe"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/exe"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/exe"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/exe"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/exe"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/exe"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/exe"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":346152,"node":50360465,"name":"/usr/lib/systemd/systemd-journald"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37056,"node":9833,"name":"/usr/lib64/libacl.so.1.1.0"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8,"node":9217,"name":"/run/systemd/journal/kernel-seqnum"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb3393400","size_off":0,"node":8991,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96afb3393800","size_off":0,"node":8994,"name":"/run/systemd/journal/socket"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb3393c00","size_off":0,"node":8996,"name":"/dev/log"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"6w","type":"CHR","device":"1,11","size_off":0,"node":6491,"name":"/dev/kmsg"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"8u","type":"CHR","device":"1,11","size_off":0,"node":6491,"name":"/dev/kmsg"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":9218,"name":"/proc/sys/kernel/hostname"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"11u","type":"unix","device":"0xffff96aeb6716000","size_off":0,"node":14029,"name":"socket"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"13u","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"14u","type":"unix","device":"0xffff96afb4d63400","size_off":0,"node":17845,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"15u","type":"unix","device":"0xffff96aeb6713c00","size_off":0,"node":14409,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"16u","type":"unix","device":"0xffff96afb4d71800","size_off":0,"node":18956,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff96aeb677e000","size_off":0,"node":14760,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"21u","type":"unix","device":"0xffff96afb5775c00","size_off":0,"node":18141,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"22u","type":"unix","device":"0xffff96af33931800","size_off":0,"node":21303,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff96afb573d800","size_off":0,"node":21430,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff96afb5767800","size_off":0,"node":18419,"name":"/run/systemd/journal/stdout"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff96afb573b800","size_off":0,"node":21448,"name":"/run/systemd/journal/stdout"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":73376,"node":3435,"name":"/usr/sbin/lvmetad"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":45344,"node":50610926,"name":"/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1431995,"node":50392663,"name":"/etc/selinux/targeted/contexts/files/file_contexts.bin"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96aeb6714c00","size_off":0,"node":14408,"name":"socket"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96aeb6714c00","size_off":0,"node":14408,"name":"socket"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96aeb677a800","size_off":0,"node":13918,"name":"/run/lvm/lvmetad.socket"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"4wW","type":"REG","device":"0,20","size_off":4,"node":14581,"name":"/run/lvmetad.pid"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":416168,"node":50360488,"name":"/usr/lib/systemd/systemd-udevd"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":8201136,"node":17105721,"name":"/etc/udev/hwdb.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":483595,"node":17105570,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.symbols.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":813600,"node":17072551,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.alias.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37056,"node":9833,"name":"/usr/lib64/libacl.so.1.1.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91800,"node":32817,"name":"/usr/lib64/libkmod.so.2.2.10"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":379859,"node":16790240,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.dep.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":45344,"node":50610926,"name":"/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1431995,"node":50392663,"name":"/etc/selinux/targeted/contexts/files/file_contexts.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":9425,"node":17105934,"name":"/usr/lib/modules/3.10.0-1062.1.2.el7.x86_64/modules.builtin.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96aeb6779000","size_off":0,"node":14759,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96aeb6779000","size_off":0,"node":14759,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":14051,"name":"KOBJECT_UEVENT"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb6788000","size_off":0,"node":13962,"name":"/run/udev/control"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96aeb6713400","size_off":0,"node":14838,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"6r","type":"REG","device":"253,0","size_off":8201136,"node":17105721,"name":"/etc/udev/hwdb.bin"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"7r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"8u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"9u","type":"unix","device":"0xffff96afb46a5400","size_off":0,"node":14872,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb46a5c00","size_off":0,"node":14873,"name":"socket"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"11u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/exe"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/exe"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/exe"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/exe"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/exe"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/exe"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/exe"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/exe"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/exe"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/exe"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/exe"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/exe"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":128664,"node":3639,"name":"/usr/sbin/auditd"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":128456,"node":7752,"name":"/usr/lib64/libauparse.so.0.0.0"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":17617,"name":"AUDIT"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"5w","type":"REG","device":"253,0","size_off":2121390,"node":72,"name":"/var/log/audit/audit.log"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4d62c00","size_off":0,"node":17621,"name":"socket"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"9u","type":"unix","device":"0xffff96afb4d64800","size_off":0,"node":17630,"name":"socket"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4d63c00","size_off":0,"node":17631,"name":"socket"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":128664,"node":3639,"name":"/usr/sbin/auditd"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":128456,"node":7752,"name":"/usr/lib64/libauparse.so.0.0.0"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":17617,"name":"AUDIT"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"5w","type":"REG","device":"253,0","size_off":2121390,"node":72,"name":"/var/log/audit/audit.log"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"6u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4d62c00","size_off":0,"node":17621,"name":"socket"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"9u","type":"unix","device":"0xffff96afb4d64800","size_off":0,"node":17630,"name":"socket"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4d63c00","size_off":0,"node":17631,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"txt","type":"REG","device":"253,0","size_off":223320,"node":50360532,"name":"/usr/bin/dbus-daemon"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"1u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"2u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"3u","type":"unix","device":"0xffff96afb4d62400","size_off":0,"node":17785,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"5u","type":"sock","device":"0,7","size_off":0,"node":17853,"name":"protocol: NETLINK"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"6u","type":"netlink","device":null,"size_off":0,"node":17854,"name":"SELINUX"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"7r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"8u","type":"unix","device":"0xffff96afb4d60000","size_off":0,"node":17859,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"9u","type":"unix","device":"0xffff96afb4d61000","size_off":0,"node":17860,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"10u","type":"unix","device":"0xffff96afb4d64000","size_off":0,"node":17861,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"11u","type":"unix","device":"0xffff96afb4d77800","size_off":0,"node":18364,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"12u","type":"unix","device":"0xffff96afb5766000","size_off":0,"node":18610,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"13u","type":"unix","device":"0xffff96aeb670dc00","size_off":0,"node":18893,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"14u","type":"unix","device":"0xffff96afb573e000","size_off":0,"node":19006,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"15u","type":"unix","device":"0xffff96afb573c800","size_off":0,"node":19075,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"16u","type":"unix","device":"0xffff96afb4b95400","size_off":0,"node":22479,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"19u","type":"unix","device":"0xffff96afb573a400","size_off":0,"node":20120,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"20u","type":"unix","device":"0xffff96af325fe800","size_off":0,"node":23047,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"txt","type":"REG","device":"253,0","size_off":223320,"node":50360532,"name":"/usr/bin/dbus-daemon"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"1u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"2u","type":"unix","device":"0xffff96afb4d62800","size_off":0,"node":17844,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"3u","type":"unix","device":"0xffff96afb4d62400","size_off":0,"node":17785,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"5u","type":"sock","device":"0,7","size_off":0,"node":17853,"name":"protocol: NETLINK"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"6u","type":"netlink","device":null,"size_off":0,"node":17854,"name":"SELINUX"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"7r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"8u","type":"unix","device":"0xffff96afb4d60000","size_off":0,"node":17859,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"9u","type":"unix","device":"0xffff96afb4d61000","size_off":0,"node":17860,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"10u","type":"unix","device":"0xffff96afb4d64000","size_off":0,"node":17861,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"11u","type":"unix","device":"0xffff96afb4d77800","size_off":0,"node":18364,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"12u","type":"unix","device":"0xffff96afb5766000","size_off":0,"node":18610,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"13u","type":"unix","device":"0xffff96aeb670dc00","size_off":0,"node":18893,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"14u","type":"unix","device":"0xffff96afb573e000","size_off":0,"node":19006,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"15u","type":"unix","device":"0xffff96afb573c800","size_off":0,"node":19075,"name":"socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"16u","type":"unix","device":"0xffff96afb4b95400","size_off":0,"node":22479,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"19u","type":"unix","device":"0xffff96afb573a400","size_off":0,"node":20120,"name":"/run/dbus/system_bus_socket"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"20u","type":"unix","device":"0xffff96af325fe800","size_off":0,"node":23047,"name":"/run/dbus/system_bus_socket"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"txt","type":"REG","device":"253,0","size_off":120432,"node":50360556,"name":"/usr/lib/polkit-1/polkitd"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":4028168,"node":33229,"name":"/usr/lib64/libmozjs-17.0.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":118704,"node":1479,"name":"/usr/lib64/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"6u","type":"unix","device":"0xffff96afb5760400","size_off":0,"node":18604,"name":"socket"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"10u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"11u","type":"unix","device":"0xffff96afb5770800","size_off":0,"node":18730,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":635736,"node":50360467,"name":"/usr/lib/systemd/systemd-logind"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37056,"node":9833,"name":"/usr/lib64/libacl.so.1.1.0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb5775800","size_off":0,"node":18140,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb5775800","size_off":0,"node":18140,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb5771800","size_off":0,"node":18269,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"6r","type":"REG","device":"0,18","size_off":4096,"node":26737,"name":"/sys/devices/virtual/tty/tty0/active"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[signalfd]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18359,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18360,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18361,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":18362,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb56a8800","size_off":0,"node":18363,"name":"socket"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[timerfd]"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"14u","type":"CHR","device":"13,64","size_off":0,"node":8504,"name":"/dev/input/event0"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"15u","type":"CHR","device":"4,6","size_off":0,"node":6505,"name":"/dev/tty6"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"16r","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"17r","type":"FIFO","device":"0,20","size_off":0,"node":23441,"name":"/run/systemd/sessions/1.ref"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"18r","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":70216,"node":33648,"name":"/usr/sbin/crond"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb5767400","size_off":0,"node":18418,"name":"socket"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb5767400","size_off":0,"node":18418,"name":"socket"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"0,20","size_off":4,"node":18523,"name":"/run/crond.pid"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96afb5765c00","size_off":0,"node":18549,"name":"socket"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"5r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"txt","type":"REG","device":"253,0","size_off":269392,"node":34110,"name":"/usr/sbin/chronyd"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"3u","type":"unix","device":"0xffff96afb5764c00","size_off":0,"node":18498,"name":"socket"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"5u","type":"IPv4","device":"18535","size_off":0,"node":null,"name":"localhost:323"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"6u","type":"IPv6","device":"18536","size_off":0,"node":null,"name":"localhost:323"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"8u","type":"unix","device":"0xffff96afb5762400","size_off":0,"node":18547,"name":"/var/run/chrony/chronyd.sock"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":49640,"node":32755,"name":"/usr/sbin/agetty"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"4,1","size_off":0,"node":6500,"name":"/dev/tty1"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"4,1","size_off":0,"node":6500,"name":"/dev/tty1"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"4,1","size_off":0,"node":6500,"name":"/dev/tty1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":37248,"node":50358286,"name":"/usr/bin/login"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15480,"node":50338864,"name":"/usr/lib64/security/pam_lastlog.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40784,"node":50338872,"name":"/usr/lib64/security/pam_namespace.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28256,"node":50338850,"name":"/usr/lib64/security/pam_console.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11200,"node":50338868,"name":"/usr/lib64/security/pam_loginuid.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19760,"node":50338880,"name":"/usr/lib64/security/pam_selinux.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11176,"node":50338873,"name":"/usr/lib64/security/pam_nologin.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11216,"node":50338879,"name":"/usr/lib64/security/pam_securetty.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,20","size_off":0,"node":23441,"name":"/run/systemd/sessions/1.ref"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":298820,"node":50360560,"name":"/usr/lib64/girepository-1.0/NM-1.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":343452,"node":50359338,"name":"/usr/lib64/girepository-1.0/Gio-2.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11672,"node":50742920,"name":"/usr/lib64/python2.7/lib-dynload/syslog.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":59120,"node":50359337,"name":"/usr/lib64/girepository-1.0/GObject-2.0.typelib"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777637,"name":"/tmp/ffiCvbwRW"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":41033,"node":33614496,"name":"/var/log/firewalld"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb670d400","size_off":0,"node":18892,"name":"socket"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"6u","type":"REG","device":"253,0","size_off":4096,"node":16777637,"name":"/tmp/ffiCvbwRW (deleted)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4b92000","size_off":0,"node":22509,"name":"socket"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":298820,"node":50360560,"name":"/usr/lib64/girepository-1.0/NM-1.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":343452,"node":50359338,"name":"/usr/lib64/girepository-1.0/Gio-2.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11672,"node":50742920,"name":"/usr/lib64/python2.7/lib-dynload/syslog.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":59120,"node":50359337,"name":"/usr/lib64/girepository-1.0/GObject-2.0.typelib"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777637,"name":"/tmp/ffiCvbwRW"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":41033,"node":33614496,"name":"/var/log/firewalld"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb670d400","size_off":0,"node":18892,"name":"socket"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"6u","type":"REG","device":"253,0","size_off":4096,"node":16777637,"name":"/tmp/ffiCvbwRW (deleted)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"8r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"10u","type":"unix","device":"0xffff96afb4b92000","size_off":0,"node":22509,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":2957744,"node":1486,"name":"/usr/sbin/NetworkManager"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":152272,"node":297594,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":53944,"node":10457,"name":"/usr/lib64/libjansson.so.4.10.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23984,"node":34203,"name":"/usr/lib64/libteamdctl.so.0.1.5"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":41352,"node":297593,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24320,"node":168491,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":248184,"node":168492,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":186680,"node":32577,"name":"/usr/lib64/libssh2.so.1.0.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":208920,"node":10446,"name":"/usr/lib64/libidn.so.11.6.11"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":439320,"node":32975,"name":"/usr/lib64/libcurl.so.4.3.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24448,"node":33454,"name":"/usr/lib64/libndp.so.0.0.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb5770c00","size_off":0,"node":18979,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"6r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"7r","type":"REG","device":"0,3","size_off":0,"node":4026532390,"name":"mnt"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18990,"name":"KOBJECT_UEVENT"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18991,"name":"GENERIC"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18992,"name":"ROUTE"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"11u","type":"unix","device":"0xffff96afb573e400","size_off":0,"node":19005,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"13r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"15u","type":"netlink","device":null,"size_off":0,"node":19858,"name":"KOBJECT_UEVENT"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"16u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff96afb573e800","size_off":0,"node":20119,"name":"socket"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"18u","type":"unix","device":"0xffff96af33897400","size_off":0,"node":20600,"name":"/var/run/NetworkManager/private-dhcp"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"19w","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"20u","type":"raw6","device":null,"size_off":0,"node":24206,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":2957744,"node":1486,"name":"/usr/sbin/NetworkManager"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":152272,"node":297594,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":53944,"node":10457,"name":"/usr/lib64/libjansson.so.4.10.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23984,"node":34203,"name":"/usr/lib64/libteamdctl.so.0.1.5"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":41352,"node":297593,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24320,"node":168491,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":248184,"node":168492,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":186680,"node":32577,"name":"/usr/lib64/libssh2.so.1.0.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":208920,"node":10446,"name":"/usr/lib64/libidn.so.11.6.11"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":439320,"node":32975,"name":"/usr/lib64/libcurl.so.4.3.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24448,"node":33454,"name":"/usr/lib64/libndp.so.0.0.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb5770c00","size_off":0,"node":18979,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"6r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"7r","type":"REG","device":"0,3","size_off":0,"node":4026532390,"name":"mnt"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18990,"name":"KOBJECT_UEVENT"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18991,"name":"GENERIC"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18992,"name":"ROUTE"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"11u","type":"unix","device":"0xffff96afb573e400","size_off":0,"node":19005,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"13r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"15u","type":"netlink","device":null,"size_off":0,"node":19858,"name":"KOBJECT_UEVENT"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"16u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"17u","type":"unix","device":"0xffff96afb573e800","size_off":0,"node":20119,"name":"socket"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"18u","type":"unix","device":"0xffff96af33897400","size_off":0,"node":20600,"name":"/var/run/NetworkManager/private-dhcp"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"19w","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"20u","type":"raw6","device":null,"size_off":0,"node":24206,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":2957744,"node":1486,"name":"/usr/sbin/NetworkManager"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":152272,"node":297594,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-wifi.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":53944,"node":10457,"name":"/usr/lib64/libjansson.so.4.10.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23984,"node":34203,"name":"/usr/lib64/libteamdctl.so.0.1.5"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":41352,"node":297593,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-device-plugin-team.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24320,"node":168491,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ibft.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":248184,"node":168492,"name":"/usr/lib64/NetworkManager/1.18.0-5.el7_7.1/libnm-settings-plugin-ifcfg-rh.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":186680,"node":32577,"name":"/usr/lib64/libssh2.so.1.0.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":208920,"node":10446,"name":"/usr/lib64/libidn.so.11.6.11"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":439320,"node":32975,"name":"/usr/lib64/libcurl.so.4.3.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24448,"node":33454,"name":"/usr/lib64/libndp.so.0.0.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb4d75800","size_off":0,"node":18955,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"3u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"5u","type":"unix","device":"0xffff96afb5770c00","size_off":0,"node":18979,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"6r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"7r","type":"REG","device":"0,3","size_off":0,"node":4026532390,"name":"mnt"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":18990,"name":"KOBJECT_UEVENT"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":18991,"name":"GENERIC"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":18992,"name":"ROUTE"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"11u","type":"unix","device":"0xffff96afb573e400","size_off":0,"node":19005,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"12u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"13r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"14r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"15u","type":"netlink","device":null,"size_off":0,"node":19858,"name":"KOBJECT_UEVENT"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"16u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"17u","type":"unix","device":"0xffff96afb573e800","size_off":0,"node":20119,"name":"socket"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"18u","type":"unix","device":"0xffff96af33897400","size_off":0,"node":20600,"name":"/var/run/NetworkManager/private-dhcp"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"19w","type":"FIFO","device":"0,20","size_off":0,"node":20214,"name":"/run/systemd/inhibit/1.ref"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"20u","type":"raw6","device":null,"size_off":0,"node":24206,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":33407632,"node":50705016,"name":"/usr/bin/dockerd-current"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":660208,"node":9827,"name":"/usr/lib64/libsepol.so.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":70856,"node":10327,"name":"/usr/lib64/libassuan.so.0.4.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":212120,"node":102415,"name":"/usr/lib64/libgpgme.so.11.8.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":356112,"node":16794,"name":"/usr/lib64/libdevmapper.so.1.02"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":266680,"node":33458,"name":"/usr/lib64/libseccomp.so.2.3.1"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"mem-W","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb728c800","size_off":0,"node":21801,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"5u","type":"unix","device":"0xffff96af34e1f800","size_off":0,"node":21822,"name":"/var/run/docker.sock"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325fc800","size_off":0,"node":22240,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"7uW","type":"REG","device":"253,0","size_off":32768,"node":34346870,"name":"/var/lib/docker/volumes/metadata.db"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"8u","type":"unix","device":"0xffff96afb4b94400","size_off":0,"node":22478,"name":"socket"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"9r","type":"REG","device":"0,3","size_off":0,"node":4026531956,"name":"net"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":22649,"name":"ROUTE"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":22650,"name":"XFRM"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"12u","type":"unix","device":"0xffff96afb4b97c00","size_off":0,"node":22839,"name":"/run/docker/libnetwork/fe53fe5029258e61eb7a9173ec80150ea3595abe7d69e47af064f451212110bf.sock"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":852856,"node":297586,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11344,"node":32826,"name":"/usr/lib64/libfipscheck.so.1.2.1"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573c000","size_off":0,"node":21429,"name":"socket"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573c000","size_off":0,"node":21429,"name":"socket"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"21598","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"4u","type":"IPv6","device":"21607","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":7216,"node":50359089,"name":"/usr/bin/python2.7"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":91024,"node":33744,"name":"/usr/lib64/libudev.so.1.6.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":156960,"node":50359917,"name":"/usr/lib64/python2.7/lib-dynload/_io.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127000,"node":50359909,"name":"/usr/lib64/python2.7/lib-dynload/_ctypes.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86984,"node":50338611,"name":"/usr/lib64/python2.7/lib-dynload/datetime.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":217144,"node":32802,"name":"/usr/lib64/libgirepository-1.0.so.1.0.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6952,"node":10074,"name":"/usr/lib64/libgthread-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":331480,"node":17071684,"name":"/usr/lib64/python2.7/site-packages/gi/_gi.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":265600,"node":8147,"name":"/usr/lib64/libblkid.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":277808,"node":8164,"name":"/usr/lib64/libmount.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15640,"node":9972,"name":"/usr/lib64/libgmodule-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":32304,"node":9828,"name":"/usr/lib64/libffi.so.6.0.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1722920,"node":9963,"name":"/usr/lib64/libgio-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1156656,"node":9967,"name":"/usr/lib64/libglib-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":339112,"node":10068,"name":"/usr/lib64/libgobject-2.0.so.0.5600.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168312,"node":102248,"name":"/usr/lib64/libdbus-glib-1.so.2.2.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11976,"node":102254,"name":"/usr/lib64/python2.7/site-packages/_dbus_glib_bindings.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":173320,"node":10025,"name":"/usr/lib64/libexpat.so.1.6.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":54544,"node":50358894,"name":"/usr/lib64/python2.7/lib-dynload/pyexpat.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":333384,"node":33781,"name":"/usr/lib64/libdbus-1.so.3.14.14"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":166248,"node":102253,"name":"/usr/lib64/python2.7/site-packages/_dbus_bindings.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19264,"node":50338618,"name":"/usr/lib64/python2.7/lib-dynload/fcntlmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":29264,"node":50358903,"name":"/usr/lib64/python2.7/lib-dynload/selectmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":12408,"node":50338621,"name":"/usr/lib64/python2.7/lib-dynload/grpmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":16432,"node":50359923,"name":"/usr/lib64/python2.7/lib-dynload/_randommodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22880,"node":50359914,"name":"/usr/lib64/python2.7/lib-dynload/_hashlib.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25768,"node":50338601,"name":"/usr/lib64/python2.7/lib-dynload/binascii.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":37384,"node":50358881,"name":"/usr/lib64/python2.7/lib-dynload/math.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85192,"node":50338603,"name":"/usr/lib64/python2.7/lib-dynload/cPickle.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":95120,"node":50338580,"name":"/usr/lib64/python2.7/lib-dynload/_ssl.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":83968,"node":50359924,"name":"/usr/lib64/python2.7/lib-dynload/_socketmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23992,"node":50338604,"name":"/usr/lib64/python2.7/lib-dynload/cStringIO.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25064,"node":50742922,"name":"/usr/lib64/python2.7/lib-dynload/timemodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":39024,"node":50338821,"name":"/usr/lib64/python2.7/lib-dynload/_struct.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":21344,"node":50359919,"name":"/usr/lib64/python2.7/lib-dynload/_localemodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":17056,"node":50359913,"name":"/usr/lib64/python2.7/lib-dynload/_functoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28736,"node":50742918,"name":"/usr/lib64/python2.7/lib-dynload/stropmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":22920,"node":50359915,"name":"/usr/lib64/python2.7/lib-dynload/_heapq.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":62096,"node":50338582,"name":"/usr/lib64/python2.7/lib-dynload/itertoolsmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":47672,"node":50742588,"name":"/usr/lib64/python2.7/lib-dynload/operator.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":33096,"node":50358878,"name":"/usr/lib64/python2.7/lib-dynload/_collectionsmodule.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1847496,"node":9994,"name":"/usr/lib64/libpython2.7.so.1.0"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":185712,"node":50359335,"name":"/usr/lib64/girepository-1.0/GLib-2.0.typelib"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"DEL","type":"REG","device":"253,0","size_off":null,"node":16777634,"name":"/tmp/ffiOEEtFw"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"1u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"2u","type":"unix","device":"0xffff96afb573bc00","size_off":0,"node":21373,"name":"socket"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"3w","type":"REG","device":"253,0","size_off":23686,"node":17522009,"name":"/var/log/tuned/tuned.log"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21954,"name":"KOBJECT_UEVENT"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"5r","type":"CHR","device":"1,9","size_off":0,"node":6490,"name":"/dev/urandom"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"6u","type":"unix","device":"0xffff96af325f9c00","size_off":0,"node":23046,"name":"socket"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"7u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"8u","type":"REG","device":"253,0","size_off":4096,"node":16777634,"name":"/tmp/ffiOEEtFw (deleted)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"9u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventfd]"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"10w","type":"CHR","device":"10,61","size_off":0,"node":8659,"name":"/dev/cpu_dma_latency"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":23069,"name":"pipe"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"13u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":663904,"node":236336,"name":"/usr/sbin/rsyslogd"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25024,"node":50686701,"name":"/usr/lib64/rsyslog/imjournal.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":38048,"node":50686710,"name":"/usr/lib64/rsyslog/imuxsock.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24432,"node":50686711,"name":"/usr/lib64/rsyslog/lmnet.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40896,"node":33450,"name":"/usr/lib64/libfastjson.so.4.0.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15424,"node":33470,"name":"/usr/lib64/libestr.so.0.0.0"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96af34d2d400","size_off":0,"node":21563,"name":"socket"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"5r","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"6w","type":"REG","device":"253,0","size_off":914211,"node":33614498,"name":"/var/log/messages"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"7w","type":"REG","device":"253,0","size_off":18112,"node":33707325,"name":"/var/log/cron"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"8w","type":"REG","device":"253,0","size_off":34573,"node":33614499,"name":"/var/log/secure"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"9w","type":"REG","device":"253,0","size_off":594,"node":33614497,"name":"/var/log/maillog"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":663904,"node":236336,"name":"/usr/sbin/rsyslogd"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25024,"node":50686701,"name":"/usr/lib64/rsyslog/imjournal.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":38048,"node":50686710,"name":"/usr/lib64/rsyslog/imuxsock.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24432,"node":50686711,"name":"/usr/lib64/rsyslog/lmnet.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40896,"node":33450,"name":"/usr/lib64/libfastjson.so.4.0.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15424,"node":33470,"name":"/usr/lib64/libestr.so.0.0.0"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"4u","type":"unix","device":"0xffff96af34d2d400","size_off":0,"node":21563,"name":"socket"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"5r","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"6w","type":"REG","device":"253,0","size_off":914211,"node":33614498,"name":"/var/log/messages"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"7w","type":"REG","device":"253,0","size_off":18112,"node":33707325,"name":"/var/log/cron"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"8w","type":"REG","device":"253,0","size_off":34573,"node":33614499,"name":"/var/log/secure"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"9w","type":"REG","device":"253,0","size_off":594,"node":33614497,"name":"/var/log/maillog"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":663904,"node":236336,"name":"/usr/sbin/rsyslogd"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":25024,"node":50686701,"name":"/usr/lib64/rsyslog/imjournal.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":38048,"node":50686710,"name":"/usr/lib64/rsyslog/imuxsock.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":24432,"node":50686711,"name":"/usr/lib64/rsyslog/lmnet.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20064,"node":8146,"name":"/usr/lib64/libuuid.so.1.3.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40896,"node":33450,"name":"/usr/lib64/libfastjson.so.4.0.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15424,"node":33470,"name":"/usr/lib64/libestr.so.0.0.0"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"3r","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"inotify"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"4u","type":"unix","device":"0xffff96af34d2d400","size_off":0,"node":21563,"name":"socket"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"5r","type":"REG","device":"0,20","size_off":8388608,"node":9246,"name":"/run/log/journal/c1aceec07c3141c5893d84415874e296/system.journal"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"6w","type":"REG","device":"253,0","size_off":914211,"node":33614498,"name":"/var/log/messages"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"7w","type":"REG","device":"253,0","size_off":18112,"node":33707325,"name":"/var/log/cron"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"8w","type":"REG","device":"253,0","size_off":34573,"node":33614499,"name":"/var/log/secure"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"9w","type":"REG","device":"253,0","size_off":594,"node":33614497,"name":"/var/log/maillog"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":10806520,"node":50705012,"name":"/usr/bin/docker-containerd-current"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"1u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"2u","type":"unix","device":"0xffff96af33934c00","size_off":0,"node":21302,"name":"socket"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"3u","type":"unix","device":"0xffff96afb49b1400","size_off":0,"node":21877,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"4u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"5u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"6w","type":"REG","device":"0,20","size_off":0,"node":21879,"name":"/run/docker/libcontainerd/containerd/events.log"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"7u","type":"unix","device":"0xffff96af325fd800","size_off":0,"node":22241,"name":"/var/run/docker/libcontainerd/docker-containerd.sock"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":201,"node":33759002,"name":"/var/spool/postfix"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":172568,"node":33758955,"name":"/usr/libexec/postfix/master"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1850600,"node":10008,"name":"/usr/lib64/libdb-5.3.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":3135712,"node":50359390,"name":"/usr/lib64/mysql/libmysqlclient.so.18.0.0"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96af325f8800","size_off":0,"node":22293,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"4u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"5r","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"6u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"7u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"8u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"9u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"10uW","type":"REG","device":"253,0","size_off":33,"node":236387,"name":"/var/spool/postfix/pid/master.pid"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"11uW","type":"REG","device":"253,0","size_off":33,"node":17559024,"name":"/var/lib/postfix/master.lock"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"12r","type":"FIFO","device":"0,9","size_off":0,"node":22392,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"13u","type":"IPv4","device":"22317","size_off":0,"node":null,"name":"localhost:smtp (LISTEN)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"14u","type":"IPv6","device":"22318","size_off":0,"node":null,"name":"localhost:smtp (LISTEN)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"15u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"16u","type":"unix","device":"0xffff96af325f9000","size_off":0,"node":22319,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff96af325fe400","size_off":0,"node":22320,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"18u","type":"unix","device":"0xffff96af325fc000","size_off":0,"node":22321,"name":"public/pickup"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"19u","type":"unix","device":"0xffff96af325ffc00","size_off":0,"node":22322,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"20u","type":"unix","device":"0xffff96af33897c00","size_off":0,"node":22323,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"22u","type":"unix","device":"0xffff96af3778e800","size_off":0,"node":22325,"name":"public/cleanup"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff96af33933400","size_off":0,"node":22326,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff96af33932800","size_off":0,"node":22327,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff96af33932000","size_off":0,"node":22328,"name":"public/qmgr"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"26u","type":"unix","device":"0xffff96af33931400","size_off":0,"node":22329,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"27u","type":"unix","device":"0xffff96afb49b0800","size_off":0,"node":22330,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"29u","type":"unix","device":"0xffff96afb49b4800","size_off":0,"node":22332,"name":"private/tlsmgr"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"30u","type":"unix","device":"0xffff96af32678000","size_off":0,"node":22333,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"31u","type":"unix","device":"0xffff96af32678400","size_off":0,"node":22334,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"32u","type":"unix","device":"0xffff96af32678800","size_off":0,"node":22335,"name":"private/rewrite"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"33u","type":"unix","device":"0xffff96af32679000","size_off":0,"node":22336,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"34u","type":"unix","device":"0xffff96af32679400","size_off":0,"node":22337,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"35u","type":"unix","device":"0xffff96af32679800","size_off":0,"node":22338,"name":"private/bounce"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"36u","type":"unix","device":"0xffff96af32679c00","size_off":0,"node":22339,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"37u","type":"unix","device":"0xffff96af3267a000","size_off":0,"node":22340,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff96af3267a400","size_off":0,"node":22341,"name":"private/defer"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff96af3267a800","size_off":0,"node":22342,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff96af3267ac00","size_off":0,"node":22343,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"41u","type":"unix","device":"0xffff96af3267b000","size_off":0,"node":22344,"name":"private/trace"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"42u","type":"unix","device":"0xffff96af3267b400","size_off":0,"node":22345,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"43u","type":"unix","device":"0xffff96af3267b800","size_off":0,"node":22346,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"44u","type":"unix","device":"0xffff96af3267bc00","size_off":0,"node":22347,"name":"private/verify"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"45u","type":"unix","device":"0xffff96af3267c000","size_off":0,"node":22348,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"46u","type":"unix","device":"0xffff96af3267c400","size_off":0,"node":22349,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"47u","type":"unix","device":"0xffff96af3267c800","size_off":0,"node":22350,"name":"public/flush"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"48u","type":"unix","device":"0xffff96af3267cc00","size_off":0,"node":22351,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"49u","type":"unix","device":"0xffff96af3267d000","size_off":0,"node":22352,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"50u","type":"unix","device":"0xffff96af3267d400","size_off":0,"node":22353,"name":"private/proxymap"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"51u","type":"unix","device":"0xffff96af3267d800","size_off":0,"node":22354,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"52u","type":"unix","device":"0xffff96af3267dc00","size_off":0,"node":22355,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"53u","type":"unix","device":"0xffff96af3267e000","size_off":0,"node":22356,"name":"private/proxywrite"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"54u","type":"unix","device":"0xffff96af3267e400","size_off":0,"node":22357,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"55u","type":"unix","device":"0xffff96af3267e800","size_off":0,"node":22358,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"56u","type":"unix","device":"0xffff96af3267ec00","size_off":0,"node":22359,"name":"private/smtp"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"57u","type":"unix","device":"0xffff96af3267f000","size_off":0,"node":22360,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"58u","type":"unix","device":"0xffff96af3267f400","size_off":0,"node":22361,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"59u","type":"unix","device":"0xffff96af3267f800","size_off":0,"node":22362,"name":"private/relay"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"60u","type":"unix","device":"0xffff96af3267fc00","size_off":0,"node":22363,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"61u","type":"unix","device":"0xffff96afb49b4400","size_off":0,"node":22364,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"62u","type":"unix","device":"0xffff96afb49b1800","size_off":0,"node":22365,"name":"public/showq"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"63u","type":"unix","device":"0xffff96afb49b2c00","size_off":0,"node":22366,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"64u","type":"unix","device":"0xffff96afb49b7800","size_off":0,"node":22367,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"65u","type":"unix","device":"0xffff96af32680400","size_off":0,"node":22368,"name":"private/error"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"66u","type":"unix","device":"0xffff96af32680800","size_off":0,"node":22369,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"67u","type":"unix","device":"0xffff96af32680c00","size_off":0,"node":22370,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"68u","type":"unix","device":"0xffff96af32681000","size_off":0,"node":22371,"name":"private/retry"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"69u","type":"unix","device":"0xffff96af32681400","size_off":0,"node":22372,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"70u","type":"unix","device":"0xffff96af32681800","size_off":0,"node":22373,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"71u","type":"unix","device":"0xffff96af32681c00","size_off":0,"node":22374,"name":"private/discard"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"72u","type":"unix","device":"0xffff96af32682000","size_off":0,"node":22375,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"73u","type":"unix","device":"0xffff96af32682400","size_off":0,"node":22376,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"74u","type":"unix","device":"0xffff96af32682800","size_off":0,"node":22377,"name":"private/local"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"75u","type":"unix","device":"0xffff96af32682c00","size_off":0,"node":22378,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"76u","type":"unix","device":"0xffff96af32683000","size_off":0,"node":22379,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"77u","type":"unix","device":"0xffff96af32683400","size_off":0,"node":22380,"name":"private/virtual"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"78u","type":"unix","device":"0xffff96af32683800","size_off":0,"node":22381,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"79u","type":"unix","device":"0xffff96af32683c00","size_off":0,"node":22382,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"80u","type":"unix","device":"0xffff96af32684000","size_off":0,"node":22383,"name":"private/lmtp"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"81u","type":"unix","device":"0xffff96af32684400","size_off":0,"node":22384,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"82u","type":"unix","device":"0xffff96af32684800","size_off":0,"node":22385,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"83u","type":"unix","device":"0xffff96af32684c00","size_off":0,"node":22386,"name":"private/anvil"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"84u","type":"unix","device":"0xffff96af32685000","size_off":0,"node":22387,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"85u","type":"unix","device":"0xffff96af32685400","size_off":0,"node":22388,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"86u","type":"unix","device":"0xffff96af32685800","size_off":0,"node":22389,"name":"private/scache"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"87u","type":"unix","device":"0xffff96af32685c00","size_off":0,"node":22390,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"88u","type":"unix","device":"0xffff96af32686000","size_off":0,"node":22391,"name":"socket"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"89w","type":"FIFO","device":"0,9","size_off":0,"node":22392,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"90r","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"91w","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"92w","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"cwd","type":"DIR","device":"253,0","size_off":201,"node":33759002,"name":"/var/spool/postfix"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"txt","type":"REG","device":"253,0","size_off":352192,"node":33759007,"name":"/usr/libexec/postfix/qmgr"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1850600,"node":10008,"name":"/usr/lib64/libdb-5.3.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":3135712,"node":50359390,"name":"/usr/lib64/mysql/libmysqlclient.so.18.0.0"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"3r","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"4w","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"5u","type":"unix","device":"0xffff96afb49b0800","size_off":0,"node":22330,"name":"socket"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"6u","type":"unix","device":"0xffff96af33932000","size_off":0,"node":22328,"name":"public/qmgr"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"7u","type":"unix","device":"0xffff96afb4b91400","size_off":0,"node":22409,"name":"socket"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"8u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"11r","type":"FIFO","device":"0,9","size_off":0,"node":22441,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"12w","type":"FIFO","device":"0,9","size_off":0,"node":22441,"name":"pipe"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"92w","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":6,"node":503040,"name":"/home/kbrazil/git"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":424352,"node":1487,"name":"/usr/sbin/dhclient"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":28056,"node":8126,"name":"/usr/lib64/libsystemd-daemon.so.0.0.12"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":446120,"node":50742944,"name":"/usr/lib64/bind9-export/libisc-export.so.169.0.3"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2304128,"node":50696880,"name":"/usr/lib64/bind9-export/libdns-export.so.1102.1.2"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":125280,"node":1483,"name":"/usr/lib64/libomapi.so.0.0.0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff96af3778d400","size_off":0,"node":24201,"name":"socket"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"4w","type":"REG","device":"253,0","size_off":3192,"node":33574989,"name":"/var/lib/NetworkManager/dhclient-d92ece08-9e02-47d5-b2d2-92c80e155744-ens33.lease"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"5u","type":"pack","device":"24213","size_off":0,"node":null,"name":"type=SOCK_RAW"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"6u","type":"IPv4","device":"24214","size_off":0,"node":null,"name":"*:bootpc"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"cwd","type":"DIR","device":"253,0","size_off":201,"node":33759002,"name":"/var/spool/postfix"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"txt","type":"REG","device":"253,0","size_off":285208,"node":33758958,"name":"/usr/libexec/postfix/pickup"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":991616,"node":32681,"name":"/usr/lib64/libstdc++.so.6.0.19"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1850600,"node":10008,"name":"/usr/lib64/libdb-5.3.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":3135712,"node":50359390,"name":"/usr/lib64/mysql/libmysqlclient.so.18.0.0"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"3r","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"4w","type":"FIFO","device":"0,9","size_off":0,"node":22393,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"5u","type":"unix","device":"0xffff96af33897c00","size_off":0,"node":22323,"name":"socket"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"6u","type":"unix","device":"0xffff96af325fc000","size_off":0,"node":22321,"name":"public/pickup"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"7u","type":"unix","device":"0xffff96afb4b90c00","size_off":0,"node":44430,"name":"socket"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"8u","type":"a_inode","device":"0,10","size_off":0,"node":6481,"name":"[eventpoll]"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"9r","type":"FIFO","device":"0,9","size_off":0,"node":44446,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"10w","type":"FIFO","device":"0,9","size_off":0,"node":44446,"name":"pipe"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"92w","type":"FIFO","device":"0,9","size_off":0,"node":22403,"name":"pipe"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":852856,"node":297586,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15480,"node":50338864,"name":"/usr/lib64/security/pam_lastlog.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40784,"node":50338872,"name":"/usr/lib64/security/pam_namespace.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11200,"node":50338868,"name":"/usr/lib64/security/pam_loginuid.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19760,"node":50338880,"name":"/usr/lib64/security/pam_selinux.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11176,"node":50338873,"name":"/usr/lib64/security/pam_nologin.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15496,"node":50338882,"name":"/usr/lib64/security/pam_sepermit.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11344,"node":32826,"name":"/usr/lib64/libfipscheck.so.1.2.1"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"44866","size_off":0,"node":null,"name":"localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96aeb657b000","size_off":0,"node":44962,"name":"socket"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"5u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff96aeb6579400","size_off":0,"node":44966,"name":"socket"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":852856,"node":297586,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15480,"node":50338864,"name":"/usr/lib64/security/pam_lastlog.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":40784,"node":50338872,"name":"/usr/lib64/security/pam_namespace.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11200,"node":50338868,"name":"/usr/lib64/security/pam_loginuid.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19760,"node":50338880,"name":"/usr/lib64/security/pam_selinux.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11176,"node":50338873,"name":"/usr/lib64/security/pam_nologin.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15496,"node":50338882,"name":"/usr/lib64/security/pam_sepermit.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":86472,"node":33489,"name":"/usr/lib64/libnss_myhostname.so.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":31408,"node":503056,"name":"/usr/lib64/libnss_dns-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":85968,"node":10471,"name":"/usr/lib64/liblz4.so.1.7.5"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":203688,"node":33742,"name":"/usr/lib64/libsystemd.so.0.6.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":42520,"node":10468,"name":"/usr/lib64/libwrap.so.0.7.6"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":11344,"node":32826,"name":"/usr/lib64/libfipscheck.so.1.2.1"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"3u","type":"IPv4","device":"44866","size_off":0,"node":null,"name":"localhost.localdomain:ssh->192.168.71.1:58727 (ESTABLISHED)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"4u","type":"unix","device":"0xffff96aeb657b000","size_off":0,"node":44962,"name":"socket"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"5u","type":"unix","device":"0xffff96aeb657fc00","size_off":0,"node":44965,"name":"socket"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"6w","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"7r","type":"FIFO","device":"0,9","size_off":0,"node":44977,"name":"pipe"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"8w","type":"FIFO","device":"0,9","size_off":0,"node":44977,"name":"pipe"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"9u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"13u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"14u","type":"CHR","device":"5,2","size_off":0,"node":8461,"name":"/dev/ptmx"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/exe"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/exe"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/exe"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"253,0","size_off":1568,"node":16993585,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":147320,"node":50705101,"name":"/usr/bin/sudo"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":68192,"node":9982,"name":"/usr/lib64/libbz2.so.1.0.6"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":157424,"node":9974,"name":"/usr/lib64/liblzma.so.5.2.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":100024,"node":503087,"name":"/usr/lib64/libelf-0.176.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19896,"node":9831,"name":"/usr/lib64/libattr.so.1.1.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":88776,"node":8134,"name":"/usr/lib64/libgcc_s-4.8.5-20150702.so.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":338704,"node":33747,"name":"/usr/lib64/libdw-0.176.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15632,"node":10151,"name":"/usr/lib64/libpam_misc.so.0.82.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1137024,"node":1449,"name":"/usr/lib64/libm-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20048,"node":8119,"name":"/usr/lib64/libcap.so.2.22"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":309168,"node":50359979,"name":"/usr/lib64/security/pam_systemd.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19600,"node":50338865,"name":"/usr/lib64/security/pam_limits.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11152,"node":50338863,"name":"/usr/lib64/security/pam_keyinit.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":44600,"node":10026,"name":"/usr/lib64/libcrack.so.2.9.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23832,"node":10300,"name":"/usr/lib64/libpwquality.so.1.0.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11232,"node":50339023,"name":"/usr/lib64/security/pam_pwquality.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6984,"node":50338874,"name":"/usr/lib64/security/pam_permit.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11144,"node":50338867,"name":"/usr/lib64/security/pam_localuser.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":6872,"node":50338853,"name":"/usr/lib64/security/pam_deny.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15408,"node":50338885,"name":"/usr/lib64/security/pam_succeed_if.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":115848,"node":1452,"name":"/usr/lib64/libnsl-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":57728,"node":50338891,"name":"/usr/lib64/security/pam_unix.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11168,"node":50338857,"name":"/usr/lib64/security/pam_faildelay.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15552,"node":50338855,"name":"/usr/lib64/security/pam_env.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15688,"node":9878,"name":"/usr/lib64/libkeyutils.so.1.5"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":11392,"node":7832,"name":"/usr/lib64/libfreebl3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":43776,"node":503075,"name":"/usr/lib64/librt-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":67104,"node":9952,"name":"/usr/lib64/libkrb5support.so.0.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15920,"node":7825,"name":"/usr/lib64/libcom_err.so.2.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":210784,"node":9845,"name":"/usr/lib64/libk5crypto.so.3.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":967784,"node":9948,"name":"/usr/lib64/libkrb5.so.3.3"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":320784,"node":8155,"name":"/usr/lib64/libgssapi_krb5.so.2.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":40664,"node":1119,"name":"/usr/lib64/libcrypt-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19384,"node":10000,"name":"/usr/lib64/libgpg-error.so.0.10.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":251792,"node":1468,"name":"/usr/lib64/libnspr4.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":20040,"node":1469,"name":"/usr/lib64/libplc4.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":15744,"node":1471,"name":"/usr/lib64/libplds4.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":198960,"node":1472,"name":"/usr/lib64/libnssutil3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":1257792,"node":33488,"name":"/usr/lib64/libnss3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":168336,"node":503336,"name":"/usr/lib64/libsmime3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":370584,"node":503337,"name":"/usr/lib64/libssl3.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2521144,"node":8157,"name":"/usr/lib64/libcrypto.so.1.0.2k"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":470376,"node":9842,"name":"/usr/lib64/libssl.so.1.0.2k"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":121320,"node":10329,"name":"/usr/lib64/libsasl2.so.3.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":105824,"node":503073,"name":"/usr/lib64/libresolv-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":535064,"node":10016,"name":"/usr/lib64/libgcrypt.so.11.8.2"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":90248,"node":8171,"name":"/usr/lib64/libz.so.1.2.7"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61952,"node":32966,"name":"/usr/lib64/liblber-2.4.so.2.10.7"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":352608,"node":32968,"name":"/usr/lib64/libldap-2.4.so.2.10.7"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61672,"node":10149,"name":"/usr/lib64/libpam.so.0.83.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":423008,"node":50696807,"name":"/usr/libexec/sudo/sudoers.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":23968,"node":10009,"name":"/usr/lib64/libcap-ng.so.0.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":77984,"node":50696804,"name":"/usr/libexec/sudo/libsudo_util.so.0.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":14496,"node":503085,"name":"/usr/lib64/libutil-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":127184,"node":1475,"name":"/usr/lib64/libaudit.so.1.0.0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"1w","type":"REG","device":"253,0","size_off":0,"node":16825879,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":49570,"name":"AUDIT"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff96af33896000","size_off":0,"node":49582,"name":"socket"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,20","size_off":0,"node":44958,"name":"/run/systemd/sessions/17.ref"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"7r","type":"FIFO","device":"0,9","size_off":0,"node":49585,"name":"pipe"},{"command":"sudo","pid":4779,"tid":null,"user":"root","fd":"8w","type":"FIFO","device":"0,9","size_off":0,"node":49585,"name":"pipe"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"1w","type":"REG","device":"253,0","size_off":0,"node":16825879,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"3r","type":"DIR","device":"0,3","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"4r","type":"DIR","device":"0,3","size_off":0,"node":49587,"name":"/proc/4781/fd"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,9","size_off":0,"node":49597,"name":"pipe"},{"command":"lsof","pid":4781,"tid":null,"user":"root","fd":"6r","type":"FIFO","device":"0,9","size_off":0,"node":49598,"name":"pipe"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"4r","type":"FIFO","device":"0,9","size_off":0,"node":49597,"name":"pipe"},{"command":"lsof","pid":4782,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,9","size_off":0,"node":49598,"name":"pipe"}] diff --git a/tests/fixtures/centos-7.7/lsof.json b/tests/fixtures/centos-7.7/lsof.json index feabee1e..c3423a1e 100644 --- a/tests/fixtures/centos-7.7/lsof.json +++ b/tests/fixtures/centos-7.7/lsof.json @@ -1 +1 @@ -[{"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1/cwd (readlink: Permission denied)"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1/root (readlink: Permission denied)"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1/exe (readlink: Permission denied)"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1/fd (opendir: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/cwd (readlink: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/root (readlink: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/exe (readlink: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/2/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/5/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/5/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/5/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 5, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/5/fd (opendir: Permission denied)"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/cwd (readlink: Permission denied)"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/root (readlink: Permission denied)"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/exe (readlink: Permission denied)"}, {"command": "ksoftirqd", "pid": 6, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/6/fd (opendir: Permission denied)"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/cwd (readlink: Permission denied)"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/root (readlink: Permission denied)"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/exe (readlink: Permission denied)"}, {"command": "migration", "pid": 7, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/7/fd (opendir: Permission denied)"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/cwd (readlink: Permission denied)"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/root (readlink: Permission denied)"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/exe (readlink: Permission denied)"}, {"command": "rcu_bh", "pid": 8, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/8/fd (opendir: Permission denied)"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/cwd (readlink: Permission denied)"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/root (readlink: Permission denied)"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/exe (readlink: Permission denied)"}, {"command": "rcu_sched", "pid": 9, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/9/fd (opendir: Permission denied)"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/cwd (readlink: Permission denied)"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/root (readlink: Permission denied)"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/exe (readlink: Permission denied)"}, {"command": "lru-add-d", "pid": 10, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/10/fd (opendir: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/cwd (readlink: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/root (readlink: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/exe (readlink: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/11/fd (opendir: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/cwd (readlink: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/root (readlink: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/exe (readlink: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/13/fd (opendir: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/cwd (readlink: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/root (readlink: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/exe (readlink: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/14/fd (opendir: Permission denied)"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/cwd (readlink: Permission denied)"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/root (readlink: Permission denied)"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/exe (readlink: Permission denied)"}, {"command": "khungtask", "pid": 15, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15/fd (opendir: Permission denied)"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/cwd (readlink: Permission denied)"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/root (readlink: Permission denied)"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/exe (readlink: Permission denied)"}, {"command": "writeback", "pid": 16, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/16/fd (opendir: Permission denied)"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/cwd (readlink: Permission denied)"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/root (readlink: Permission denied)"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/exe (readlink: Permission denied)"}, {"command": "kintegrit", "pid": 17, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/17/fd (opendir: Permission denied)"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/cwd (readlink: Permission denied)"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/root (readlink: Permission denied)"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/exe (readlink: Permission denied)"}, {"command": "bioset", "pid": 18, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/18/fd (opendir: Permission denied)"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/cwd (readlink: Permission denied)"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/root (readlink: Permission denied)"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/exe (readlink: Permission denied)"}, {"command": "bioset", "pid": 19, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/19/fd (opendir: Permission denied)"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/cwd (readlink: Permission denied)"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/root (readlink: Permission denied)"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/exe (readlink: Permission denied)"}, {"command": "bioset", "pid": 20, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/20/fd (opendir: Permission denied)"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/cwd (readlink: Permission denied)"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/root (readlink: Permission denied)"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/exe (readlink: Permission denied)"}, {"command": "kblockd", "pid": 21, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/21/fd (opendir: Permission denied)"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/cwd (readlink: Permission denied)"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/root (readlink: Permission denied)"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/exe (readlink: Permission denied)"}, {"command": "md", "pid": 22, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/22/fd (opendir: Permission denied)"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/cwd (readlink: Permission denied)"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/root (readlink: Permission denied)"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/exe (readlink: Permission denied)"}, {"command": "edac-poll", "pid": 23, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/23/fd (opendir: Permission denied)"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/cwd (readlink: Permission denied)"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/root (readlink: Permission denied)"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/exe (readlink: Permission denied)"}, {"command": "watchdogd", "pid": 24, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/24/fd (opendir: Permission denied)"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/cwd (readlink: Permission denied)"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/root (readlink: Permission denied)"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/exe (readlink: Permission denied)"}, {"command": "kswapd0", "pid": 30, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/30/fd (opendir: Permission denied)"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/31/cwd (readlink: Permission denied)"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/31/root (readlink: Permission denied)"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/31/exe (readlink: Permission denied)"}, {"command": "ksmd", "pid": 31, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/31/fd (opendir: Permission denied)"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/32/cwd (readlink: Permission denied)"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/32/root (readlink: Permission denied)"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/32/exe (readlink: Permission denied)"}, {"command": "khugepage", "pid": 32, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/32/fd (opendir: Permission denied)"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/33/cwd (readlink: Permission denied)"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/33/root (readlink: Permission denied)"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/33/exe (readlink: Permission denied)"}, {"command": "crypto", "pid": 33, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/33/fd (opendir: Permission denied)"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/41/cwd (readlink: Permission denied)"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/41/root (readlink: Permission denied)"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/41/exe (readlink: Permission denied)"}, {"command": "kthrotld", "pid": 41, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/41/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/42/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/42/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/42/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 42, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/42/fd (opendir: Permission denied)"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/43/cwd (readlink: Permission denied)"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/43/root (readlink: Permission denied)"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/43/exe (readlink: Permission denied)"}, {"command": "kmpath_rd", "pid": 43, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/43/fd (opendir: Permission denied)"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/44/cwd (readlink: Permission denied)"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/44/root (readlink: Permission denied)"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/44/exe (readlink: Permission denied)"}, {"command": "kaluad", "pid": 44, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/44/fd (opendir: Permission denied)"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/45/cwd (readlink: Permission denied)"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/45/root (readlink: Permission denied)"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/45/exe (readlink: Permission denied)"}, {"command": "kpsmoused", "pid": 45, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/45/fd (opendir: Permission denied)"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/47/cwd (readlink: Permission denied)"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/47/root (readlink: Permission denied)"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/47/exe (readlink: Permission denied)"}, {"command": "ipv6_addr", "pid": 47, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/47/fd (opendir: Permission denied)"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/60/cwd (readlink: Permission denied)"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/60/root (readlink: Permission denied)"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/60/exe (readlink: Permission denied)"}, {"command": "deferwq", "pid": 60, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/60/fd (opendir: Permission denied)"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/95/cwd (readlink: Permission denied)"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/95/root (readlink: Permission denied)"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/95/exe (readlink: Permission denied)"}, {"command": "kauditd", "pid": 95, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/95/fd (opendir: Permission denied)"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/272/cwd (readlink: Permission denied)"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/272/root (readlink: Permission denied)"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/272/exe (readlink: Permission denied)"}, {"command": "mpt_poll_", "pid": 272, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/272/fd (opendir: Permission denied)"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/273/cwd (readlink: Permission denied)"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/273/root (readlink: Permission denied)"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/273/exe (readlink: Permission denied)"}, {"command": "mpt/0", "pid": 273, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/273/fd (opendir: Permission denied)"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/274/cwd (readlink: Permission denied)"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/274/root (readlink: Permission denied)"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/274/exe (readlink: Permission denied)"}, {"command": "ata_sff", "pid": 274, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/274/fd (opendir: Permission denied)"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/275/cwd (readlink: Permission denied)"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/275/root (readlink: Permission denied)"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/275/exe (readlink: Permission denied)"}, {"command": "nfit", "pid": 275, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/275/fd (opendir: Permission denied)"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/291/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/291/root (readlink: Permission denied)"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/291/exe (readlink: Permission denied)"}, {"command": "scsi_eh_0", "pid": 291, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/291/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 295, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/295/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/330/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/330/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/330/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 330, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/330/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/331/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/331/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/331/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 331, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/331/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/339/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/339/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/339/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 339, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/339/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/346/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/346/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/346/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 346, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/346/fd (opendir: Permission denied)"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/357/cwd (readlink: Permission denied)"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/357/root (readlink: Permission denied)"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/357/exe (readlink: Permission denied)"}, {"command": "irq/16-vm", "pid": 357, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/357/fd (opendir: Permission denied)"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/358/cwd (readlink: Permission denied)"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/358/root (readlink: Permission denied)"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/358/exe (readlink: Permission denied)"}, {"command": "ttm_swap", "pid": 358, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/358/fd (opendir: Permission denied)"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/431/cwd (readlink: Permission denied)"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/431/root (readlink: Permission denied)"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/431/exe (readlink: Permission denied)"}, {"command": "kdmflush", "pid": 431, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/431/fd (opendir: Permission denied)"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/432/cwd (readlink: Permission denied)"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/432/root (readlink: Permission denied)"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/432/exe (readlink: Permission denied)"}, {"command": "bioset", "pid": 432, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/432/fd (opendir: Permission denied)"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/442/cwd (readlink: Permission denied)"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/442/root (readlink: Permission denied)"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/442/exe (readlink: Permission denied)"}, {"command": "kdmflush", "pid": 442, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/442/fd (opendir: Permission denied)"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/443/cwd (readlink: Permission denied)"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/443/root (readlink: Permission denied)"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/443/exe (readlink: Permission denied)"}, {"command": "bioset", "pid": 443, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/443/fd (opendir: Permission denied)"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/455/cwd (readlink: Permission denied)"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/455/root (readlink: Permission denied)"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/455/exe (readlink: Permission denied)"}, {"command": "bioset", "pid": 455, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/455/fd (opendir: Permission denied)"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/456/cwd (readlink: Permission denied)"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/456/root (readlink: Permission denied)"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/456/exe (readlink: Permission denied)"}, {"command": "xfsalloc", "pid": 456, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/456/fd (opendir: Permission denied)"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/457/cwd (readlink: Permission denied)"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/457/root (readlink: Permission denied)"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/457/exe (readlink: Permission denied)"}, {"command": "xfs_mru_c", "pid": 457, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/457/fd (opendir: Permission denied)"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/458/cwd (readlink: Permission denied)"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/458/root (readlink: Permission denied)"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/458/exe (readlink: Permission denied)"}, {"command": "xfs-buf/d", "pid": 458, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/458/fd (opendir: Permission denied)"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/459/cwd (readlink: Permission denied)"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/459/root (readlink: Permission denied)"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/459/exe (readlink: Permission denied)"}, {"command": "xfs-data/", "pid": 459, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/459/fd (opendir: Permission denied)"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/460/cwd (readlink: Permission denied)"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/460/root (readlink: Permission denied)"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/460/exe (readlink: Permission denied)"}, {"command": "xfs-conv/", "pid": 460, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/460/fd (opendir: Permission denied)"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/461/cwd (readlink: Permission denied)"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/461/root (readlink: Permission denied)"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/461/exe (readlink: Permission denied)"}, {"command": "xfs-cil/d", "pid": 461, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/461/fd (opendir: Permission denied)"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/462/cwd (readlink: Permission denied)"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/462/root (readlink: Permission denied)"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/462/exe (readlink: Permission denied)"}, {"command": "xfs-recla", "pid": 462, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/462/fd (opendir: Permission denied)"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/463/cwd (readlink: Permission denied)"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/463/root (readlink: Permission denied)"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/463/exe (readlink: Permission denied)"}, {"command": "xfs-log/d", "pid": 463, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/463/fd (opendir: Permission denied)"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/464/cwd (readlink: Permission denied)"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/464/root (readlink: Permission denied)"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/464/exe (readlink: Permission denied)"}, {"command": "xfs-eofbl", "pid": 464, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/464/fd (opendir: Permission denied)"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/465/cwd (readlink: Permission denied)"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/465/root (readlink: Permission denied)"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/465/exe (readlink: Permission denied)"}, {"command": "xfsaild/d", "pid": 465, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/465/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/466/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/466/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/466/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 466, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/466/fd (opendir: Permission denied)"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/544/cwd (readlink: Permission denied)"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/544/root (readlink: Permission denied)"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/544/exe (readlink: Permission denied)"}, {"command": "systemd-j", "pid": 544, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/544/fd (opendir: Permission denied)"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/560/cwd (readlink: Permission denied)"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/560/root (readlink: Permission denied)"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/560/exe (readlink: Permission denied)"}, {"command": "lvmetad", "pid": 560, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/560/fd (opendir: Permission denied)"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/577/cwd (readlink: Permission denied)"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/577/root (readlink: Permission denied)"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/577/exe (readlink: Permission denied)"}, {"command": "systemd-u", "pid": 577, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/577/fd (opendir: Permission denied)"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/629/cwd (readlink: Permission denied)"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/629/root (readlink: Permission denied)"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/629/exe (readlink: Permission denied)"}, {"command": "xfs-buf/s", "pid": 629, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/629/fd (opendir: Permission denied)"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/638/cwd (readlink: Permission denied)"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/638/root (readlink: Permission denied)"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/638/exe (readlink: Permission denied)"}, {"command": "xfs-data/", "pid": 638, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/638/fd (opendir: Permission denied)"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/641/cwd (readlink: Permission denied)"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/641/root (readlink: Permission denied)"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/641/exe (readlink: Permission denied)"}, {"command": "xfs-conv/", "pid": 641, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/641/fd (opendir: Permission denied)"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/646/cwd (readlink: Permission denied)"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/646/root (readlink: Permission denied)"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/646/exe (readlink: Permission denied)"}, {"command": "xfs-cil/s", "pid": 646, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/646/fd (opendir: Permission denied)"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/651/cwd (readlink: Permission denied)"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/651/root (readlink: Permission denied)"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/651/exe (readlink: Permission denied)"}, {"command": "xfs-recla", "pid": 651, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/651/fd (opendir: Permission denied)"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/654/cwd (readlink: Permission denied)"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/654/root (readlink: Permission denied)"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/654/exe (readlink: Permission denied)"}, {"command": "xfs-log/s", "pid": 654, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/654/fd (opendir: Permission denied)"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/658/cwd (readlink: Permission denied)"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/658/root (readlink: Permission denied)"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/658/exe (readlink: Permission denied)"}, {"command": "xfs-eofbl", "pid": 658, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/658/fd (opendir: Permission denied)"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/667/cwd (readlink: Permission denied)"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/667/root (readlink: Permission denied)"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/667/exe (readlink: Permission denied)"}, {"command": "xfsaild/s", "pid": 667, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/667/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/675/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/675/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/675/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 675, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/675/fd (opendir: Permission denied)"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/677/cwd (readlink: Permission denied)"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/677/root (readlink: Permission denied)"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/677/exe (readlink: Permission denied)"}, {"command": "hci0", "pid": 677, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/677/fd (opendir: Permission denied)"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/678/cwd (readlink: Permission denied)"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/678/root (readlink: Permission denied)"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/678/exe (readlink: Permission denied)"}, {"command": "hci0", "pid": 678, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/678/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/681/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/681/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/681/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 681, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/681/fd (opendir: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/756/cwd (readlink: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/756/root (readlink: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/756/exe (readlink: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/756/fd (opendir: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/756/task/757/cwd (readlink: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/756/task/757/root (readlink: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/756/task/757/exe (readlink: Permission denied)"}, {"command": "auditd", "pid": 756, "tid": 757, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/756/task/757/fd (opendir: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/778/cwd (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/778/root (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/778/exe (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": null, "user": "dbus", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/778/fd (opendir: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/778/task/779/cwd (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/778/task/779/root (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/778/task/779/exe (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 778, "tid": 779, "user": "dbus", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/778/task/779/fd (opendir: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/cwd (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/root (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/exe (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": null, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/802/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/802/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/802/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 781, "tid": 802, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/task/802/fd (opendir: Permission denied)"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/805/cwd (readlink: Permission denied)"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/805/root (readlink: Permission denied)"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/805/exe (readlink: Permission denied)"}, {"command": "gdbus", "pid": 781, "tid": 805, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/task/805/fd (opendir: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/808/cwd (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/808/root (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/808/exe (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 808, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/task/808/fd (opendir: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/812/cwd (readlink: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/812/root (readlink: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/812/exe (readlink: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 812, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/task/812/fd (opendir: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/814/cwd (readlink: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/814/root (readlink: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/814/exe (readlink: Permission denied)"}, {"command": "JS", "pid": 781, "tid": 814, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/task/814/fd (opendir: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/818/cwd (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/818/root (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/781/task/818/exe (readlink: Permission denied)"}, {"command": "polkitd", "pid": 781, "tid": 818, "user": "polkitd", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/781/task/818/fd (opendir: Permission denied)"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/784/cwd (readlink: Permission denied)"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/784/root (readlink: Permission denied)"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/784/exe (readlink: Permission denied)"}, {"command": "systemd-l", "pid": 784, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/784/fd (opendir: Permission denied)"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/792/cwd (readlink: Permission denied)"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/792/root (readlink: Permission denied)"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/792/exe (readlink: Permission denied)"}, {"command": "crond", "pid": 792, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/792/fd (opendir: Permission denied)"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/795/cwd (readlink: Permission denied)"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/795/root (readlink: Permission denied)"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/795/exe (readlink: Permission denied)"}, {"command": "chronyd", "pid": 795, "tid": null, "user": "chrony", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/795/fd (opendir: Permission denied)"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/815/cwd (readlink: Permission denied)"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/815/root (readlink: Permission denied)"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/815/exe (readlink: Permission denied)"}, {"command": "agetty", "pid": 815, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/815/fd (opendir: Permission denied)"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/817/cwd (readlink: Permission denied)"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/817/root (readlink: Permission denied)"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/817/exe (readlink: Permission denied)"}, {"command": "login", "pid": 817, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/817/fd (opendir: Permission denied)"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/823/cwd (readlink: Permission denied)"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/823/root (readlink: Permission denied)"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/823/exe (readlink: Permission denied)"}, {"command": "firewalld", "pid": 823, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/823/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/823/task/1013/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/823/task/1013/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/823/task/1013/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 823, "tid": 1013, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/823/task/1013/fd (opendir: Permission denied)"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/cwd (readlink: Permission denied)"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/root (readlink: Permission denied)"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/exe (readlink: Permission denied)"}, {"command": "NetworkMa", "pid": 865, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/865/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/task/875/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/task/875/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/task/875/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 865, "tid": 875, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/865/task/875/fd (opendir: Permission denied)"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/task/878/cwd (readlink: Permission denied)"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/task/878/root (readlink: Permission denied)"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/865/task/878/exe (readlink: Permission denied)"}, {"command": "gdbus", "pid": 865, "tid": 878, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/865/task/878/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1214/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1214/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1214/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1214, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1214/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1215/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1215/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1215/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1215, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1215/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1217/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1217/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1217/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1217, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1217/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1231/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1231/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1231/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1231, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1231/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1260/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1260/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1260/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1260, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1260/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1449/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1449/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1449/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1449, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1449/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1450/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1450/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1450/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1450, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1450/fd (opendir: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1451/cwd (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1451/root (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1451/exe (readlink: Permission denied)"}, {"command": "dockerd-c", "pid": 1205, "tid": 1451, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1205/task/1451/fd (opendir: Permission denied)"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1206/cwd (readlink: Permission denied)"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1206/root (readlink: Permission denied)"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1206/exe (readlink: Permission denied)"}, {"command": "sshd", "pid": 1206, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1206/fd (opendir: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/cwd (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/root (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/exe (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1207/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1719/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1719/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1719/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 1207, "tid": 1719, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1719/fd (opendir: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1720/cwd (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1720/root (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1720/exe (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1720, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1720/fd (opendir: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1725/cwd (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1725/root (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1725/exe (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1725, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1725/fd (opendir: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1727/cwd (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1727/root (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1727/exe (readlink: Permission denied)"}, {"command": "tuned", "pid": 1207, "tid": 1727, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1207/task/1727/fd (opendir: Permission denied)"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/cwd (readlink: Permission denied)"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/root (readlink: Permission denied)"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/exe (readlink: Permission denied)"}, {"command": "rsyslogd", "pid": 1209, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1209/fd (opendir: Permission denied)"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1212/cwd (readlink: Permission denied)"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1212/root (readlink: Permission denied)"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1212/exe (readlink: Permission denied)"}, {"command": "in:imjour", "pid": 1209, "tid": 1212, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1212/fd (opendir: Permission denied)"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1213/cwd (readlink: Permission denied)"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1213/root (readlink: Permission denied)"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1213/exe (readlink: Permission denied)"}, {"command": "rs:main", "pid": 1209, "tid": 1213, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1209/task/1213/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1272/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1272/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1272/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1272, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1272/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1273/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1273/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1273/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1273, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1273/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1275/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1275/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1275/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1275, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1275/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1279/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1279/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1279/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1279, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1279/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1280/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1280/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1280/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1280, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1280/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1281/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1281/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1281/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1281, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1281/fd (opendir: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1282/cwd (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1282/root (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1282/exe (readlink: Permission denied)"}, {"command": "docker-co", "pid": 1256, "tid": 1282, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1256/task/1282/fd (opendir: Permission denied)"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1469/cwd (readlink: Permission denied)"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1469/root (readlink: Permission denied)"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1469/exe (readlink: Permission denied)"}, {"command": "master", "pid": 1469, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1469/fd (opendir: Permission denied)"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1474/cwd (readlink: Permission denied)"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1474/root (readlink: Permission denied)"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1474/exe (readlink: Permission denied)"}, {"command": "qmgr", "pid": 1474, "tid": null, "user": "postfix", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1474/fd (opendir: Permission denied)"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 6, "node": 503040, "name": "/home/kbrazil/git"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 964600, "node": 50332501, "name": "/usr/bin/bash"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 174576, "node": 9816, "name": "/usr/lib64/libtinfo.so.5.9"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1835, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "4,64", "size_off": null, "node": 8462, "name": "/dev/ttyS0"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1939/cwd (readlink: Permission denied)"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1939/root (readlink: Permission denied)"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1939/exe (readlink: Permission denied)"}, {"command": "dhclient", "pid": 1939, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1939/fd (opendir: Permission denied)"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4262/cwd (readlink: Permission denied)"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4262/root (readlink: Permission denied)"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4262/exe (readlink: Permission denied)"}, {"command": "pickup", "pid": 4262, "tid": null, "user": "postfix", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4262/fd (opendir: Permission denied)"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4314/cwd (readlink: Permission denied)"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4314/root (readlink: Permission denied)"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4314/exe (readlink: Permission denied)"}, {"command": "sshd", "pid": 4314, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4314/fd (opendir: Permission denied)"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4318/cwd (readlink: Permission denied)"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4318/root (readlink: Permission denied)"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4318/exe (readlink: Permission denied)"}, {"command": "sshd", "pid": 4318, "tid": null, "user": "kbrazil", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4318/fd (opendir: Permission denied)"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 964600, "node": 50332501, "name": "/usr/bin/bash"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 61624, "node": 503058, "name": "/usr/lib64/libnss_files-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 174576, "node": 9816, "name": "/usr/lib64/libtinfo.so.5.9"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 4319, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4587/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4587/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4587/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4587, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4587/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4715/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4715/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4715/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4715, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4715/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4716/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4716/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4716/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4716, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4716/fd (opendir: Permission denied)"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 964600, "node": 50332501, "name": "/usr/bin/bash"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 174576, "node": 9816, "name": "/usr/lib64/libtinfo.so.5.9"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 26254, "node": 16789060, "name": "/usr/lib64/gconv/gconv-modules.cache"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 4720, "tid": null, "user": "kbrazil", "fd": "255r", "type": "REG", "device": "253,0", "size_off": 1568, "node": 16993585, "name": "/home/kbrazil/testfiles/tests.sh"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6485, "name": "/dev/null"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4768, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4769, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4770, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 33128, "node": 50338469, "name": "/usr/bin/sleep"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 4771, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 154184, "node": 1092, "name": "/usr/sbin/lsof"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "1w", "type": "REG", "device": "253,0", "size_off": 0, "node": 16825878, "name": "/home/kbrazil/testfiles/lsof.out"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "3r", "type": "DIR", "device": "0,3", "size_off": 0, "node": 1, "name": "/proc"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "4r", "type": "DIR", "device": "0,3", "size_off": 0, "node": 49414, "name": "/proc/4777/fd"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "5w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49419, "name": "pipe"}, {"command": "lsof", "pid": 4777, "tid": null, "user": "kbrazil", "fd": "6r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49420, "name": "pipe"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "253,0", "size_off": 4096, "node": 16790392, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "253,0", "size_off": 224, "node": 64, "name": "/"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "253,0", "size_off": 154184, "node": 1092, "name": "/usr/sbin/lsof"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 106075056, "node": 16781164, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 142232, "node": 503071, "name": "/usr/lib64/libpthread-2.17.so"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 19288, "node": 34141, "name": "/usr/lib64/libdl-2.17.so"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 402384, "node": 9847, "name": "/usr/lib64/libpcre.so.1.2.0"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 2156160, "node": 24399, "name": "/usr/lib64/libc-2.17.so"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 155784, "node": 9857, "name": "/usr/lib64/libselinux.so.1"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "253,0", "size_off": 163400, "node": 7824, "name": "/usr/lib64/ld-2.17.so"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "4r", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49419, "name": "pipe"}, {"command": "lsof", "pid": 4778, "tid": null, "user": "kbrazil", "fd": "7w", "type": "FIFO", "device": "0,9", "size_off": null, "node": 49420, "name": "pipe"}] +[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/cwd (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/root (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/exe (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1/fd (opendir: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/cwd (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/root (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/2/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/root (readlink: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/5/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":5,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/5/fd (opendir: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/cwd (readlink: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/root (readlink: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe (readlink: Permission denied)"},{"command":"ksoftirqd","pid":6,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/6/fd (opendir: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/cwd (readlink: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/root (readlink: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe (readlink: Permission denied)"},{"command":"migration","pid":7,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/7/fd (opendir: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/cwd (readlink: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/root (readlink: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe (readlink: Permission denied)"},{"command":"rcu_bh","pid":8,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/8/fd (opendir: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/cwd (readlink: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/root (readlink: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe (readlink: Permission denied)"},{"command":"rcu_sched","pid":9,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/9/fd (opendir: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/cwd (readlink: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/root (readlink: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe (readlink: Permission denied)"},{"command":"lru-add-d","pid":10,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/10/fd (opendir: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/cwd (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/root (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/11/fd (opendir: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/cwd (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/root (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/13/fd (opendir: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/cwd (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/root (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/14/fd (opendir: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/cwd (readlink: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/root (readlink: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe (readlink: Permission denied)"},{"command":"khungtask","pid":15,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15/fd (opendir: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/cwd (readlink: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/root (readlink: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe (readlink: Permission denied)"},{"command":"writeback","pid":16,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/16/fd (opendir: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/cwd (readlink: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/root (readlink: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe (readlink: Permission denied)"},{"command":"kintegrit","pid":17,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/17/fd (opendir: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/cwd (readlink: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/root (readlink: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe (readlink: Permission denied)"},{"command":"bioset","pid":18,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/18/fd (opendir: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/cwd (readlink: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/root (readlink: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe (readlink: Permission denied)"},{"command":"bioset","pid":19,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/19/fd (opendir: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/cwd (readlink: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/root (readlink: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe (readlink: Permission denied)"},{"command":"bioset","pid":20,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/20/fd (opendir: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/cwd (readlink: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/root (readlink: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe (readlink: Permission denied)"},{"command":"kblockd","pid":21,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/21/fd (opendir: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/cwd (readlink: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/root (readlink: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe (readlink: Permission denied)"},{"command":"md","pid":22,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/22/fd (opendir: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/cwd (readlink: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/root (readlink: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe (readlink: Permission denied)"},{"command":"edac-poll","pid":23,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23/fd (opendir: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/cwd (readlink: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/root (readlink: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe (readlink: Permission denied)"},{"command":"watchdogd","pid":24,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/24/fd (opendir: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/cwd (readlink: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/root (readlink: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe (readlink: Permission denied)"},{"command":"kswapd0","pid":30,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/30/fd (opendir: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/cwd (readlink: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/root (readlink: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/31/exe (readlink: Permission denied)"},{"command":"ksmd","pid":31,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/31/fd (opendir: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/cwd (readlink: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/root (readlink: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/32/exe (readlink: Permission denied)"},{"command":"khugepage","pid":32,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/32/fd (opendir: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/cwd (readlink: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/root (readlink: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/33/exe (readlink: Permission denied)"},{"command":"crypto","pid":33,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/33/fd (opendir: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/cwd (readlink: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/root (readlink: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/41/exe (readlink: Permission denied)"},{"command":"kthrotld","pid":41,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/41/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/root (readlink: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/42/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":42,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/42/fd (opendir: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/cwd (readlink: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/root (readlink: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/43/exe (readlink: Permission denied)"},{"command":"kmpath_rd","pid":43,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/43/fd (opendir: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/cwd (readlink: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/root (readlink: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/44/exe (readlink: Permission denied)"},{"command":"kaluad","pid":44,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/44/fd (opendir: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/cwd (readlink: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/root (readlink: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/45/exe (readlink: Permission denied)"},{"command":"kpsmoused","pid":45,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/45/fd (opendir: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/cwd (readlink: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/root (readlink: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/47/exe (readlink: Permission denied)"},{"command":"ipv6_addr","pid":47,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/47/fd (opendir: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/cwd (readlink: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/root (readlink: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/60/exe (readlink: Permission denied)"},{"command":"deferwq","pid":60,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/60/fd (opendir: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/cwd (readlink: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/root (readlink: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/95/exe (readlink: Permission denied)"},{"command":"kauditd","pid":95,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/95/fd (opendir: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/cwd (readlink: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/root (readlink: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/272/exe (readlink: Permission denied)"},{"command":"mpt_poll_","pid":272,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/272/fd (opendir: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/cwd (readlink: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/root (readlink: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/273/exe (readlink: Permission denied)"},{"command":"mpt/0","pid":273,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/273/fd (opendir: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/cwd (readlink: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/root (readlink: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/274/exe (readlink: Permission denied)"},{"command":"ata_sff","pid":274,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/274/fd (opendir: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/cwd (readlink: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/root (readlink: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/275/exe (readlink: Permission denied)"},{"command":"nfit","pid":275,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/275/fd (opendir: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/cwd (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/root (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/291/exe (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":291,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/291/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":295,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/295/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/330/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":330,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/330/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/331/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":331,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/331/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/339/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":339,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/339/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/346/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":346,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/346/fd (opendir: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/cwd (readlink: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/root (readlink: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/357/exe (readlink: Permission denied)"},{"command":"irq/16-vm","pid":357,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/357/fd (opendir: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/cwd (readlink: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/root (readlink: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/358/exe (readlink: Permission denied)"},{"command":"ttm_swap","pid":358,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/358/fd (opendir: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/cwd (readlink: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/root (readlink: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/431/exe (readlink: Permission denied)"},{"command":"kdmflush","pid":431,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/431/fd (opendir: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/cwd (readlink: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/root (readlink: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/432/exe (readlink: Permission denied)"},{"command":"bioset","pid":432,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/432/fd (opendir: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/cwd (readlink: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/root (readlink: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/442/exe (readlink: Permission denied)"},{"command":"kdmflush","pid":442,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/442/fd (opendir: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/cwd (readlink: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/root (readlink: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/443/exe (readlink: Permission denied)"},{"command":"bioset","pid":443,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/443/fd (opendir: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/cwd (readlink: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/root (readlink: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/455/exe (readlink: Permission denied)"},{"command":"bioset","pid":455,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/455/fd (opendir: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/cwd (readlink: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/root (readlink: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/456/exe (readlink: Permission denied)"},{"command":"xfsalloc","pid":456,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/456/fd (opendir: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/cwd (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/root (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/457/exe (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":457,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/457/fd (opendir: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/cwd (readlink: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/root (readlink: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/458/exe (readlink: Permission denied)"},{"command":"xfs-buf/d","pid":458,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/458/fd (opendir: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/cwd (readlink: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/root (readlink: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/459/exe (readlink: Permission denied)"},{"command":"xfs-data/","pid":459,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/459/fd (opendir: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/cwd (readlink: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/root (readlink: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/460/exe (readlink: Permission denied)"},{"command":"xfs-conv/","pid":460,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/460/fd (opendir: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/cwd (readlink: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/root (readlink: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/461/exe (readlink: Permission denied)"},{"command":"xfs-cil/d","pid":461,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/461/fd (opendir: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/cwd (readlink: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/root (readlink: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/462/exe (readlink: Permission denied)"},{"command":"xfs-recla","pid":462,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/462/fd (opendir: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/cwd (readlink: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/root (readlink: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/463/exe (readlink: Permission denied)"},{"command":"xfs-log/d","pid":463,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/463/fd (opendir: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/cwd (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/root (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/464/exe (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":464,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/464/fd (opendir: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/cwd (readlink: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/root (readlink: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/465/exe (readlink: Permission denied)"},{"command":"xfsaild/d","pid":465,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/465/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/root (readlink: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/466/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":466,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/466/fd (opendir: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/544/cwd (readlink: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/544/root (readlink: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/544/exe (readlink: Permission denied)"},{"command":"systemd-j","pid":544,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/544/fd (opendir: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/560/cwd (readlink: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/560/root (readlink: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/560/exe (readlink: Permission denied)"},{"command":"lvmetad","pid":560,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/560/fd (opendir: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/577/cwd (readlink: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/577/root (readlink: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/577/exe (readlink: Permission denied)"},{"command":"systemd-u","pid":577,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/577/fd (opendir: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/cwd (readlink: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/root (readlink: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/629/exe (readlink: Permission denied)"},{"command":"xfs-buf/s","pid":629,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/629/fd (opendir: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/cwd (readlink: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/root (readlink: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/638/exe (readlink: Permission denied)"},{"command":"xfs-data/","pid":638,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/638/fd (opendir: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/cwd (readlink: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/root (readlink: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/641/exe (readlink: Permission denied)"},{"command":"xfs-conv/","pid":641,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/641/fd (opendir: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/cwd (readlink: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/root (readlink: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/646/exe (readlink: Permission denied)"},{"command":"xfs-cil/s","pid":646,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/646/fd (opendir: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/cwd (readlink: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/root (readlink: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/651/exe (readlink: Permission denied)"},{"command":"xfs-recla","pid":651,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/651/fd (opendir: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/cwd (readlink: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/root (readlink: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/654/exe (readlink: Permission denied)"},{"command":"xfs-log/s","pid":654,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/654/fd (opendir: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/cwd (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/root (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/658/exe (readlink: Permission denied)"},{"command":"xfs-eofbl","pid":658,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/658/fd (opendir: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/cwd (readlink: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/root (readlink: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/667/exe (readlink: Permission denied)"},{"command":"xfsaild/s","pid":667,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/667/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/root (readlink: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/675/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":675,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/675/fd (opendir: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/cwd (readlink: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/root (readlink: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/677/exe (readlink: Permission denied)"},{"command":"hci0","pid":677,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/677/fd (opendir: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/cwd (readlink: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/root (readlink: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/678/exe (readlink: Permission denied)"},{"command":"hci0","pid":678,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/678/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/root (readlink: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/681/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":681,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/681/fd (opendir: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/cwd (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/root (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/exe (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/756/fd (opendir: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/cwd (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/root (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/exe (readlink: Permission denied)"},{"command":"auditd","pid":756,"tid":757,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/756/task/757/fd (opendir: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/cwd (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/root (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/exe (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":null,"user":"dbus","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/778/fd (opendir: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/cwd (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/root (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/exe (readlink: Permission denied)"},{"command":"dbus-daem","pid":778,"tid":779,"user":"dbus","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/778/task/779/fd (opendir: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/root (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/exe (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":null,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/fd (opendir: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/cwd (readlink: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/root (readlink: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/exe (readlink: Permission denied)"},{"command":"gmain","pid":781,"tid":802,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/802/fd (opendir: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/root (readlink: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/exe (readlink: Permission denied)"},{"command":"gdbus","pid":781,"tid":805,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/805/fd (opendir: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/root (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/exe (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":808,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/808/fd (opendir: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/cwd (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/root (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/exe (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":812,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/812/fd (opendir: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/cwd (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/root (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/exe (readlink: Permission denied)"},{"command":"JS","pid":781,"tid":814,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/814/fd (opendir: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/root (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/exe (readlink: Permission denied)"},{"command":"polkitd","pid":781,"tid":818,"user":"polkitd","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/781/task/818/fd (opendir: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/784/cwd (readlink: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/784/root (readlink: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/784/exe (readlink: Permission denied)"},{"command":"systemd-l","pid":784,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/784/fd (opendir: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/792/cwd (readlink: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/792/root (readlink: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/792/exe (readlink: Permission denied)"},{"command":"crond","pid":792,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/792/fd (opendir: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/795/cwd (readlink: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/795/root (readlink: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/795/exe (readlink: Permission denied)"},{"command":"chronyd","pid":795,"tid":null,"user":"chrony","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/795/fd (opendir: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/815/cwd (readlink: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/815/root (readlink: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/815/exe (readlink: Permission denied)"},{"command":"agetty","pid":815,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/815/fd (opendir: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/817/cwd (readlink: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/817/root (readlink: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/817/exe (readlink: Permission denied)"},{"command":"login","pid":817,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/817/fd (opendir: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/cwd (readlink: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/root (readlink: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/exe (readlink: Permission denied)"},{"command":"firewalld","pid":823,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/823/fd (opendir: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/cwd (readlink: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/root (readlink: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/exe (readlink: Permission denied)"},{"command":"gmain","pid":823,"tid":1013,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/823/task/1013/fd (opendir: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/cwd (readlink: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/root (readlink: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/exe (readlink: Permission denied)"},{"command":"NetworkMa","pid":865,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/865/fd (opendir: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/cwd (readlink: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/root (readlink: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/exe (readlink: Permission denied)"},{"command":"gmain","pid":865,"tid":875,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/865/task/875/fd (opendir: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/root (readlink: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/exe (readlink: Permission denied)"},{"command":"gdbus","pid":865,"tid":878,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/865/task/878/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1214,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1214/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1215,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1215/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1217,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1217/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1231,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1231/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1260,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1260/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1449,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1449/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1450,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1450/fd (opendir: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/cwd (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/root (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/exe (readlink: Permission denied)"},{"command":"dockerd-c","pid":1205,"tid":1451,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1205/task/1451/fd (opendir: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1206/cwd (readlink: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1206/root (readlink: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1206/exe (readlink: Permission denied)"},{"command":"sshd","pid":1206,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1206/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/fd (opendir: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/cwd (readlink: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/root (readlink: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/exe (readlink: Permission denied)"},{"command":"gmain","pid":1207,"tid":1719,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1719/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1720,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1720/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1725,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1725/fd (opendir: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/cwd (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/root (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/exe (readlink: Permission denied)"},{"command":"tuned","pid":1207,"tid":1727,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1207/task/1727/fd (opendir: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/cwd (readlink: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/root (readlink: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/exe (readlink: Permission denied)"},{"command":"rsyslogd","pid":1209,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1209/fd (opendir: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/cwd (readlink: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/root (readlink: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/exe (readlink: Permission denied)"},{"command":"in:imjour","pid":1209,"tid":1212,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1212/fd (opendir: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/cwd (readlink: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/root (readlink: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/exe (readlink: Permission denied)"},{"command":"rs:main","pid":1209,"tid":1213,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1209/task/1213/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1272,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1272/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1273,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1273/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1275,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1275/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1279,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1279/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1280,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1280/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1281,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1281/fd (opendir: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/cwd (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/root (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/exe (readlink: Permission denied)"},{"command":"docker-co","pid":1256,"tid":1282,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1256/task/1282/fd (opendir: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1469/cwd (readlink: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1469/root (readlink: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1469/exe (readlink: Permission denied)"},{"command":"master","pid":1469,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1469/fd (opendir: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1474/cwd (readlink: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1474/root (readlink: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1474/exe (readlink: Permission denied)"},{"command":"qmgr","pid":1474,"tid":null,"user":"postfix","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1474/fd (opendir: Permission denied)"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":6,"node":503040,"name":"/home/kbrazil/git"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"bash","pid":1835,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":8462,"name":"/dev/ttyS0"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1939/cwd (readlink: Permission denied)"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1939/root (readlink: Permission denied)"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1939/exe (readlink: Permission denied)"},{"command":"dhclient","pid":1939,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1939/fd (opendir: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4262/cwd (readlink: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4262/root (readlink: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4262/exe (readlink: Permission denied)"},{"command":"pickup","pid":4262,"tid":null,"user":"postfix","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4262/fd (opendir: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4314/cwd (readlink: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4314/root (readlink: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4314/exe (readlink: Permission denied)"},{"command":"sshd","pid":4314,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4314/fd (opendir: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4318/cwd (readlink: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4318/root (readlink: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4318/exe (readlink: Permission denied)"},{"command":"sshd","pid":4318,"tid":null,"user":"kbrazil","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4318/fd (opendir: Permission denied)"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":61624,"node":503058,"name":"/usr/lib64/libnss_files-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":4319,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4587/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4587,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4587/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4715/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4715,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4715/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4716/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4716,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4716/fd (opendir: Permission denied)"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":964600,"node":50332501,"name":"/usr/bin/bash"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":174576,"node":9816,"name":"/usr/lib64/libtinfo.so.5.9"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":26254,"node":16789060,"name":"/usr/lib64/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":4720,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"253,0","size_off":1568,"node":16993585,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6485,"name":"/dev/null"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4768,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4769,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4770,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":33128,"node":50338469,"name":"/usr/bin/sleep"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":4771,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"1w","type":"REG","device":"253,0","size_off":0,"node":16825878,"name":"/home/kbrazil/testfiles/lsof.out"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"3r","type":"DIR","device":"0,3","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"4r","type":"DIR","device":"0,3","size_off":0,"node":49414,"name":"/proc/4777/fd"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"5w","type":"FIFO","device":"0,9","size_off":0,"node":49419,"name":"pipe"},{"command":"lsof","pid":4777,"tid":null,"user":"kbrazil","fd":"6r","type":"FIFO","device":"0,9","size_off":0,"node":49420,"name":"pipe"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"253,0","size_off":4096,"node":16790392,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"253,0","size_off":224,"node":64,"name":"/"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"253,0","size_off":154184,"node":1092,"name":"/usr/sbin/lsof"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":106075056,"node":16781164,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":142232,"node":503071,"name":"/usr/lib64/libpthread-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":19288,"node":34141,"name":"/usr/lib64/libdl-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":402384,"node":9847,"name":"/usr/lib64/libpcre.so.1.2.0"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":2156160,"node":24399,"name":"/usr/lib64/libc-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":155784,"node":9857,"name":"/usr/lib64/libselinux.so.1"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"253,0","size_off":163400,"node":7824,"name":"/usr/lib64/ld-2.17.so"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"4r","type":"FIFO","device":"0,9","size_off":0,"node":49419,"name":"pipe"},{"command":"lsof","pid":4778,"tid":null,"user":"kbrazil","fd":"7w","type":"FIFO","device":"0,9","size_off":0,"node":49420,"name":"pipe"}] diff --git a/tests/fixtures/osx-10.11.6/ls-alh.json b/tests/fixtures/osx-10.11.6/ls-alh.json index 8fc732e9..a788cde3 100644 --- a/tests/fixtures/osx-10.11.6/ls-alh.json +++ b/tests/fixtures/osx-10.11.6/ls-alh.json @@ -1 +1 @@ -[{"filename": ".", "flags": "drwxr-xr-x", "links": 33, "owner": "root", "group": "wheel", "size": null, "date": "Oct 2 10:55"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 33, "owner": "root", "group": "wheel", "size": null, "date": "Oct 2 10:55"}, {"filename": ".DS_Store", "flags": "-rw-rw-r--", "links": 1, "owner": "root", "group": "admin", "size": null, "date": "Nov 8 2018"}, {"filename": ".DocumentRevisions-V100", "flags": "d--x--x--x", "links": 9, "owner": "root", "group": "wheel", "size": null, "date": "Dec 2 22:46"}, {"filename": ".MobileBackups", "flags": "drwxr-xr-x+", "links": 3, "owner": "root", "group": "wheel", "size": null, "date": "Oct 2 10:56"}, {"filename": ".Spotlight-V100", "flags": "drwx------", "links": 5, "owner": "root", "group": "wheel", "size": null, "date": "Jul 8 2011"}, {"filename": ".Trashes", "flags": "d-wx-wx-wt", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Nov 10 2014"}, {"filename": ".file", "flags": "----------", "links": 1, "owner": "root", "group": "admin", "size": null, "date": "Feb 25 2016"}, {"filename": ".fseventsd", "flags": "drwx------", "links": 6, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 11:10"}, {"filename": ".vol", "flags": "drwxr-xr-x@", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Apr 19 2016"}, {"filename": "Applications", "flags": "drwxrwxr-x+", "links": 70, "owner": "root", "group": "admin", "size": null, "date": "Dec 12 11:09"}, {"filename": "Library", "flags": "drwxr-xr-x+", "links": 64, "owner": "root", "group": "wheel", "size": null, "date": "Jun 7 2018"}, {"filename": "Network", "flags": "drwxr-xr-x@", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Apr 19 2016"}, {"filename": "System", "flags": "drwxr-xr-x@", "links": 4, "owner": "root", "group": "wheel", "size": null, "date": "Jul 18 2018"}, {"filename": "User Guides And Information", "link_to": "/Library/Documentation/User Guides and Information.localized", "flags": "lrwxr-xr-x", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Jan 25 2012"}, {"filename": "Users", "flags": "drwxr-xr-x", "links": 5, "owner": "root", "group": "admin", "size": null, "date": "Apr 19 2016"}, {"filename": "Volumes", "flags": "drwxrwxrwt@", "links": 5, "owner": "root", "group": "admin", "size": null, "date": "Dec 12 11:00"}, {"filename": "bin", "flags": "drwxr-xr-x@", "links": 39, "owner": "root", "group": "wheel", "size": null, "date": "Jul 18 2018"}, {"filename": "cores", "flags": "drwxrwxr-t@", "links": 2, "owner": "root", "group": "admin", "size": null, "date": "Apr 19 2016"}, {"filename": "dev", "flags": "dr-xr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": null, "date": "Dec 2 22:45"}, {"filename": "etc", "link_to": "private/etc", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Apr 19 2016"}, {"filename": "home", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Dec 2 22:45"}, {"filename": "installer.failurerequests", "flags": "-rw-r--r--@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Aug 2 2015"}, {"filename": "lost+found", "flags": "drwxrwxrwt@", "links": 3, "owner": "root", "group": "wheel", "size": null, "date": "Jul 29 2017"}, {"filename": "net", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Dec 2 22:45"}, {"filename": "private", "flags": "drwxr-xr-x@", "links": 6, "owner": "root", "group": "wheel", "size": null, "date": "Apr 19 2016"}, {"filename": "recover", "flags": "drwxr-xr-x", "links": 3, "owner": "kelly", "group": "wheel", "size": null, "date": "Aug 4 2012"}, {"filename": "sbin", "flags": "drwxr-xr-x@", "links": 59, "owner": "root", "group": "wheel", "size": null, "date": "Jul 18 2018"}, {"filename": "tmp", "link_to": "private/tmp", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Apr 19 2016"}, {"filename": "usr", "flags": "drwxr-xr-x@", "links": 13, "owner": "root", "group": "wheel", "size": null, "date": "Jun 7 2018"}, {"filename": "var", "link_to": "private/var", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Apr 19 2016"}] +[{"filename":".","flags":"drwxr-xr-x","links":33,"owner":"root","group":"wheel","size":1,"date":"Oct 2 10:55"},{"filename":"..","flags":"drwxr-xr-x","links":33,"owner":"root","group":"wheel","size":1,"date":"Oct 2 10:55"},{"filename":".DS_Store","flags":"-rw-rw-r--","links":1,"owner":"root","group":"admin","size":6,"date":"Nov 8 2018"},{"filename":".DocumentRevisions-V100","flags":"d--x--x--x","links":9,"owner":"root","group":"wheel","size":306,"date":"Dec 2 22:46"},{"filename":".MobileBackups","flags":"drwxr-xr-x+","links":3,"owner":"root","group":"wheel","size":102,"date":"Oct 2 10:56"},{"filename":".Spotlight-V100","flags":"drwx------","links":5,"owner":"root","group":"wheel","size":170,"date":"Jul 8 2011"},{"filename":".Trashes","flags":"d-wx-wx-wt","links":2,"owner":"root","group":"wheel","size":68,"date":"Nov 10 2014"},{"filename":".file","flags":"----------","links":1,"owner":"root","group":"admin","size":0,"date":"Feb 25 2016"},{"filename":".fseventsd","flags":"drwx------","links":6,"owner":"root","group":"wheel","size":204,"date":"Dec 12 11:10"},{"filename":".vol","flags":"drwxr-xr-x@","links":2,"owner":"root","group":"wheel","size":68,"date":"Apr 19 2016"},{"filename":"Applications","flags":"drwxrwxr-x+","links":70,"owner":"root","group":"admin","size":2,"date":"Dec 12 11:09"},{"filename":"Library","flags":"drwxr-xr-x+","links":64,"owner":"root","group":"wheel","size":2,"date":"Jun 7 2018"},{"filename":"Network","flags":"drwxr-xr-x@","links":2,"owner":"root","group":"wheel","size":68,"date":"Apr 19 2016"},{"filename":"System","flags":"drwxr-xr-x@","links":4,"owner":"root","group":"wheel","size":136,"date":"Jul 18 2018"},{"filename":"User Guides And Information","link_to":"/Library/Documentation/User Guides and Information.localized","flags":"lrwxr-xr-x","links":1,"owner":"root","group":"wheel","size":60,"date":"Jan 25 2012"},{"filename":"Users","flags":"drwxr-xr-x","links":5,"owner":"root","group":"admin","size":170,"date":"Apr 19 2016"},{"filename":"Volumes","flags":"drwxrwxrwt@","links":5,"owner":"root","group":"admin","size":170,"date":"Dec 12 11:00"},{"filename":"bin","flags":"drwxr-xr-x@","links":39,"owner":"root","group":"wheel","size":1,"date":"Jul 18 2018"},{"filename":"cores","flags":"drwxrwxr-t@","links":2,"owner":"root","group":"admin","size":68,"date":"Apr 19 2016"},{"filename":"dev","flags":"dr-xr-xr-x","links":3,"owner":"root","group":"wheel","size":4,"date":"Dec 2 22:45"},{"filename":"etc","link_to":"private/etc","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"Apr 19 2016"},{"filename":"home","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 2 22:45"},{"filename":"installer.failurerequests","flags":"-rw-r--r--@","links":1,"owner":"root","group":"wheel","size":313,"date":"Aug 2 2015"},{"filename":"lost+found","flags":"drwxrwxrwt@","links":3,"owner":"root","group":"wheel","size":102,"date":"Jul 29 2017"},{"filename":"net","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 2 22:45"},{"filename":"private","flags":"drwxr-xr-x@","links":6,"owner":"root","group":"wheel","size":204,"date":"Apr 19 2016"},{"filename":"recover","flags":"drwxr-xr-x","links":3,"owner":"kelly","group":"wheel","size":102,"date":"Aug 4 2012"},{"filename":"sbin","flags":"drwxr-xr-x@","links":59,"owner":"root","group":"wheel","size":2,"date":"Jul 18 2018"},{"filename":"tmp","link_to":"private/tmp","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"Apr 19 2016"},{"filename":"usr","flags":"drwxr-xr-x@","links":13,"owner":"root","group":"wheel","size":442,"date":"Jun 7 2018"},{"filename":"var","link_to":"private/var","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"Apr 19 2016"}] diff --git a/tests/fixtures/osx-10.14.6/ls-alh.json b/tests/fixtures/osx-10.14.6/ls-alh.json index 2d5100b3..6103d24c 100644 --- a/tests/fixtures/osx-10.14.6/ls-alh.json +++ b/tests/fixtures/osx-10.14.6/ls-alh.json @@ -1 +1 @@ -[{"filename": ".", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:13"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 34, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:13"}, {"filename": ".DS_Store", "flags": "-rw-rw-r--", "links": 1, "owner": "root", "group": "admin", "size": null, "date": "Jul 25 18:21"}, {"filename": ".DocumentRevisions-V100", "flags": "d--x--x--x", "links": 9, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:14"}, {"filename": ".OSInstallerMessages", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:13"}, {"filename": ".PKInstallSandboxManager", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "May 4 2019"}, {"filename": ".PKInstallSandboxManager-SystemSoftware", "flags": "drwx------", "links": 2, "owner": "root", "group": "admin", "size": null, "date": "Dec 12 00:13"}, {"filename": ".Spotlight-V100", "flags": "drwx------", "links": 5, "owner": "root", "group": "wheel", "size": null, "date": "May 4 2019"}, {"filename": ".file", "flags": "----------", "links": 1, "owner": "root", "group": "admin", "size": null, "date": "Feb 25 2019"}, {"filename": ".fseventsd", "flags": "drwx------", "links": 68, "owner": "kbrazil", "group": "staff", "size": null, "date": "Dec 12 09:47"}, {"filename": ".vol", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Feb 25 2019"}, {"filename": "Applications", "flags": "drwxrwxr-x+", "links": 73, "owner": "root", "group": "admin", "size": null, "date": "Dec 12 00:36"}, {"filename": "Library", "flags": "drwxr-xr-x+", "links": 69, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:35"}, {"filename": "Network", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Feb 25 2019"}, {"filename": "System", "flags": "drwxr-xr-x@", "links": 5, "owner": "root", "group": "wheel", "size": null, "date": "May 3 2019"}, {"filename": "Users", "flags": "drwxr-xr-x", "links": 8, "owner": "root", "group": "admin", "size": null, "date": "Oct 14 07:21"}, {"filename": "Volumes", "flags": "drwxr-xr-x+", "links": 6, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 08:56"}, {"filename": "bin", "flags": "drwxr-xr-x@", "links": 37, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:12"}, {"filename": "cores", "flags": "drwxrwxr-t", "links": 2, "owner": "root", "group": "admin", "size": null, "date": "Feb 25 2019"}, {"filename": "dev", "flags": "dr-xr-xr-x", "links": 3, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:14"}, {"filename": "etc", "link_to": "private/etc", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "May 4 2019"}, {"filename": "home", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 07:41"}, {"filename": "installer.failurerequests", "flags": "-rw-r--r--", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Feb 24 2019"}, {"filename": "net", "flags": "dr-xr-xr-x", "links": 2, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 07:41"}, {"filename": "obj_1_uhYWBO", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Jul 30 21:02"}, {"filename": "obj_2_Q0HjZP", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Jul 30 21:02"}, {"filename": "obj_3_OUvCmT", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Jul 30 21:02"}, {"filename": "obj_4_q0hkvG", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Jul 30 21:02"}, {"filename": "obj_5_qmI8ZT", "flags": "-rw-------", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "Jul 30 21:02"}, {"filename": "private", "flags": "drwxr-xr-x", "links": 6, "owner": "root", "group": "wheel", "size": null, "date": "May 3 2019"}, {"filename": "sbin", "flags": "drwxr-xr-x@", "links": 64, "owner": "root", "group": "wheel", "size": null, "date": "Dec 12 00:12"}, {"filename": "tmp", "link_to": "private/tmp", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "May 4 2019"}, {"filename": "usr", "flags": "drwxr-xr-x@", "links": 9, "owner": "root", "group": "wheel", "size": null, "date": "May 3 2019"}, {"filename": "var", "link_to": "private/var", "flags": "lrwxr-xr-x@", "links": 1, "owner": "root", "group": "wheel", "size": null, "date": "May 4 2019"}] +[{"filename":".","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:13"},{"filename":"..","flags":"drwxr-xr-x","links":34,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:13"},{"filename":".DS_Store","flags":"-rw-rw-r--","links":1,"owner":"root","group":"admin","size":8,"date":"Jul 25 18:21"},{"filename":".DocumentRevisions-V100","flags":"d--x--x--x","links":9,"owner":"root","group":"wheel","size":288,"date":"Dec 12 00:14"},{"filename":".OSInstallerMessages","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":992,"date":"Dec 12 00:13"},{"filename":".PKInstallSandboxManager","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"May 4 2019"},{"filename":".PKInstallSandboxManager-SystemSoftware","flags":"drwx------","links":2,"owner":"root","group":"admin","size":64,"date":"Dec 12 00:13"},{"filename":".Spotlight-V100","flags":"drwx------","links":5,"owner":"root","group":"wheel","size":160,"date":"May 4 2019"},{"filename":".file","flags":"----------","links":1,"owner":"root","group":"admin","size":0,"date":"Feb 25 2019"},{"filename":".fseventsd","flags":"drwx------","links":68,"owner":"kbrazil","group":"staff","size":2,"date":"Dec 12 09:47"},{"filename":".vol","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"Applications","flags":"drwxrwxr-x+","links":73,"owner":"root","group":"admin","size":2,"date":"Dec 12 00:36"},{"filename":"Library","flags":"drwxr-xr-x+","links":69,"owner":"root","group":"wheel","size":2,"date":"Dec 12 00:35"},{"filename":"Network","flags":"drwxr-xr-x","links":2,"owner":"root","group":"wheel","size":64,"date":"Feb 25 2019"},{"filename":"System","flags":"drwxr-xr-x@","links":5,"owner":"root","group":"wheel","size":160,"date":"May 3 2019"},{"filename":"Users","flags":"drwxr-xr-x","links":8,"owner":"root","group":"admin","size":256,"date":"Oct 14 07:21"},{"filename":"Volumes","flags":"drwxr-xr-x+","links":6,"owner":"root","group":"wheel","size":192,"date":"Dec 12 08:56"},{"filename":"bin","flags":"drwxr-xr-x@","links":37,"owner":"root","group":"wheel","size":1,"date":"Dec 12 00:12"},{"filename":"cores","flags":"drwxrwxr-t","links":2,"owner":"root","group":"admin","size":64,"date":"Feb 25 2019"},{"filename":"dev","flags":"dr-xr-xr-x","links":3,"owner":"root","group":"wheel","size":8,"date":"Dec 12 00:14"},{"filename":"etc","link_to":"private/etc","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"home","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"installer.failurerequests","flags":"-rw-r--r--","links":1,"owner":"root","group":"wheel","size":313,"date":"Feb 24 2019"},{"filename":"net","flags":"dr-xr-xr-x","links":2,"owner":"root","group":"wheel","size":1,"date":"Dec 12 07:41"},{"filename":"obj_1_uhYWBO","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":12,"date":"Jul 30 21:02"},{"filename":"obj_2_Q0HjZP","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":9,"date":"Jul 30 21:02"},{"filename":"obj_3_OUvCmT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16,"date":"Jul 30 21:02"},{"filename":"obj_4_q0hkvG","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":16,"date":"Jul 30 21:02"},{"filename":"obj_5_qmI8ZT","flags":"-rw-------","links":1,"owner":"root","group":"wheel","size":9,"date":"Jul 30 21:02"},{"filename":"private","flags":"drwxr-xr-x","links":6,"owner":"root","group":"wheel","size":192,"date":"May 3 2019"},{"filename":"sbin","flags":"drwxr-xr-x@","links":64,"owner":"root","group":"wheel","size":2,"date":"Dec 12 00:12"},{"filename":"tmp","link_to":"private/tmp","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"},{"filename":"usr","flags":"drwxr-xr-x@","links":9,"owner":"root","group":"wheel","size":288,"date":"May 3 2019"},{"filename":"var","link_to":"private/var","flags":"lrwxr-xr-x@","links":1,"owner":"root","group":"wheel","size":11,"date":"May 4 2019"}] diff --git a/tests/fixtures/ubuntu-18.04/ls-alh.json b/tests/fixtures/ubuntu-18.04/ls-alh.json index 2a1b44e7..c815f054 100644 --- a/tests/fixtures/ubuntu-18.04/ls-alh.json +++ b/tests/fixtures/ubuntu-18.04/ls-alh.json @@ -1 +1 @@ -[{"filename": ".", "flags": "drwxr-xr-x", "links": 24, "owner": "root", "group": "root", "size": null, "date": "Oct 24 06:33"}, {"filename": "..", "flags": "drwxr-xr-x", "links": 24, "owner": "root", "group": "root", "size": null, "date": "Oct 24 06:33"}, {"filename": "bin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Oct 18 00:12"}, {"filename": "boot", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": null, "date": "Oct 25 07:14"}, {"filename": "cdrom", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Aug 12 17:21"}, {"filename": "dev", "flags": "drwxr-xr-x", "links": 19, "owner": "root", "group": "root", "size": null, "date": "Oct 24 06:33"}, {"filename": "etc", "flags": "drwxr-xr-x", "links": 93, "owner": "root", "group": "root", "size": null, "date": "Oct 24 06:32"}, {"filename": "home", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": null, "date": "Aug 12 17:24"}, {"filename": "initrd.img", "link_to": "boot/initrd.img-4.15.0-66-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 24 06:33"}, {"filename": "initrd.img.old", "link_to": "boot/initrd.img-4.15.0-65-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 33, "date": "Oct 24 06:33"}, {"filename": "lib", "flags": "drwxr-xr-x", "links": 23, "owner": "root", "group": "root", "size": null, "date": "Oct 18 00:14"}, {"filename": "lib64", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Aug 5 19:23"}, {"filename": "lost+found", "flags": "drwx------", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Aug 12 17:21"}, {"filename": "media", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Aug 5 19:22"}, {"filename": "mnt", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Aug 5 19:22"}, {"filename": "opt", "flags": "drwxr-xr-x", "links": 3, "owner": "root", "group": "root", "size": null, "date": "Aug 14 02:02"}, {"filename": "proc", "flags": "dr-xr-xr-x", "links": 184, "owner": "root", "group": "root", "size": 0, "date": "Oct 21 20:17"}, {"filename": "root", "flags": "drwx------", "links": 4, "owner": "root", "group": "root", "size": null, "date": "Aug 13 23:27"}, {"filename": "run", "flags": "drwxr-xr-x", "links": 29, "owner": "root", "group": "root", "size": null, "date": "Oct 28 08:49"}, {"filename": "sbin", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Oct 18 00:11"}, {"filename": "snap", "flags": "drwxr-xr-x", "links": 9, "owner": "root", "group": "root", "size": null, "date": "Aug 14 02:01"}, {"filename": "srv", "flags": "drwxr-xr-x", "links": 2, "owner": "root", "group": "root", "size": null, "date": "Aug 5 19:22"}, {"filename": "swap.img", "flags": "-rw-------", "links": 1, "owner": "root", "group": "root", "size": null, "date": "Aug 12 17:22"}, {"filename": "sys", "flags": "dr-xr-xr-x", "links": 13, "owner": "root", "group": "root", "size": 0, "date": "Oct 22 00:54"}, {"filename": "tmp", "flags": "drwxrwxrwt", "links": 11, "owner": "root", "group": "root", "size": null, "date": "Oct 28 19:42"}, {"filename": "usr", "flags": "drwxr-xr-x", "links": 10, "owner": "root", "group": "root", "size": null, "date": "Aug 5 19:22"}, {"filename": "var", "flags": "drwxr-xr-x", "links": 13, "owner": "root", "group": "root", "size": null, "date": "Aug 5 19:24"}, {"filename": "vmlinuz", "link_to": "boot/vmlinuz-4.15.0-66-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 24 06:33"}, {"filename": "vmlinuz.old", "link_to": "boot/vmlinuz-4.15.0-65-generic", "flags": "lrwxrwxrwx", "links": 1, "owner": "root", "group": "root", "size": 30, "date": "Oct 24 06:33"}] +[{"filename":".","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"..","flags":"drwxr-xr-x","links":24,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"bin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Oct 18 00:12"},{"filename":"boot","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Oct 25 07:14"},{"filename":"cdrom","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 12 17:21"},{"filename":"dev","flags":"drwxr-xr-x","links":19,"owner":"root","group":"root","size":4,"date":"Oct 24 06:33"},{"filename":"etc","flags":"drwxr-xr-x","links":93,"owner":"root","group":"root","size":4,"date":"Oct 24 06:32"},{"filename":"home","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Aug 12 17:24"},{"filename":"initrd.img","link_to":"boot/initrd.img-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"initrd.img.old","link_to":"boot/initrd.img-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":33,"date":"Oct 24 06:33"},{"filename":"lib","flags":"drwxr-xr-x","links":23,"owner":"root","group":"root","size":4,"date":"Oct 18 00:14"},{"filename":"lib64","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:23"},{"filename":"lost+found","flags":"drwx------","links":2,"owner":"root","group":"root","size":16,"date":"Aug 12 17:21"},{"filename":"media","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"mnt","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"opt","flags":"drwxr-xr-x","links":3,"owner":"root","group":"root","size":4,"date":"Aug 14 02:02"},{"filename":"proc","flags":"dr-xr-xr-x","links":184,"owner":"root","group":"root","size":0,"date":"Oct 21 20:17"},{"filename":"root","flags":"drwx------","links":4,"owner":"root","group":"root","size":4,"date":"Aug 13 23:27"},{"filename":"run","flags":"drwxr-xr-x","links":29,"owner":"root","group":"root","size":1,"date":"Oct 28 08:49"},{"filename":"sbin","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":12,"date":"Oct 18 00:11"},{"filename":"snap","flags":"drwxr-xr-x","links":9,"owner":"root","group":"root","size":4,"date":"Aug 14 02:01"},{"filename":"srv","flags":"drwxr-xr-x","links":2,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"swap.img","flags":"-rw-------","links":1,"owner":"root","group":"root","size":2,"date":"Aug 12 17:22"},{"filename":"sys","flags":"dr-xr-xr-x","links":13,"owner":"root","group":"root","size":0,"date":"Oct 22 00:54"},{"filename":"tmp","flags":"drwxrwxrwt","links":11,"owner":"root","group":"root","size":4,"date":"Oct 28 19:42"},{"filename":"usr","flags":"drwxr-xr-x","links":10,"owner":"root","group":"root","size":4,"date":"Aug 5 19:22"},{"filename":"var","flags":"drwxr-xr-x","links":13,"owner":"root","group":"root","size":4,"date":"Aug 5 19:24"},{"filename":"vmlinuz","link_to":"boot/vmlinuz-4.15.0-66-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"},{"filename":"vmlinuz.old","link_to":"boot/vmlinuz-4.15.0-65-generic","flags":"lrwxrwxrwx","links":1,"owner":"root","group":"root","size":30,"date":"Oct 24 06:33"}] diff --git a/tests/fixtures/ubuntu-18.04/lsof-sudo.json b/tests/fixtures/ubuntu-18.04/lsof-sudo.json index 59295b70..24b54d02 100644 --- a/tests/fixtures/ubuntu-18.04/lsof-sudo.json +++ b/tests/fixtures/ubuntu-18.04/lsof-sudo.json @@ -1 +1 @@ -[{"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1595792, "node": 668802, "name": "/lib/systemd/systemd"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 64144, "node": 656127, "name": "/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 92208, "node": 656162, "name": "/lib/x86_64-linux-gnu/libkmod.so.2.3.2"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "3w", "type": "CHR", "device": "1,11", "size_off": null, "node": 12, "name": "/dev/kmsg"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "6r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "7r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/sys/fs/cgroup/unified"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "8u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 20650, "name": "KOBJECT_UEVENT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "10u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "11r", "type": "REG", "device": "0,4", "size_off": 0, "node": 20651, "name": "/proc/1/mountinfo"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "12r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "13r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532068, "name": "/proc/swaps"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "14r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "15r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "16r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "17u", "type": "unix", "device": "0xffff98e47234b800", "size_off": null, "node": 20655, "name": "/run/systemd/private type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "19u", "type": "unix", "device": "0xffff98e4b3fed400", "size_off": null, "node": 76786, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "20u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-map"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "21u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-map"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "22u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-prog"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "23u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-prog"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "24u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-map"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "25u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-map"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "26u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-prog"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "27u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-prog"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "28u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-map"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "29u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "30u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-map"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "31u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-prog"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "32u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "bpf-prog"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "36r", "type": "CHR", "device": "10,235", "size_off": null, "node": 401, "name": "/dev/autofs"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "37u", "type": "unix", "device": "0xffff98e472348000", "size_off": null, "node": 20652, "name": "/run/systemd/notify type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "38u", "type": "unix", "device": "0xffff98e472349c00", "size_off": null, "node": 20653, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "39u", "type": "unix", "device": "0xffff98e472349400", "size_off": null, "node": 20654, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "40u", "type": "unix", "device": "0xffff98e4afa57400", "size_off": null, "node": 25276, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "41u", "type": "unix", "device": "0xffff98e4afa54800", "size_off": null, "node": 25277, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "42u", "type": "unix", "device": "0xffff98e4b1d02400", "size_off": null, "node": 27475, "name": "/run/uuidd/request type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "43u", "type": "netlink", "device": null, "size_off": null, "node": 20810, "name": "ROUTE"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "44u", "type": "netlink", "device": null, "size_off": null, "node": 21114, "name": "AUDIT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "45u", "type": "netlink", "device": null, "size_off": null, "node": 21021, "name": "AUDIT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "46u", "type": "FIFO", "device": "0,23", "size_off": null, "node": 329, "name": "/run/systemd/initctl/fifo"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "47u", "type": "unix", "device": "0xffff98e473ed4000", "size_off": null, "node": 20812, "name": "/run/udev/control type=SEQPACKET"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "48u", "type": "CHR", "device": "10,62", "size_off": null, "node": 4, "name": "/dev/rfkill"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "49u", "type": "unix", "device": "0xffff98e4afa55c00", "size_off": null, "node": 27489, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "50u", "type": "unix", "device": "0xffff98e4b1d00800", "size_off": null, "node": 27473, "name": "/run/acpid.socket type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "51r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 20976, "name": "pipe"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "52u", "type": "unix", "device": "0xffff98e47234ac00", "size_off": null, "node": 20664, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "53u", "type": "unix", "device": "0xffff98e47234a000", "size_off": null, "node": 20666, "name": "/run/systemd/journal/socket type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "54u", "type": "unix", "device": "0xffff98e4b1dc4800", "size_off": null, "node": 27481, "name": "/var/run/docker.sock type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "55u", "type": "netlink", "device": null, "size_off": null, "node": 20809, "name": "KOBJECT_UEVENT"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "56u", "type": "unix", "device": "0xffff98e4affb0c00", "size_off": null, "node": 21581, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "57u", "type": "unix", "device": "0xffff98e4b5abbc00", "size_off": null, "node": 21583, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "59u", "type": "unix", "device": "0xffff98e4b1dc3800", "size_off": null, "node": 25402, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "60u", "type": "unix", "device": "0xffff98e4aff63c00", "size_off": null, "node": 25415, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "61u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "62u", "type": "unix", "device": "0xffff98e4b8d57800", "size_off": null, "node": 26063, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "63u", "type": "unix", "device": "0xffff98e4afa6b800", "size_off": null, "node": 26728, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "64u", "type": "unix", "device": "0xffff98e4afa55800", "size_off": null, "node": 26944, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "65u", "type": "unix", "device": "0xffff98e4b905b400", "size_off": null, "node": 27669, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "66u", "type": "unix", "device": "0xffff98e4afd8cc00", "size_off": null, "node": 27981, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "67u", "type": "unix", "device": "0xffff98e4b911a000", "size_off": null, "node": 28133, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "68u", "type": "unix", "device": "0xffff98e471d09c00", "size_off": null, "node": 28695, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "69u", "type": "unix", "device": "0xffff98e4affb3c00", "size_off": null, "node": 28696, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "70u", "type": "unix", "device": "0xffff98e4b637d000", "size_off": null, "node": 29168, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "71u", "type": "unix", "device": "0xffff98e4b637d800", "size_off": null, "node": 29169, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "72u", "type": "unix", "device": "0xffff98e4b6063c00", "size_off": null, "node": 29558, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "73u", "type": "unix", "device": "0xffff98e4b5d82400", "size_off": null, "node": 29685, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "74u", "type": "unix", "device": "0xffff98e4b1d8b800", "size_off": null, "node": 30153, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "75u", "type": "unix", "device": "0xffff98e4b460dc00", "size_off": null, "node": 33603, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "76u", "type": "unix", "device": "0xffff98e4b637f800", "size_off": null, "node": 29166, "name": "type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "77u", "type": "unix", "device": "0xffff98e47234c800", "size_off": null, "node": 20660, "name": "/run/systemd/journal/syslog type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "78u", "type": "unix", "device": "0xffff98e47234ec00", "size_off": null, "node": 20662, "name": "/run/lvm/lvmetad.socket type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "81u", "type": "unix", "device": "0xffff98e4b1dc3400", "size_off": null, "node": 27468, "name": "/var/lib/lxd/unix.socket type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "82u", "type": "unix", "device": "0xffff98e4b1ea3800", "size_off": null, "node": 20891, "name": "/run/lvm/lvmpolld.socket type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "85u", "type": "unix", "device": "0xffff98e4b59c1000", "size_off": null, "node": 27436, "name": "@ISCSIADM_ABSTRACT_NAMESPACE type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "87u", "type": "unix", "device": "0xffff98e4b9565c00", "size_off": null, "node": 21016, "name": "/run/systemd/journal/dev-log type=DGRAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "88u", "type": "FIFO", "device": "0,23", "size_off": null, "node": 314, "name": "/run/dmeventd-server"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "92u", "type": "FIFO", "device": "0,23", "size_off": null, "node": 315, "name": "/run/dmeventd-client"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "93u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "94u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/exe"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/exe"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/exe"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/exe"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/exe"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/exe"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/exe"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/exe"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/12/exe"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "0,6", "size_off": 4060, "node": 2, "name": "/"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "0,6", "size_off": 4060, "node": 2, "name": "/"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/exe"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/exe"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/exe"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/exe"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/exe"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/exe"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/exe"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/exe"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/exe"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/exe"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/exe"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/exe"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/25/exe"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/26/exe"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/27/exe"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/28/exe"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/29/exe"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/exe"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/34/exe"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/35/exe"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/36/exe"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/78/exe"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/79/exe"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/80/exe"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/81/exe"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/82/exe"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/83/exe"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/89/exe"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/99/exe"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/116/exe"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/170/exe"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/171/exe"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/172/exe"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/173/exe"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/174/exe"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/175/exe"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/176/exe"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/177/exe"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/178/exe"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/179/exe"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/180/exe"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/181/exe"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/182/exe"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/183/exe"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/188/exe"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/189/exe"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/191/exe"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/196/exe"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/198/exe"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/199/exe"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/201/exe"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/203/exe"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/205/exe"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/208/exe"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/209/exe"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/212/exe"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/213/exe"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/216/exe"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/217/exe"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/219/exe"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/221/exe"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/223/exe"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/225/exe"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/227/exe"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/229/exe"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/230/exe"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/232/exe"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/233/exe"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/235/exe"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/237/exe"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/238/exe"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/240/exe"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/241/exe"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/243/exe"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/245/exe"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/246/exe"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/248/exe"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/250/exe"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/252/exe"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/254/exe"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/256/exe"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/258/exe"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/259/exe"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/260/exe"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/261/exe"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/262/exe"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/263/exe"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/264/exe"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/265/exe"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/266/exe"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/267/exe"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/268/exe"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/exe"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/296/exe"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/302/exe"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/303/exe"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/305/exe"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/369/exe"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/422/exe"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/423/exe"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 129096, "node": 668815, "name": "/lib/systemd/systemd-journald"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 8388608, "node": 1070319, "name": "/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 8388608, "node": 1070318, "name": "/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "0,23", "size_off": 8, "node": 340, "name": "/run/systemd/journal/kernel-seqnum"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e4b9565c00", "size_off": null, "node": 21016, "name": "/run/systemd/journal/dev-log type=DGRAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 21021, "name": "AUDIT"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff98e47234ac00", "size_off": null, "node": 20664, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e47234a000", "size_off": null, "node": 20666, "name": "/run/systemd/journal/socket type=DGRAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "7w", "type": "CHR", "device": "1,11", "size_off": null, "node": 12, "name": "/dev/kmsg"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "8u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "9u", "type": "CHR", "device": "1,11", "size_off": null, "node": 12, "name": "/dev/kmsg"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "10r", "type": "REG", "device": "0,4", "size_off": 0, "node": 21260, "name": "/proc/sys/kernel/hostname"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "11u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "12u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "14u", "type": "unix", "device": "0xffff98e4b1ea0400", "size_off": null, "node": 21261, "name": "type=DGRAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "15u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "16u", "type": "unix", "device": "0xffff98e4b8d57800", "size_off": null, "node": 26063, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "17u", "type": "REG", "device": "8,2", "size_off": 8388608, "node": 1070318, "name": "/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "18u", "type": "unix", "device": "0xffff98e4aff63c00", "size_off": null, "node": 25415, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "19u", "type": "unix", "device": "0xffff98e4b1dc3800", "size_off": null, "node": 25402, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "20u", "type": "unix", "device": "0xffff98e4affb0c00", "size_off": null, "node": 21581, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "21u", "type": "unix", "device": "0xffff98e4afa6b800", "size_off": null, "node": 26728, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "22u", "type": "unix", "device": "0xffff98e4b460dc00", "size_off": null, "node": 33603, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "23u", "type": "unix", "device": "0xffff98e4b5abbc00", "size_off": null, "node": 21583, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "24u", "type": "unix", "device": "0xffff98e4b905b400", "size_off": null, "node": 27669, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "25u", "type": "unix", "device": "0xffff98e4afa55800", "size_off": null, "node": 26944, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "26u", "type": "unix", "device": "0xffff98e4b6063c00", "size_off": null, "node": 29558, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "27u", "type": "REG", "device": "8,2", "size_off": 8388608, "node": 1070319, "name": "/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "29u", "type": "unix", "device": "0xffff98e4afd8cc00", "size_off": null, "node": 27981, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "30u", "type": "unix", "device": "0xffff98e4b911a000", "size_off": null, "node": 28133, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "33u", "type": "unix", "device": "0xffff98e4b1d8b800", "size_off": null, "node": 30153, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "34u", "type": "unix", "device": "0xffff98e471d09c00", "size_off": null, "node": 28695, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "35u", "type": "unix", "device": "0xffff98e4affb3c00", "size_off": null, "node": 28696, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "38u", "type": "unix", "device": "0xffff98e4b637d000", "size_off": null, "node": 29168, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "39u", "type": "unix", "device": "0xffff98e4b637d800", "size_off": null, "node": 29169, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "40u", "type": "unix", "device": "0xffff98e4b5d82400", "size_off": null, "node": 29685, "name": "/run/systemd/journal/stdout type=STREAM"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/498/exe"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 584136, "node": 668654, "name": "/lib/systemd/systemd-udevd"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1258796, "node": 655702, "name": "/lib/modules/4.15.0-65-generic/modules.alias.bin"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 8962391, "node": 655396, "name": "/lib/udev/hwdb.bin"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 92208, "node": 656162, "name": "/lib/x86_64-linux-gnu/libkmod.so.2.3.2"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 721695, "node": 662916, "name": "/lib/modules/4.15.0-65-generic/modules.symbols.bin"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 782483, "node": 669924, "name": "/lib/modules/4.15.0-65-generic/modules.dep.bin"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 9685, "node": 662917, "name": "/lib/modules/4.15.0-65-generic/modules.builtin.bin"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4affb4000", "size_off": null, "node": 21388, "name": "type=STREAM"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4affb4000", "size_off": null, "node": 21388, "name": "type=STREAM"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e473ed4000", "size_off": null, "node": 20812, "name": "/run/udev/control type=SEQPACKET"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 20809, "name": "KOBJECT_UEVENT"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff98e4b96e1400", "size_off": null, "node": 21588, "name": "type=DGRAM"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "6r", "type": "REG", "device": "8,2", "size_off": 8962391, "node": 655396, "name": "/lib/udev/hwdb.bin"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b9565400", "size_off": null, "node": 21598, "name": "type=DGRAM"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b9560400", "size_off": null, "node": 21599, "name": "type=DGRAM"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "9r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "10u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "11u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "12u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 84104, "node": 263670, "name": "/sbin/lvmetad"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5abec00", "size_off": null, "node": 21498, "name": "type=STREAM"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5abec00", "size_off": null, "node": 21498, "name": "type=STREAM"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e47234ec00", "size_off": null, "node": 20662, "name": "/run/lvm/lvmetad.socket type=STREAM"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "4wW", "type": "REG", "device": "0,23", "size_off": 4, "node": 361, "name": "/run/lvmetad.pid"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/512/exe"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/513/exe"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/514/exe"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/523/exe"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/541/exe"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/545/exe"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/548/exe"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/552/exe"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/554/exe"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/556/exe"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/557/exe"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/559/exe"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 38976, "node": 668835, "name": "/lib/systemd/systemd-timesyncd"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "1u", "type": "unix", "device": "0xffff98e4aff66400", "size_off": null, "node": 25414, "name": "type=STREAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "2u", "type": "unix", "device": "0xffff98e4aff66400", "size_off": null, "node": 25414, "name": "type=STREAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "3u", "type": "unix", "device": "0xffff98e4afa5e000", "size_off": null, "node": 25426, "name": "type=DGRAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "7u", "type": "unix", "device": "0xffff98e4afa57800", "size_off": null, "node": 25429, "name": "type=DGRAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "8u", "type": "unix", "device": "0xffff98e4afa54400", "size_off": null, "node": 25430, "name": "type=DGRAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "9u", "type": "unix", "device": "0xffff98e4afa52800", "size_off": null, "node": 25431, "name": "type=DGRAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "10u", "type": "unix", "device": "0xffff98e4afa56800", "size_off": null, "node": 25432, "name": "type=DGRAM"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "11r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "12u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "13u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 38976, "node": 668835, "name": "/lib/systemd/systemd-timesyncd"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "1u", "type": "unix", "device": "0xffff98e4aff66400", "size_off": null, "node": 25414, "name": "type=STREAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "2u", "type": "unix", "device": "0xffff98e4aff66400", "size_off": null, "node": 25414, "name": "type=STREAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "3u", "type": "unix", "device": "0xffff98e4afa5e000", "size_off": null, "node": 25426, "name": "type=DGRAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "7u", "type": "unix", "device": "0xffff98e4afa57800", "size_off": null, "node": 25429, "name": "type=DGRAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "8u", "type": "unix", "device": "0xffff98e4afa54400", "size_off": null, "node": 25430, "name": "type=DGRAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "9u", "type": "unix", "device": "0xffff98e4afa52800", "size_off": null, "node": 25431, "name": "type=DGRAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "10u", "type": "unix", "device": "0xffff98e4afa56800", "size_off": null, "node": 25432, "name": "type=DGRAM"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "11r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "12u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "13u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 125144, "node": 917875, "name": "/usr/bin/VGAuthService"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 96616, "node": 656152, "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1594864, "node": 924414, "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26904264, "node": 924354, "name": "/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1792008, "node": 924359, "name": "/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "DEL", "type": "REG", "device": "8,2", "size_off": null, "node": 924429, "name": "/usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2917216, "node": 924314, "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 577312, "node": 924413, "name": "/usr/lib/x86_64-linux-gnu/libssl.so.1.1"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1834232, "node": 924426, "name": "/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 408688, "node": 924428, "name": "/usr/lib/x86_64-linux-gnu/libxmlsec1.so.1.2.25"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 270800, "node": 924427, "name": "/usr/lib/x86_64-linux-gnu/libxmlsec1-openssl.so.1.2.25"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b1dc2800", "size_off": null, "node": 25401, "name": "type=STREAM"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b1dc2800", "size_off": null, "node": 25401, "name": "type=STREAM"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e4afa6a400", "size_off": null, "node": 25533, "name": "type=DGRAM"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "4r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 25543, "name": "pipe"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "5w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 25543, "name": "pipe"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "7r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "8r", "type": "CHR", "device": "1,8", "size_off": null, "node": 10, "name": "/dev/random"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "9u", "type": "unix", "device": "0xffff98e4afa69400", "size_off": null, "node": 25548, "name": "/var/run/vmware/guestServicePipe type=STREAM"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/671/exe"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 51456, "node": 918412, "name": "/usr/bin/vmtoolsd"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 35544, "node": 918745, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18696, "node": 918744, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14712, "node": 918742, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 36616, "node": 918741, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 23080, "node": 918740, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 75776, "node": 924385, "name": "/usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31296, "node": 918471, "name": "/usr/lib/libDeployPkg.so.0.0.0"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14696, "node": 918739, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 85144, "node": 918476, "name": "/usr/lib/libvgauth.so.0.0.0"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 126520, "node": 918736, "name": "/usr/lib/open-vm-tools/plugins/common/libvix.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 163152, "node": 918475, "name": "/usr/lib/libhgfs.so.0.0.0"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10440, "node": 918735, "name": "/usr/lib/open-vm-tools/plugins/common/libhgfsServer.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26904264, "node": 924354, "name": "/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1594864, "node": 924414, "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 96616, "node": 656152, "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2917216, "node": 924314, "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 577312, "node": 924413, "name": "/usr/lib/x86_64-linux-gnu/libssl.so.1.1"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1792008, "node": 924359, "name": "/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2754872, "node": 924355, "name": "/usr/lib/x86_64-linux-gnu/libicui18n.so.60.2"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60936, "node": 924323, "name": "/usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 623592, "node": 918477, "name": "/usr/lib/libvmtools.so.0.0.0"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b8d51000", "size_off": null, "node": 26000, "name": "type=STREAM"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b8d51000", "size_off": null, "node": 26000, "name": "type=STREAM"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "3w", "type": "REG", "device": "8,2", "size_off": 33789, "node": 1058855, "name": "/var/log/vmware-vmsvc.log"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "5r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 26072, "name": "pipe"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "6w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 26072, "name": "pipe"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "8u", "type": "sock", "device": "0,9", "size_off": null, "node": 26217, "name": "protocol: AF_VSOCK"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "9r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "10r", "type": "CHR", "device": "1,8", "size_off": null, "node": 10, "name": "/dev/random"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 51456, "node": 918412, "name": "/usr/bin/vmtoolsd"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 35544, "node": 918745, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18696, "node": 918744, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14712, "node": 918742, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 36616, "node": 918741, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 23080, "node": 918740, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 75776, "node": 924385, "name": "/usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31296, "node": 918471, "name": "/usr/lib/libDeployPkg.so.0.0.0"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14696, "node": 918739, "name": "/usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 85144, "node": 918476, "name": "/usr/lib/libvgauth.so.0.0.0"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 126520, "node": 918736, "name": "/usr/lib/open-vm-tools/plugins/common/libvix.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 163152, "node": 918475, "name": "/usr/lib/libhgfs.so.0.0.0"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10440, "node": 918735, "name": "/usr/lib/open-vm-tools/plugins/common/libhgfsServer.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26904264, "node": 924354, "name": "/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1594864, "node": 924414, "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 96616, "node": 656152, "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2917216, "node": 924314, "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 577312, "node": 924413, "name": "/usr/lib/x86_64-linux-gnu/libssl.so.1.1"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1792008, "node": 924359, "name": "/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2754872, "node": 924355, "name": "/usr/lib/x86_64-linux-gnu/libicui18n.so.60.2"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60936, "node": 924323, "name": "/usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 623592, "node": 918477, "name": "/usr/lib/libvmtools.so.0.0.0"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b8d51000", "size_off": null, "node": 26000, "name": "type=STREAM"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b8d51000", "size_off": null, "node": 26000, "name": "type=STREAM"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "3w", "type": "REG", "device": "8,2", "size_off": 33789, "node": 1058855, "name": "/var/log/vmware-vmsvc.log"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "5r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 26072, "name": "pipe"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "6w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 26072, "name": "pipe"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "8u", "type": "sock", "device": "0,9", "size_off": null, "node": 26217, "name": "protocol: AF_VSOCK"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "9r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "10r", "type": "CHR", "device": "1,8", "size_off": null, "node": 10, "name": "/dev/random"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1625168, "node": 668820, "name": "/lib/systemd/systemd-networkd"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "1u", "type": "unix", "device": "0xffff98e4afa6f000", "size_off": null, "node": 26727, "name": "type=STREAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "2u", "type": "unix", "device": "0xffff98e4afa6f000", "size_off": null, "node": 26727, "name": "type=STREAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "3u", "type": "netlink", "device": null, "size_off": null, "node": 20810, "name": "ROUTE"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "4u", "type": "unix", "device": "0xffff98e4afd88c00", "size_off": null, "node": 26760, "name": "type=DGRAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "7u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "8u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 26768, "name": "GENERIC"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 26769, "name": "KOBJECT_UEVENT"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "11u", "type": "unix", "device": "0xffff98e4afd89000", "size_off": null, "node": 26770, "name": "type=DGRAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "12u", "type": "unix", "device": "0xffff98e4afd89c00", "size_off": null, "node": 26771, "name": "type=DGRAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "13u", "type": "unix", "device": "0xffff98e4afd8c000", "size_off": null, "node": 26772, "name": "type=DGRAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "14u", "type": "unix", "device": "0xffff98e4afd8b400", "size_off": null, "node": 26773, "name": "type=DGRAM"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "15u", "type": "IPv4", "device": "336698", "size_off": null, "node": null, "name": "kbrazil-ubuntu:bootpc"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "16u", "type": "pack", "device": "26967", "size_off": null, "node": 35020, "name": "type=SOCK_RAW"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "17u", "type": "raw6", "device": null, "size_off": null, "node": 271764, "name": "00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "18u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "20u", "type": "unix", "device": "0xffff98e4b1d02c00", "size_off": null, "node": 27494, "name": "type=STREAM"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 378944, "node": 668826, "name": "/lib/systemd/systemd-resolved"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "1u", "type": "unix", "device": "0xffff98e4afa55400", "size_off": null, "node": 26941, "name": "type=STREAM"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "2u", "type": "unix", "device": "0xffff98e4afa55400", "size_off": null, "node": 26941, "name": "type=STREAM"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "3u", "type": "unix", "device": "0xffff98e4b1dc1800", "size_off": null, "node": 26986, "name": "type=DGRAM"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "7r", "type": "REG", "device": "0,4", "size_off": 0, "node": 21260, "name": "/proc/sys/kernel/hostname"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "8r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 27002, "name": "ROUTE"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "10u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "11u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "12u", "type": "IPv4", "device": "27005", "size_off": null, "node": null, "name": "localhost:domain"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "13u", "type": "IPv4", "device": "27006", "size_off": null, "node": null, "name": "localhost:domain (LISTEN)"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "14u", "type": "unix", "device": "0xffff98e4b1dc4000", "size_off": null, "node": 27493, "name": "type=STREAM"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 680488, "node": 924792, "name": "/usr/sbin/rsyslogd"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19448, "node": 1050299, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 36744, "node": 1050306, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27192, "node": 1050307, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43720, "node": 924331, "name": "/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14344, "node": 924327, "name": "/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "3u", "type": "unix", "device": "0xffff98e47234c800", "size_off": null, "node": 20660, "name": "/run/systemd/journal/syslog type=DGRAM"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "4r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "5r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532032, "name": "/proc/kmsg"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "6u", "type": "unix", "device": "0xffff98e4b96e6000", "size_off": null, "node": 28224, "name": "type=DGRAM"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "7w", "type": "REG", "device": "8,2", "size_off": 28996, "node": 1053407, "name": "/var/log/auth.log"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "8w", "type": "REG", "device": "8,2", "size_off": 8045, "node": 1051996, "name": "/var/log/syslog"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 680488, "node": 924792, "name": "/usr/sbin/rsyslogd"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19448, "node": 1050299, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 36744, "node": 1050306, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27192, "node": 1050307, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43720, "node": 924331, "name": "/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14344, "node": 924327, "name": "/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "3u", "type": "unix", "device": "0xffff98e47234c800", "size_off": null, "node": 20660, "name": "/run/systemd/journal/syslog type=DGRAM"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "4r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "5r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532032, "name": "/proc/kmsg"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "6u", "type": "unix", "device": "0xffff98e4b96e6000", "size_off": null, "node": 28224, "name": "type=DGRAM"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "7w", "type": "REG", "device": "8,2", "size_off": 28996, "node": 1053407, "name": "/var/log/auth.log"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "8w", "type": "REG", "device": "8,2", "size_off": 8045, "node": 1051996, "name": "/var/log/syslog"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 680488, "node": 924792, "name": "/usr/sbin/rsyslogd"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19448, "node": 1050299, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 36744, "node": 1050306, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27192, "node": 1050307, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43720, "node": 924331, "name": "/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14344, "node": 924327, "name": "/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "3u", "type": "unix", "device": "0xffff98e47234c800", "size_off": null, "node": 20660, "name": "/run/systemd/journal/syslog type=DGRAM"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "4r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "5r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532032, "name": "/proc/kmsg"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "6u", "type": "unix", "device": "0xffff98e4b96e6000", "size_off": null, "node": 28224, "name": "type=DGRAM"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "7w", "type": "REG", "device": "8,2", "size_off": 28996, "node": 1053407, "name": "/var/log/auth.log"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "8w", "type": "REG", "device": "8,2", "size_off": 8045, "node": 1051996, "name": "/var/log/syslog"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 680488, "node": 924792, "name": "/usr/sbin/rsyslogd"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19448, "node": 1050299, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 36744, "node": 1050306, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27192, "node": 1050307, "name": "/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43720, "node": 924331, "name": "/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14344, "node": 924327, "name": "/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "1w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "2w", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "3u", "type": "unix", "device": "0xffff98e47234c800", "size_off": null, "node": 20660, "name": "/run/systemd/journal/syslog type=DGRAM"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "4r", "type": "CHR", "device": "1,9", "size_off": null, "node": 11, "name": "/dev/urandom"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "5r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532032, "name": "/proc/kmsg"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "6u", "type": "unix", "device": "0xffff98e4b96e6000", "size_off": null, "node": 28224, "name": "type=DGRAM"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "7w", "type": "REG", "device": "8,2", "size_off": 28996, "node": 1053407, "name": "/var/log/auth.log"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "8w", "type": "REG", "device": "8,2", "size_off": 8045, "node": 1051996, "name": "/var/log/syslog"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 4526456, "node": 918753, "name": "/usr/bin/python3.6"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19144, "node": 919958, "name": "/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 313496, "node": 656141, "name": "/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 159408, "node": 919957, "name": "/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 186076, "node": 1049145, "name": "/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 212456, "node": 924339, "name": "/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 315848, "node": 921267, "name": "/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 74664, "node": 919258, "name": "/usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b905c400", "size_off": null, "node": 27668, "name": "type=STREAM"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b905c400", "size_off": null, "node": 27668, "name": "type=STREAM"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e4b5d86400", "size_off": null, "node": 30629, "name": "type=STREAM"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 4526456, "node": 918753, "name": "/usr/bin/python3.6"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19144, "node": 919958, "name": "/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 313496, "node": 656141, "name": "/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 159408, "node": 919957, "name": "/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 186076, "node": 1049145, "name": "/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 212456, "node": 924339, "name": "/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 315848, "node": 921267, "name": "/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 74664, "node": 919258, "name": "/usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b905c400", "size_off": null, "node": 27668, "name": "type=STREAM"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b905c400", "size_off": null, "node": 27668, "name": "type=STREAM"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e4b5d86400", "size_off": null, "node": 30629, "name": "type=STREAM"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 18504, "node": 918166, "name": "/usr/bin/lxcfs"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 67424, "node": 1049161, "name": "/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 243832, "node": 656151, "name": "/lib/x86_64-linux-gnu/libfuse.so.2.9.7"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b937c000", "size_off": null, "node": 27978, "name": "type=STREAM"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 4, "node": 673, "name": "/run/lxcfs.pid"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "4u", "type": "CHR", "device": "10,229", "size_off": null, "node": 85, "name": "/dev/fuse"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "5r", "type": "REG", "device": "0,3", "size_off": 0, "node": 4026532577, "name": "mnt"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "6r", "type": "DIR", "device": "0,41", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpu,cpuacct"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "7r", "type": "DIR", "device": "0,40", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/pids"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "8r", "type": "DIR", "device": "0,39", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/cpuset"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "9r", "type": "DIR", "device": "0,38", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/blkio"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "10r", "type": "DIR", "device": "0,37", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/rdma"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "11r", "type": "DIR", "device": "0,36", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/perf_event"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "12r", "type": "DIR", "device": "0,35", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/hugetlb"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "13r", "type": "DIR", "device": "0,34", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/devices"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "14r", "type": "DIR", "device": "0,33", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/memory"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "15r", "type": "DIR", "device": "0,32", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/freezer"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "16r", "type": "DIR", "device": "0,31", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/net_cls,net_prio"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "17r", "type": "DIR", "device": "0,29", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/name=systemd"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "18r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1, "name": "/run/lxcfs/controllers/unified"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 182552, "node": 918479, "name": "/usr/lib/accountsservice/accounts-daemon"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 114000, "node": 924402, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b911f400", "size_off": null, "node": 28058, "name": "type=STREAM"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b911f400", "size_off": null, "node": 28058, "name": "type=STREAM"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff98e4b5c67400", "size_off": null, "node": 29199, "name": "type=STREAM"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "7r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 182552, "node": 918479, "name": "/usr/lib/accountsservice/accounts-daemon"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 114000, "node": 924402, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b911f400", "size_off": null, "node": 28058, "name": "type=STREAM"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b911f400", "size_off": null, "node": 28058, "name": "type=STREAM"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff98e4b5c67400", "size_off": null, "node": 29199, "name": "type=STREAM"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "7r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 182552, "node": 918479, "name": "/usr/lib/accountsservice/accounts-daemon"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 114000, "node": 924402, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b911f400", "size_off": null, "node": 28058, "name": "type=STREAM"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b911f400", "size_off": null, "node": 28058, "name": "type=STREAM"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "5u", "type": "unix", "device": "0xffff98e4b5c67400", "size_off": null, "node": 29199, "name": "type=STREAM"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "7r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "txt", "type": "REG", "device": "7,10", "size_off": 18915952, "node": 6465, "name": "/snap/core/7917/usr/lib/snapd/snapd"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26936, "node": 656178, "name": "/lib/x86_64-linux-gnu/libnss_dns-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b96e4800", "size_off": null, "node": 28613, "name": "type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "4u", "type": "netlink", "device": null, "size_off": null, "node": 32362, "name": "KOBJECT_UEVENT"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "7u", "type": "unix", "device": "0xffff98e4b1d06400", "size_off": null, "node": 27443, "name": "/run/snapd.socket type=STREAM"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "8u", "type": "unix", "device": "0xffff98e4b1d01400", "size_off": null, "node": 27445, "name": "/run/snapd-snap.socket type=STREAM"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 219272, "node": 668817, "name": "/lib/systemd/systemd-logind"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4affb6400", "size_off": null, "node": 28694, "name": "type=STREAM"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4affb6400", "size_off": null, "node": 28694, "name": "type=STREAM"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e4b5c66000", "size_off": null, "node": 29208, "name": "type=DGRAM"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "7r", "type": "REG", "device": "0,21", "size_off": 4096, "node": 16735, "name": "/sys/devices/virtual/tty/tty0/active"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "8u", "type": "netlink", "device": null, "size_off": null, "node": 29226, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 29227, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "10u", "type": "netlink", "device": null, "size_off": null, "node": 29228, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "11u", "type": "netlink", "device": null, "size_off": null, "node": 29229, "name": "KOBJECT_UEVENT"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "12u", "type": "unix", "device": "0xffff98e4b5c63800", "size_off": null, "node": 29230, "name": "type=STREAM"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "13u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "14u", "type": "CHR", "device": "13,64", "size_off": null, "node": 146, "name": "/dev/input/event0"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "15u", "type": "CHR", "device": "13,65", "size_off": null, "node": 151, "name": "/dev/input/event1"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "16u", "type": "CHR", "device": "4,6", "size_off": null, "node": 25, "name": "/dev/tty6"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "17r", "type": "FIFO", "device": "0,23", "size_off": null, "node": 661, "name": "/run/systemd/inhibit/1.ref"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "18r", "type": "FIFO", "device": "0,23", "size_off": null, "node": 715, "name": "/run/systemd/sessions/1.ref"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "19r", "type": "FIFO", "device": "0,23", "size_off": null, "node": 719, "name": "/run/systemd/sessions/49.ref"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 5989, "name": "/var/spool/cron"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 47416, "node": 924741, "name": "/usr/sbin/cron"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b637fc00", "size_off": null, "node": 29086, "name": "type=STREAM"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b637fc00", "size_off": null, "node": 29086, "name": "type=STREAM"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 5, "node": 675, "name": "/run/crond.pid"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 52664, "node": 131156, "name": "/bin/login"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655398, "name": "/lib/x86_64-linux-gnu/security/pam_systemd.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10376, "node": 656261, "name": "/lib/x86_64-linux-gnu/security/pam_umask.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10280, "node": 656234, "name": "/lib/x86_64-linux-gnu/security/pam_keyinit.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10312, "node": 656240, "name": "/lib/x86_64-linux-gnu/security/pam_mail.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656242, "name": "/lib/x86_64-linux-gnu/security/pam_motd.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14488, "node": 656235, "name": "/lib/x86_64-linux-gnu/security/pam_lastlog.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22872, "node": 656236, "name": "/lib/x86_64-linux-gnu/security/pam_limits.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14544, "node": 656232, "name": "/lib/x86_64-linux-gnu/security/pam_group.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10080, "node": 656222, "name": "/lib/x86_64-linux-gnu/security/pam_cap.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 6104, "node": 656245, "name": "/lib/x86_64-linux-gnu/security/pam_permit.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 5776, "node": 656224, "name": "/lib/x86_64-linux-gnu/security/pam_deny.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39208, "node": 656139, "name": "/lib/x86_64-linux-gnu/libcrypt-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60272, "node": 656262, "name": "/lib/x86_64-linux-gnu/security/pam_unix.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14464, "node": 656226, "name": "/lib/x86_64-linux-gnu/security/pam_env.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656239, "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18736, "node": 656250, "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10264, "node": 656244, "name": "/lib/x86_64-linux-gnu/security/pam_nologin.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10304, "node": 656249, "name": "/lib/x86_64-linux-gnu/security/pam_securetty.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10312, "node": 656229, "name": "/lib/x86_64-linux-gnu/security/pam_faildelay.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14576, "node": 656186, "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "3u", "type": "unix", "device": "0xffff98e4b460e800", "size_off": null, "node": 33487, "name": "type=DGRAM"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "6w", "type": "FIFO", "device": "0,23", "size_off": null, "node": 715, "name": "/run/systemd/sessions/1.ref"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 236584, "node": 918017, "name": "/usr/bin/dbus-daemon"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 64144, "node": 656127, "name": "/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 313496, "node": 656141, "name": "/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "1u", "type": "unix", "device": "0xffff98e4b637b800", "size_off": null, "node": 29165, "name": "type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "2u", "type": "unix", "device": "0xffff98e4b637b800", "size_off": null, "node": 29165, "name": "type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "3u", "type": "unix", "device": "0xffff98e4afa55c00", "size_off": null, "node": 27489, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "5u", "type": "sock", "device": "0,9", "size_off": null, "node": 29373, "name": "protocol: NETLINK"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "6u", "type": "unix", "device": "0xffff98e4b5c66400", "size_off": null, "node": 29374, "name": "type=DGRAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "7r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "8u", "type": "unix", "device": "0xffff98e4b5c63000", "size_off": null, "node": 29375, "name": "type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "9u", "type": "unix", "device": "0xffff98e4b5c67c00", "size_off": null, "node": 29376, "name": "type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "10u", "type": "unix", "device": "0xffff98e4b1dc2400", "size_off": null, "node": 29377, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "11u", "type": "unix", "device": "0xffff98e4b1d03400", "size_off": null, "node": 29378, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "12u", "type": "unix", "device": "0xffff98e4b5d86c00", "size_off": null, "node": 30460, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "13u", "type": "unix", "device": "0xffff98e4b6379c00", "size_off": null, "node": 29380, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "14u", "type": "unix", "device": "0xffff98e4b5c64800", "size_off": null, "node": 29381, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "15u", "type": "unix", "device": "0xffff98e4b5c62800", "size_off": null, "node": 29382, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "16u", "type": "unix", "device": "0xffff98e4b5d87800", "size_off": null, "node": 30630, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "17u", "type": "unix", "device": "0xffff98e4b5d85000", "size_off": null, "node": 30671, "name": "/var/run/dbus/system_bus_socket type=STREAM"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 4526456, "node": 918753, "name": "/usr/bin/python3.6"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 501680, "node": 923340, "name": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 66728, "node": 656133, "name": "/lib/x86_64-linux-gnu/libbz2.so.1.0.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 96616, "node": 656152, "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1594864, "node": 924414, "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1822008, "node": 924305, "name": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342624, "node": 919965, "name": "/usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 186076, "node": 1049145, "name": "/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 212456, "node": 924339, "name": "/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 315848, "node": 921267, "name": "/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19144, "node": 919958, "name": "/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 313496, "node": 656141, "name": "/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 159408, "node": 919957, "name": "/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4afa15800", "size_off": null, "node": 29474, "name": "type=STREAM"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4afa15800", "size_off": null, "node": 29474, "name": "type=STREAM"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "3w", "type": "REG", "device": "8,2", "size_off": 0, "node": 4981, "name": "/var/log/unattended-upgrades/unattended-upgrades-shutdown.log"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff98e4b5d85800", "size_off": null, "node": 30670, "name": "type=STREAM"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "8w", "type": "FIFO", "device": "0,23", "size_off": null, "node": 661, "name": "/run/systemd/inhibit/1.ref"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 4526456, "node": 918753, "name": "/usr/bin/python3.6"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 501680, "node": 923340, "name": "/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 66728, "node": 656133, "name": "/lib/x86_64-linux-gnu/libbz2.so.1.0.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 96616, "node": 656152, "name": "/lib/x86_64-linux-gnu/libgcc_s.so.1"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1594864, "node": 924414, "name": "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1822008, "node": 924305, "name": "/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342624, "node": 919965, "name": "/usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 186076, "node": 1049145, "name": "/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 212456, "node": 924339, "name": "/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 315848, "node": 921267, "name": "/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 19144, "node": 919958, "name": "/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 313496, "node": 656141, "name": "/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 159408, "node": 919957, "name": "/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4afa15800", "size_off": null, "node": 29474, "name": "type=STREAM"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4afa15800", "size_off": null, "node": 29474, "name": "type=STREAM"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "3w", "type": "REG", "device": "8,2", "size_off": 0, "node": 4981, "name": "/var/log/unattended-upgrades/unattended-upgrades-shutdown.log"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff98e4b5d85800", "size_off": null, "node": 30670, "name": "type=STREAM"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "6u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "8w", "type": "FIFO", "device": "0,23", "size_off": null, "node": 661, "name": "/run/systemd/inhibit/1.ref"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 5991, "name": "/var/spool/cron/atjobs"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 26632, "node": 924733, "name": "/usr/sbin/atd"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "3uW", "type": "REG", "device": "0,23", "size_off": 5, "node": 695, "name": "/run/atd.pid"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 40697760, "node": 940062, "name": "/usr/bin/containerd"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "mem-W", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b5d80c00", "size_off": null, "node": 29684, "name": "type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "3uW", "type": "REG", "device": "8,2", "size_off": 131072, "node": 399496, "name": "/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b942f000", "size_off": null, "node": 30726, "name": "/run/containerd/containerd.sock type=STREAM"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "7u", "type": "IPv4", "device": "30727", "size_off": null, "node": null, "name": "localhost:42351 (LISTEN)"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 786856, "node": 933045, "name": "/usr/sbin/sshd"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14256, "node": 656161, "name": "/lib/x86_64-linux-gnu/libkeyutils.so.1.5"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43616, "node": 924373, "name": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 199104, "node": 924370, "name": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14248, "node": 668487, "name": "/lib/x86_64-linux-gnu/libcom_err.so.2.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 877056, "node": 924372, "name": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 305456, "node": 924347, "name": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39208, "node": 656139, "name": "/lib/x86_64-linux-gnu/libcrypt-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2357760, "node": 924313, "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39784, "node": 656275, "name": "/lib/x86_64-linux-gnu/libwrap.so.0.7.6"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "1u", "type": "unix", "device": "0xffff98e4b1d8d800", "size_off": null, "node": 30152, "name": "type=STREAM"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "2u", "type": "unix", "device": "0xffff98e4b1d8d800", "size_off": null, "node": 30152, "name": "type=STREAM"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "3u", "type": "IPv4", "device": "30163", "size_off": null, "node": null, "name": "*:ssh (LISTEN)"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "4u", "type": "IPv6", "device": "30180", "size_off": null, "node": null, "name": "*:ssh (LISTEN)"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 56552, "node": 263600, "name": "/sbin/agetty"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 199772, "node": 918701, "name": "/usr/lib/locale/C.UTF-8/LC_CTYPE"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "4,1", "size_off": null, "node": 20, "name": "/dev/tty1"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "4,1", "size_off": null, "node": 20, "name": "/dev/tty1"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "4,1", "size_off": null, "node": 20, "name": "/dev/tty1"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "4r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 14552, "node": 918752, "name": "/usr/lib/policykit-1/polkitd"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 114000, "node": 924402, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 106712, "node": 924401, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b5d87c00", "size_off": null, "node": 30459, "name": "type=STREAM"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "8r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "9r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 14552, "node": 918752, "name": "/usr/lib/policykit-1/polkitd"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 114000, "node": 924402, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 106712, "node": 924401, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b5d87c00", "size_off": null, "node": 30459, "name": "type=STREAM"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "8r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "9r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 14552, "node": 918752, "name": "/usr/lib/policykit-1/polkitd"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 202880, "node": 655558, "name": "/lib/x86_64-linux-gnu/libexpat.so.1.6.7"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 114000, "node": 924402, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31032, "node": 924332, "name": "/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14232, "node": 924341, "name": "/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 106712, "node": 924401, "name": "/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1137968, "node": 924340, "name": "/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 342072, "node": 924344, "name": "/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1690808, "node": 924338, "name": "/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b5d87c00", "size_off": null, "node": 30459, "name": "type=STREAM"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "7u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "8r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "9r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1532/exe"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1595792, "node": 668802, "name": "/lib/systemd/systemd"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 64144, "node": 656127, "name": "/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 92208, "node": 656162, "name": "/lib/x86_64-linux-gnu/libkmod.so.2.3.2"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "1u", "type": "unix", "device": "0xffff98e4b460c400", "size_off": null, "node": 33601, "name": "type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "2u", "type": "unix", "device": "0xffff98e4b460c400", "size_off": null, "node": 33601, "name": "type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "3u", "type": "unix", "device": "0xffff98e4b31f0800", "size_off": null, "node": 33650, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "6r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "7r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1263, "name": "/sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "8u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 33759, "name": "KOBJECT_UEVENT"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "10u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "11r", "type": "REG", "device": "0,4", "size_off": 0, "node": 33761, "name": "/proc/1723/mountinfo"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "12r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "13r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532068, "name": "/proc/swaps"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "14u", "type": "unix", "device": "0xffff98e4b31f4800", "size_off": null, "node": 33762, "name": "/run/user/1000/systemd/notify type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "15u", "type": "unix", "device": "0xffff98e4b31f2800", "size_off": null, "node": 33763, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "16u", "type": "unix", "device": "0xffff98e4b31f2000", "size_off": null, "node": 33764, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "17u", "type": "unix", "device": "0xffff98e4b31f3800", "size_off": null, "node": 33765, "name": "/run/user/1000/systemd/private type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "22u", "type": "unix", "device": "0xffff98e4b31f1000", "size_off": null, "node": 33808, "name": "/run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "23u", "type": "unix", "device": "0xffff98e4b31f6800", "size_off": null, "node": 33809, "name": "/run/user/1000/gnupg/S.dirmngr type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "24u", "type": "unix", "device": "0xffff98e4b31f2c00", "size_off": null, "node": 33810, "name": "/run/user/1000/gnupg/S.gpg-agent.browser type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "25u", "type": "unix", "device": "0xffff98e4b31f4c00", "size_off": null, "node": 33811, "name": "/run/user/1000/gnupg/S.gpg-agent type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "26u", "type": "unix", "device": "0xffff98e4b31f1400", "size_off": null, "node": 33812, "name": "/run/user/1000/gnupg/S.gpg-agent.extra type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "27u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1595792, "node": 668802, "name": "/lib/systemd/systemd"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10080, "node": 656222, "name": "/lib/x86_64-linux-gnu/security/pam_cap.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14576, "node": 656186, "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655398, "name": "/lib/x86_64-linux-gnu/security/pam_systemd.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10376, "node": 656261, "name": "/lib/x86_64-linux-gnu/security/pam_umask.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22872, "node": 656236, "name": "/lib/x86_64-linux-gnu/security/pam_limits.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656239, "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18736, "node": 656250, "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 6104, "node": 656245, "name": "/lib/x86_64-linux-gnu/security/pam_permit.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 5776, "node": 656224, "name": "/lib/x86_64-linux-gnu/security/pam_deny.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39208, "node": 656139, "name": "/lib/x86_64-linux-gnu/libcrypt-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60272, "node": 656262, "name": "/lib/x86_64-linux-gnu/security/pam_unix.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 64144, "node": 656127, "name": "/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 92208, "node": 656162, "name": "/lib/x86_64-linux-gnu/libkmod.so.2.3.2"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "1u", "type": "unix", "device": "0xffff98e4b460c400", "size_off": null, "node": 33601, "name": "type=STREAM"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "2u", "type": "unix", "device": "0xffff98e4b460c400", "size_off": null, "node": 33601, "name": "type=STREAM"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "3u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventfd]"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "6w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 33602, "name": "pipe"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "7u", "type": "unix", "device": "0xffff98e4b31f1800", "size_off": null, "node": 33638, "name": "type=DGRAM"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1113504, "node": 131099, "name": "/bin/bash"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170784, "node": 656210, "name": "/lib/x86_64-linux-gnu/libtinfo.so.5.9"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3451/exe"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3657/exe"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15892/exe"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15896/exe"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15900/exe"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15901/exe"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15902/exe"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 786856, "node": 933045, "name": "/usr/sbin/sshd"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14464, "node": 656226, "name": "/lib/x86_64-linux-gnu/security/pam_env.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22872, "node": 656236, "name": "/lib/x86_64-linux-gnu/security/pam_limits.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10312, "node": 656240, "name": "/lib/x86_64-linux-gnu/security/pam_mail.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656242, "name": "/lib/x86_64-linux-gnu/security/pam_motd.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14576, "node": 656186, "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655398, "name": "/lib/x86_64-linux-gnu/security/pam_systemd.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10376, "node": 656261, "name": "/lib/x86_64-linux-gnu/security/pam_umask.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10280, "node": 656234, "name": "/lib/x86_64-linux-gnu/security/pam_keyinit.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656239, "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18736, "node": 656250, "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10264, "node": 656244, "name": "/lib/x86_64-linux-gnu/security/pam_nologin.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10080, "node": 656222, "name": "/lib/x86_64-linux-gnu/security/pam_cap.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 6104, "node": 656245, "name": "/lib/x86_64-linux-gnu/security/pam_permit.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 5776, "node": 656224, "name": "/lib/x86_64-linux-gnu/security/pam_deny.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60272, "node": 656262, "name": "/lib/x86_64-linux-gnu/security/pam_unix.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14256, "node": 656161, "name": "/lib/x86_64-linux-gnu/libkeyutils.so.1.5"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43616, "node": 924373, "name": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 199104, "node": 924370, "name": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14248, "node": 668487, "name": "/lib/x86_64-linux-gnu/libcom_err.so.2.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 877056, "node": 924372, "name": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 305456, "node": 924347, "name": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39208, "node": 656139, "name": "/lib/x86_64-linux-gnu/libcrypt-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2357760, "node": 924313, "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39784, "node": 656275, "name": "/lib/x86_64-linux-gnu/libwrap.so.0.7.6"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "3u", "type": "IPv4", "device": "207375", "size_off": null, "node": null, "name": "kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED)"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff98e4b3fe6c00", "size_off": null, "node": 207447, "name": "type=DGRAM"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "5u", "type": "CHR", "device": "5,2", "size_off": null, "node": 86, "name": "/dev/ptmx"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "6u", "type": "unix", "device": "0xffff98e4b3fe3000", "size_off": null, "node": 207714, "name": "type=STREAM"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "7w", "type": "FIFO", "device": "0,23", "size_off": null, "node": 719, "name": "/run/systemd/sessions/49.ref"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 786856, "node": 933045, "name": "/usr/sbin/sshd"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14464, "node": 656226, "name": "/lib/x86_64-linux-gnu/security/pam_env.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22872, "node": 656236, "name": "/lib/x86_64-linux-gnu/security/pam_limits.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10312, "node": 656240, "name": "/lib/x86_64-linux-gnu/security/pam_mail.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656242, "name": "/lib/x86_64-linux-gnu/security/pam_motd.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14576, "node": 656186, "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655398, "name": "/lib/x86_64-linux-gnu/security/pam_systemd.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10376, "node": 656261, "name": "/lib/x86_64-linux-gnu/security/pam_umask.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10280, "node": 656234, "name": "/lib/x86_64-linux-gnu/security/pam_keyinit.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10336, "node": 656239, "name": "/lib/x86_64-linux-gnu/security/pam_loginuid.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18736, "node": 656250, "name": "/lib/x86_64-linux-gnu/security/pam_selinux.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10264, "node": 656244, "name": "/lib/x86_64-linux-gnu/security/pam_nologin.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10080, "node": 656222, "name": "/lib/x86_64-linux-gnu/security/pam_cap.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 6104, "node": 656245, "name": "/lib/x86_64-linux-gnu/security/pam_permit.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 5776, "node": 656224, "name": "/lib/x86_64-linux-gnu/security/pam_deny.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60272, "node": 656262, "name": "/lib/x86_64-linux-gnu/security/pam_unix.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 101168, "node": 656200, "name": "/lib/x86_64-linux-gnu/libresolv-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14256, "node": 656161, "name": "/lib/x86_64-linux-gnu/libkeyutils.so.1.5"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43616, "node": 924373, "name": "/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 199104, "node": 924370, "name": "/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14248, "node": 668487, "name": "/lib/x86_64-linux-gnu/libcom_err.so.2.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 877056, "node": 924372, "name": "/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 305456, "node": 924347, "name": "/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39208, "node": 656139, "name": "/lib/x86_64-linux-gnu/libcrypt-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 116960, "node": 656216, "name": "/lib/x86_64-linux-gnu/libz.so.1.2.11"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2357760, "node": 924313, "name": "/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 536648, "node": 662910, "name": "/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39784, "node": 656275, "name": "/lib/x86_64-linux-gnu/libwrap.so.0.7.6"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "3u", "type": "IPv4", "device": "207375", "size_off": null, "node": null, "name": "kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED)"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "4u", "type": "unix", "device": "0xffff98e4b3fe6c00", "size_off": null, "node": 207447, "name": "type=DGRAM"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "5u", "type": "unix", "device": "0xffff98e4b3fe4800", "size_off": null, "node": 207713, "name": "type=STREAM"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "6r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 207717, "name": "pipe"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "7w", "type": "FIFO", "device": "0,23", "size_off": null, "node": 719, "name": "/run/systemd/sessions/49.ref"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "8w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 207717, "name": "pipe"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "9u", "type": "CHR", "device": "5,2", "size_off": null, "node": 86, "name": "/dev/ptmx"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "11u", "type": "CHR", "device": "5,2", "size_off": null, "node": 86, "name": "/dev/ptmx"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "12u", "type": "CHR", "device": "5,2", "size_off": null, "node": 86, "name": "/dev/ptmx"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1113504, "node": 131099, "name": "/bin/bash"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170784, "node": 656210, "name": "/lib/x86_64-linux-gnu/libtinfo.so.5.9"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19890/exe"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23282/exe"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23289/exe"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23310/exe"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23851/exe"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1113504, "node": 131099, "name": "/bin/bash"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170784, "node": 656210, "name": "/lib/x86_64-linux-gnu/libtinfo.so.5.9"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "255r", "type": "REG", "device": "8,2", "size_off": 1568, "node": 528300, "name": "/home/kbrazil/testfiles/tests.sh"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 149080, "node": 923438, "name": "/usr/bin/sudo"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14576, "node": 656186, "name": "/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655398, "name": "/lib/x86_64-linux-gnu/security/pam_systemd.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10376, "node": 656261, "name": "/lib/x86_64-linux-gnu/security/pam_umask.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10080, "node": 656222, "name": "/lib/x86_64-linux-gnu/security/pam_cap.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 6104, "node": 656245, "name": "/lib/x86_64-linux-gnu/security/pam_permit.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 5776, "node": 656224, "name": "/lib/x86_64-linux-gnu/security/pam_deny.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39208, "node": 656139, "name": "/lib/x86_64-linux-gnu/libcrypt-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 60272, "node": 656262, "name": "/lib/x86_64-linux-gnu/security/pam_unix.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14464, "node": 656226, "name": "/lib/x86_64-linux-gnu/security/pam_env.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 258040, "node": 655397, "name": "/lib/x86_64-linux-gnu/libnss_systemd.so.2"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 354592, "node": 940088, "name": "/usr/lib/sudo/sudoers.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84360, "node": 940083, "name": "/usr/lib/sudo/libsudo_util.so.0.0.0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 10592, "node": 656214, "name": "/lib/x86_64-linux-gnu/libutil-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "1w", "type": "REG", "device": "8,2", "size_off": 0, "node": 528287, "name": "/home/kbrazil/testfiles/lsof-sudo.out"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "3u", "type": "netlink", "device": null, "size_off": null, "node": 340065, "name": "AUDIT"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "4u", "type": "unix", "device": "0xffff98e4b4afb800", "size_off": null, "node": 340069, "name": "type=DGRAM"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "6r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 340072, "name": "pipe"}, {"command": "sudo", "pid": 23914, "tid": null, "user": "root", "fd": "7w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 340072, "name": "pipe"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 163224, "node": 918160, "name": "/usr/bin/lsof"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "1w", "type": "REG", "device": "8,2", "size_off": 0, "node": 528287, "name": "/home/kbrazil/testfiles/lsof-sudo.out"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "3r", "type": "DIR", "device": "0,4", "size_off": 0, "node": 1, "name": "/proc"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "4r", "type": "DIR", "device": "0,4", "size_off": 0, "node": 340074, "name": "/proc/23915/fd"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "5w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 340083, "name": "pipe"}, {"command": "lsof", "pid": 23915, "tid": null, "user": "root", "fd": "6r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 340084, "name": "pipe"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 163224, "node": 918160, "name": "/usr/bin/lsof"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "4r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 340083, "name": "pipe"}, {"command": "lsof", "pid": 23916, "tid": null, "user": "root", "fd": "7w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 340084, "name": "pipe"}] +[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"3w","type":"CHR","device":"1,11","size_off":0,"node":12,"name":"/dev/kmsg"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"6r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"7r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/sys/fs/cgroup/unified"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":20650,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"11r","type":"REG","device":"0,4","size_off":0,"node":20651,"name":"/proc/1/mountinfo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"12r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"13r","type":"REG","device":"0,4","size_off":0,"node":4026532068,"name":"/proc/swaps"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"14r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"15r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"16r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"17u","type":"unix","device":"0xffff98e47234b800","size_off":0,"node":20655,"name":"/run/systemd/private type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"19u","type":"unix","device":"0xffff98e4b3fed400","size_off":0,"node":76786,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"20u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"21u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"22u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"23u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"24u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"25u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"26u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"27u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"28u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"29u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"30u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-map"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"31u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"32u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"bpf-prog"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"36r","type":"CHR","device":"10,235","size_off":0,"node":401,"name":"/dev/autofs"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"37u","type":"unix","device":"0xffff98e472348000","size_off":0,"node":20652,"name":"/run/systemd/notify type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff98e472349c00","size_off":0,"node":20653,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff98e472349400","size_off":0,"node":20654,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff98e4afa57400","size_off":0,"node":25276,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"41u","type":"unix","device":"0xffff98e4afa54800","size_off":0,"node":25277,"name":"type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"42u","type":"unix","device":"0xffff98e4b1d02400","size_off":0,"node":27475,"name":"/run/uuidd/request type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"43u","type":"netlink","device":null,"size_off":0,"node":20810,"name":"ROUTE"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"44u","type":"netlink","device":null,"size_off":0,"node":21114,"name":"AUDIT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"45u","type":"netlink","device":null,"size_off":0,"node":21021,"name":"AUDIT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"46u","type":"FIFO","device":"0,23","size_off":0,"node":329,"name":"/run/systemd/initctl/fifo"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"47u","type":"unix","device":"0xffff98e473ed4000","size_off":0,"node":20812,"name":"/run/udev/control type=SEQPACKET"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"48u","type":"CHR","device":"10,62","size_off":0,"node":4,"name":"/dev/rfkill"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"49u","type":"unix","device":"0xffff98e4afa55c00","size_off":0,"node":27489,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"50u","type":"unix","device":"0xffff98e4b1d00800","size_off":0,"node":27473,"name":"/run/acpid.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"51r","type":"FIFO","device":"0,12","size_off":0,"node":20976,"name":"pipe"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"52u","type":"unix","device":"0xffff98e47234ac00","size_off":0,"node":20664,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"53u","type":"unix","device":"0xffff98e47234a000","size_off":0,"node":20666,"name":"/run/systemd/journal/socket type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"54u","type":"unix","device":"0xffff98e4b1dc4800","size_off":0,"node":27481,"name":"/var/run/docker.sock type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"55u","type":"netlink","device":null,"size_off":0,"node":20809,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"56u","type":"unix","device":"0xffff98e4affb0c00","size_off":0,"node":21581,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"57u","type":"unix","device":"0xffff98e4b5abbc00","size_off":0,"node":21583,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"59u","type":"unix","device":"0xffff98e4b1dc3800","size_off":0,"node":25402,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"60u","type":"unix","device":"0xffff98e4aff63c00","size_off":0,"node":25415,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"61u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"62u","type":"unix","device":"0xffff98e4b8d57800","size_off":0,"node":26063,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"63u","type":"unix","device":"0xffff98e4afa6b800","size_off":0,"node":26728,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"64u","type":"unix","device":"0xffff98e4afa55800","size_off":0,"node":26944,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"65u","type":"unix","device":"0xffff98e4b905b400","size_off":0,"node":27669,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"66u","type":"unix","device":"0xffff98e4afd8cc00","size_off":0,"node":27981,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"67u","type":"unix","device":"0xffff98e4b911a000","size_off":0,"node":28133,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"68u","type":"unix","device":"0xffff98e471d09c00","size_off":0,"node":28695,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"69u","type":"unix","device":"0xffff98e4affb3c00","size_off":0,"node":28696,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"70u","type":"unix","device":"0xffff98e4b637d000","size_off":0,"node":29168,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"71u","type":"unix","device":"0xffff98e4b637d800","size_off":0,"node":29169,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"72u","type":"unix","device":"0xffff98e4b6063c00","size_off":0,"node":29558,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"73u","type":"unix","device":"0xffff98e4b5d82400","size_off":0,"node":29685,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"74u","type":"unix","device":"0xffff98e4b1d8b800","size_off":0,"node":30153,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"75u","type":"unix","device":"0xffff98e4b460dc00","size_off":0,"node":33603,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"76u","type":"unix","device":"0xffff98e4b637f800","size_off":0,"node":29166,"name":"type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"77u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"78u","type":"unix","device":"0xffff98e47234ec00","size_off":0,"node":20662,"name":"/run/lvm/lvmetad.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"81u","type":"unix","device":"0xffff98e4b1dc3400","size_off":0,"node":27468,"name":"/var/lib/lxd/unix.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"82u","type":"unix","device":"0xffff98e4b1ea3800","size_off":0,"node":20891,"name":"/run/lvm/lvmpolld.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"85u","type":"unix","device":"0xffff98e4b59c1000","size_off":0,"node":27436,"name":"@ISCSIADM_ABSTRACT_NAMESPACE type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"87u","type":"unix","device":"0xffff98e4b9565c00","size_off":0,"node":21016,"name":"/run/systemd/journal/dev-log type=DGRAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"88u","type":"FIFO","device":"0,23","size_off":0,"node":314,"name":"/run/dmeventd-server"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"92u","type":"FIFO","device":"0,23","size_off":0,"node":315,"name":"/run/dmeventd-client"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"93u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"94u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/exe"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"0,6","size_off":4060,"node":2,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"0,6","size_off":4060,"node":2,"name":"/"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/exe"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/exe"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/exe"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/exe"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/exe"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/exe"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/exe"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/exe"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/exe"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/exe"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/exe"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/exe"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/exe"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/exe"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/exe"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/exe"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/exe"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/exe"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/exe"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/exe"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/exe"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/exe"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/exe"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/exe"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/exe"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/exe"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/exe"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/exe"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/exe"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/exe"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/exe"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/exe"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/exe"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/exe"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/exe"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/exe"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/exe"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/exe"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/exe"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/exe"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/exe"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/exe"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/exe"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/exe"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/exe"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/exe"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/exe"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/exe"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/exe"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/exe"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/exe"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/exe"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/exe"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/exe"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/exe"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/exe"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/exe"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/exe"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/exe"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/exe"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/exe"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/exe"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/exe"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/exe"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/exe"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/exe"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/exe"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/exe"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/exe"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/exe"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/exe"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/exe"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/exe"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/exe"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/exe"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/exe"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/exe"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/exe"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/exe"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/exe"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/exe"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/exe"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/exe"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/exe"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/exe"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/exe"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":129096,"node":668815,"name":"/lib/systemd/systemd-journald"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":8388608,"node":1070319,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":8388608,"node":1070318,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"mem","type":"REG","device":"0,23","size_off":8,"node":340,"name":"/run/systemd/journal/kernel-seqnum"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b9565c00","size_off":0,"node":21016,"name":"/run/systemd/journal/dev-log type=DGRAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":21021,"name":"AUDIT"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff98e47234ac00","size_off":0,"node":20664,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e47234a000","size_off":0,"node":20666,"name":"/run/systemd/journal/socket type=DGRAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"7w","type":"CHR","device":"1,11","size_off":0,"node":12,"name":"/dev/kmsg"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"9u","type":"CHR","device":"1,11","size_off":0,"node":12,"name":"/dev/kmsg"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"10r","type":"REG","device":"0,4","size_off":0,"node":21260,"name":"/proc/sys/kernel/hostname"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"11u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"14u","type":"unix","device":"0xffff98e4b1ea0400","size_off":0,"node":21261,"name":"type=DGRAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"15u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"16u","type":"unix","device":"0xffff98e4b8d57800","size_off":0,"node":26063,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"17u","type":"REG","device":"8,2","size_off":8388608,"node":1070318,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/system.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"18u","type":"unix","device":"0xffff98e4aff63c00","size_off":0,"node":25415,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"19u","type":"unix","device":"0xffff98e4b1dc3800","size_off":0,"node":25402,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"20u","type":"unix","device":"0xffff98e4affb0c00","size_off":0,"node":21581,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"21u","type":"unix","device":"0xffff98e4afa6b800","size_off":0,"node":26728,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"22u","type":"unix","device":"0xffff98e4b460dc00","size_off":0,"node":33603,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"23u","type":"unix","device":"0xffff98e4b5abbc00","size_off":0,"node":21583,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"24u","type":"unix","device":"0xffff98e4b905b400","size_off":0,"node":27669,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"25u","type":"unix","device":"0xffff98e4afa55800","size_off":0,"node":26944,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"26u","type":"unix","device":"0xffff98e4b6063c00","size_off":0,"node":29558,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"27u","type":"REG","device":"8,2","size_off":8388608,"node":1070319,"name":"/var/log/journal/076ee0d2cc5741a98a2b4e4638a69bfe/user-1000.journal"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"29u","type":"unix","device":"0xffff98e4afd8cc00","size_off":0,"node":27981,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"30u","type":"unix","device":"0xffff98e4b911a000","size_off":0,"node":28133,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"33u","type":"unix","device":"0xffff98e4b1d8b800","size_off":0,"node":30153,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"34u","type":"unix","device":"0xffff98e471d09c00","size_off":0,"node":28695,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"35u","type":"unix","device":"0xffff98e4affb3c00","size_off":0,"node":28696,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"38u","type":"unix","device":"0xffff98e4b637d000","size_off":0,"node":29168,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"39u","type":"unix","device":"0xffff98e4b637d800","size_off":0,"node":29169,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"40u","type":"unix","device":"0xffff98e4b5d82400","size_off":0,"node":29685,"name":"/run/systemd/journal/stdout type=STREAM"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/exe"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":584136,"node":668654,"name":"/lib/systemd/systemd-udevd"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1258796,"node":655702,"name":"/lib/modules/4.15.0-65-generic/modules.alias.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":8962391,"node":655396,"name":"/lib/udev/hwdb.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":721695,"node":662916,"name":"/lib/modules/4.15.0-65-generic/modules.symbols.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":782483,"node":669924,"name":"/lib/modules/4.15.0-65-generic/modules.dep.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":9685,"node":662917,"name":"/lib/modules/4.15.0-65-generic/modules.builtin.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4affb4000","size_off":0,"node":21388,"name":"type=STREAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4affb4000","size_off":0,"node":21388,"name":"type=STREAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e473ed4000","size_off":0,"node":20812,"name":"/run/udev/control type=SEQPACKET"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":20809,"name":"KOBJECT_UEVENT"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b96e1400","size_off":0,"node":21588,"name":"type=DGRAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"6r","type":"REG","device":"8,2","size_off":8962391,"node":655396,"name":"/lib/udev/hwdb.bin"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b9565400","size_off":0,"node":21598,"name":"type=DGRAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b9560400","size_off":0,"node":21599,"name":"type=DGRAM"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"11u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":84104,"node":263670,"name":"/sbin/lvmetad"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5abec00","size_off":0,"node":21498,"name":"type=STREAM"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5abec00","size_off":0,"node":21498,"name":"type=STREAM"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e47234ec00","size_off":0,"node":20662,"name":"/run/lvm/lvmetad.socket type=STREAM"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"4wW","type":"REG","device":"0,23","size_off":4,"node":361,"name":"/run/lvmetad.pid"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/exe"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/exe"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/exe"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/exe"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/exe"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/exe"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/exe"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/exe"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/exe"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/exe"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/exe"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/exe"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"txt","type":"REG","device":"8,2","size_off":38976,"node":668835,"name":"/lib/systemd/systemd-timesyncd"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"1u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"2u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"3u","type":"unix","device":"0xffff98e4afa5e000","size_off":0,"node":25426,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"7u","type":"unix","device":"0xffff98e4afa57800","size_off":0,"node":25429,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"8u","type":"unix","device":"0xffff98e4afa54400","size_off":0,"node":25430,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"9u","type":"unix","device":"0xffff98e4afa52800","size_off":0,"node":25431,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"10u","type":"unix","device":"0xffff98e4afa56800","size_off":0,"node":25432,"name":"type=DGRAM"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"11r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"txt","type":"REG","device":"8,2","size_off":38976,"node":668835,"name":"/lib/systemd/systemd-timesyncd"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"1u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"2u","type":"unix","device":"0xffff98e4aff66400","size_off":0,"node":25414,"name":"type=STREAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"3u","type":"unix","device":"0xffff98e4afa5e000","size_off":0,"node":25426,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"7u","type":"unix","device":"0xffff98e4afa57800","size_off":0,"node":25429,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"8u","type":"unix","device":"0xffff98e4afa54400","size_off":0,"node":25430,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"9u","type":"unix","device":"0xffff98e4afa52800","size_off":0,"node":25431,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"10u","type":"unix","device":"0xffff98e4afa56800","size_off":0,"node":25432,"name":"type=DGRAM"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"11r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"12u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":125144,"node":917875,"name":"/usr/bin/VGAuthService"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26904264,"node":924354,"name":"/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1792008,"node":924359,"name":"/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"DEL","type":"REG","device":"8,2","size_off":null,"node":924429,"name":"/usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2917216,"node":924314,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":577312,"node":924413,"name":"/usr/lib/x86_64-linux-gnu/libssl.so.1.1"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1834232,"node":924426,"name":"/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":408688,"node":924428,"name":"/usr/lib/x86_64-linux-gnu/libxmlsec1.so.1.2.25"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":270800,"node":924427,"name":"/usr/lib/x86_64-linux-gnu/libxmlsec1-openssl.so.1.2.25"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b1dc2800","size_off":0,"node":25401,"name":"type=STREAM"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b1dc2800","size_off":0,"node":25401,"name":"type=STREAM"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4afa6a400","size_off":0,"node":25533,"name":"type=DGRAM"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"4r","type":"FIFO","device":"0,12","size_off":0,"node":25543,"name":"pipe"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,12","size_off":0,"node":25543,"name":"pipe"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"7r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"8r","type":"CHR","device":"1,8","size_off":0,"node":10,"name":"/dev/random"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"9u","type":"unix","device":"0xffff98e4afa69400","size_off":0,"node":25548,"name":"/var/run/vmware/guestServicePipe type=STREAM"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/exe"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":51456,"node":918412,"name":"/usr/bin/vmtoolsd"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":35544,"node":918745,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18696,"node":918744,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14712,"node":918742,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":36616,"node":918741,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":23080,"node":918740,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":75776,"node":924385,"name":"/usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31296,"node":918471,"name":"/usr/lib/libDeployPkg.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14696,"node":918739,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":85144,"node":918476,"name":"/usr/lib/libvgauth.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":126520,"node":918736,"name":"/usr/lib/open-vm-tools/plugins/common/libvix.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":163152,"node":918475,"name":"/usr/lib/libhgfs.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10440,"node":918735,"name":"/usr/lib/open-vm-tools/plugins/common/libhgfsServer.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26904264,"node":924354,"name":"/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2917216,"node":924314,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":577312,"node":924413,"name":"/usr/lib/x86_64-linux-gnu/libssl.so.1.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1792008,"node":924359,"name":"/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2754872,"node":924355,"name":"/usr/lib/x86_64-linux-gnu/libicui18n.so.60.2"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60936,"node":924323,"name":"/usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":623592,"node":918477,"name":"/usr/lib/libvmtools.so.0.0.0"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":33789,"node":1058855,"name":"/var/log/vmware-vmsvc.log"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"5r","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"8u","type":"sock","device":"0,9","size_off":0,"node":26217,"name":"protocol: AF_VSOCK"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"9r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"10r","type":"CHR","device":"1,8","size_off":0,"node":10,"name":"/dev/random"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":51456,"node":918412,"name":"/usr/bin/vmtoolsd"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":35544,"node":918745,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18696,"node":918744,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libtimeSync.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14712,"node":918742,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libpowerOps.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":36616,"node":918741,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libguestInfo.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":23080,"node":918740,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libgrabbitmqProxy.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":75776,"node":924385,"name":"/usr/lib/x86_64-linux-gnu/libmspack.so.0.1.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31296,"node":918471,"name":"/usr/lib/libDeployPkg.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14696,"node":918739,"name":"/usr/lib/open-vm-tools/plugins/vmsvc/libdeployPkgPlugin.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":85144,"node":918476,"name":"/usr/lib/libvgauth.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":126520,"node":918736,"name":"/usr/lib/open-vm-tools/plugins/common/libvix.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":163152,"node":918475,"name":"/usr/lib/libhgfs.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10440,"node":918735,"name":"/usr/lib/open-vm-tools/plugins/common/libhgfsServer.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26904264,"node":924354,"name":"/usr/lib/x86_64-linux-gnu/libicudata.so.60.2"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2917216,"node":924314,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":577312,"node":924413,"name":"/usr/lib/x86_64-linux-gnu/libssl.so.1.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1792008,"node":924359,"name":"/usr/lib/x86_64-linux-gnu/libicuuc.so.60.2"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2754872,"node":924355,"name":"/usr/lib/x86_64-linux-gnu/libicui18n.so.60.2"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60936,"node":924323,"name":"/usr/lib/x86_64-linux-gnu/libdumbnet.so.1.0.1"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":623592,"node":918477,"name":"/usr/lib/libvmtools.so.0.0.0"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b8d51000","size_off":0,"node":26000,"name":"type=STREAM"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":33789,"node":1058855,"name":"/var/log/vmware-vmsvc.log"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"5r","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"6w","type":"FIFO","device":"0,12","size_off":0,"node":26072,"name":"pipe"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"8u","type":"sock","device":"0,9","size_off":0,"node":26217,"name":"protocol: AF_VSOCK"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"9r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"10r","type":"CHR","device":"1,8","size_off":0,"node":10,"name":"/dev/random"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"txt","type":"REG","device":"8,2","size_off":1625168,"node":668820,"name":"/lib/systemd/systemd-networkd"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"1u","type":"unix","device":"0xffff98e4afa6f000","size_off":0,"node":26727,"name":"type=STREAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"2u","type":"unix","device":"0xffff98e4afa6f000","size_off":0,"node":26727,"name":"type=STREAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"3u","type":"netlink","device":null,"size_off":0,"node":20810,"name":"ROUTE"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"4u","type":"unix","device":"0xffff98e4afd88c00","size_off":0,"node":26760,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"9u","type":"netlink","device":null,"size_off":0,"node":26768,"name":"GENERIC"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"10u","type":"netlink","device":null,"size_off":0,"node":26769,"name":"KOBJECT_UEVENT"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"11u","type":"unix","device":"0xffff98e4afd89000","size_off":0,"node":26770,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"12u","type":"unix","device":"0xffff98e4afd89c00","size_off":0,"node":26771,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"13u","type":"unix","device":"0xffff98e4afd8c000","size_off":0,"node":26772,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"14u","type":"unix","device":"0xffff98e4afd8b400","size_off":0,"node":26773,"name":"type=DGRAM"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"15u","type":"IPv4","device":"336698","size_off":0,"node":null,"name":"kbrazil-ubuntu:bootpc"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"16u","type":"pack","device":"26967","size_off":0,"node":35020,"name":"type=SOCK_RAW"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"17u","type":"raw6","device":null,"size_off":0,"node":271764,"name":"00000000000000000000000000000000:003A->00000000000000000000000000000000:0000 st=07"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"18u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"20u","type":"unix","device":"0xffff98e4b1d02c00","size_off":0,"node":27494,"name":"type=STREAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"txt","type":"REG","device":"8,2","size_off":378944,"node":668826,"name":"/lib/systemd/systemd-resolved"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"1u","type":"unix","device":"0xffff98e4afa55400","size_off":0,"node":26941,"name":"type=STREAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"2u","type":"unix","device":"0xffff98e4afa55400","size_off":0,"node":26941,"name":"type=STREAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"3u","type":"unix","device":"0xffff98e4b1dc1800","size_off":0,"node":26986,"name":"type=DGRAM"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"7r","type":"REG","device":"0,4","size_off":0,"node":21260,"name":"/proc/sys/kernel/hostname"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"9u","type":"netlink","device":null,"size_off":0,"node":27002,"name":"ROUTE"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"11u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"12u","type":"IPv4","device":"27005","size_off":0,"node":null,"name":"localhost:domain"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"13u","type":"IPv4","device":"27006","size_off":0,"node":null,"name":"localhost:domain (LISTEN)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"14u","type":"unix","device":"0xffff98e4b1dc4000","size_off":0,"node":27493,"name":"type=STREAM"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"txt","type":"REG","device":"8,2","size_off":680488,"node":924792,"name":"/usr/sbin/rsyslogd"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":19448,"node":1050299,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imklog.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":36744,"node":1050306,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/imuxsock.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27192,"node":1050307,"name":"/usr/lib/x86_64-linux-gnu/rsyslog/lmnet.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":43720,"node":924331,"name":"/usr/lib/x86_64-linux-gnu/libfastjson.so.4.2.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14344,"node":924327,"name":"/usr/lib/x86_64-linux-gnu/libestr.so.0.0.0"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"1w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"2w","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"3u","type":"unix","device":"0xffff98e47234c800","size_off":0,"node":20660,"name":"/run/systemd/journal/syslog type=DGRAM"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"4r","type":"CHR","device":"1,9","size_off":0,"node":11,"name":"/dev/urandom"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"5r","type":"REG","device":"0,4","size_off":0,"node":4026532032,"name":"/proc/kmsg"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"6u","type":"unix","device":"0xffff98e4b96e6000","size_off":0,"node":28224,"name":"type=DGRAM"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"7w","type":"REG","device":"8,2","size_off":28996,"node":1053407,"name":"/var/log/auth.log"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"8w","type":"REG","device":"8,2","size_off":8045,"node":1051996,"name":"/var/log/syslog"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":74664,"node":919258,"name":"/usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b5d86400","size_off":0,"node":30629,"name":"type=STREAM"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":74664,"node":919258,"name":"/usr/lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b905c400","size_off":0,"node":27668,"name":"type=STREAM"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b5d86400","size_off":0,"node":30629,"name":"type=STREAM"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":18504,"node":918166,"name":"/usr/bin/lxcfs"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":67424,"node":1049161,"name":"/usr/lib/x86_64-linux-gnu/lxcfs/liblxcfs.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":243832,"node":656151,"name":"/lib/x86_64-linux-gnu/libfuse.so.2.9.7"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b937c000","size_off":0,"node":27978,"name":"type=STREAM"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":4,"node":673,"name":"/run/lxcfs.pid"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"4u","type":"CHR","device":"10,229","size_off":0,"node":85,"name":"/dev/fuse"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"5r","type":"REG","device":"0,3","size_off":0,"node":4026532577,"name":"mnt"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"6r","type":"DIR","device":"0,41","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpu,cpuacct"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"7r","type":"DIR","device":"0,40","size_off":0,"node":1,"name":"/run/lxcfs/controllers/pids"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"8r","type":"DIR","device":"0,39","size_off":0,"node":1,"name":"/run/lxcfs/controllers/cpuset"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"9r","type":"DIR","device":"0,38","size_off":0,"node":1,"name":"/run/lxcfs/controllers/blkio"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"10r","type":"DIR","device":"0,37","size_off":0,"node":1,"name":"/run/lxcfs/controllers/rdma"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"11r","type":"DIR","device":"0,36","size_off":0,"node":1,"name":"/run/lxcfs/controllers/perf_event"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"12r","type":"DIR","device":"0,35","size_off":0,"node":1,"name":"/run/lxcfs/controllers/hugetlb"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"13r","type":"DIR","device":"0,34","size_off":0,"node":1,"name":"/run/lxcfs/controllers/devices"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"14r","type":"DIR","device":"0,33","size_off":0,"node":1,"name":"/run/lxcfs/controllers/memory"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"15r","type":"DIR","device":"0,32","size_off":0,"node":1,"name":"/run/lxcfs/controllers/freezer"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"16r","type":"DIR","device":"0,31","size_off":0,"node":1,"name":"/run/lxcfs/controllers/net_cls,net_prio"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"17r","type":"DIR","device":"0,29","size_off":0,"node":1,"name":"/run/lxcfs/controllers/name=systemd"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"18r","type":"DIR","device":"0,28","size_off":0,"node":1,"name":"/run/lxcfs/controllers/unified"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":182552,"node":918479,"name":"/usr/lib/accountsservice/accounts-daemon"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b5c67400","size_off":0,"node":29199,"name":"type=STREAM"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":182552,"node":918479,"name":"/usr/lib/accountsservice/accounts-daemon"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b5c67400","size_off":0,"node":29199,"name":"type=STREAM"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":182552,"node":918479,"name":"/usr/lib/accountsservice/accounts-daemon"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b911f400","size_off":0,"node":28058,"name":"type=STREAM"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"5u","type":"unix","device":"0xffff98e4b5c67400","size_off":0,"node":29199,"name":"type=STREAM"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"txt","type":"REG","device":"7,10","size_off":18915952,"node":6465,"name":"/snap/core/7917/usr/lib/snapd/snapd"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26936,"node":656178,"name":"/lib/x86_64-linux-gnu/libnss_dns-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b96e4800","size_off":0,"node":28613,"name":"type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"4u","type":"netlink","device":null,"size_off":0,"node":32362,"name":"KOBJECT_UEVENT"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"7u","type":"unix","device":"0xffff98e4b1d06400","size_off":0,"node":27443,"name":"/run/snapd.socket type=STREAM"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"8u","type":"unix","device":"0xffff98e4b1d01400","size_off":0,"node":27445,"name":"/run/snapd-snap.socket type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":219272,"node":668817,"name":"/lib/systemd/systemd-logind"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4affb6400","size_off":0,"node":28694,"name":"type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4affb6400","size_off":0,"node":28694,"name":"type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b5c66000","size_off":0,"node":29208,"name":"type=DGRAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"7r","type":"REG","device":"0,21","size_off":4096,"node":16735,"name":"/sys/devices/virtual/tty/tty0/active"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"8u","type":"netlink","device":null,"size_off":0,"node":29226,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"9u","type":"netlink","device":null,"size_off":0,"node":29227,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"10u","type":"netlink","device":null,"size_off":0,"node":29228,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"11u","type":"netlink","device":null,"size_off":0,"node":29229,"name":"KOBJECT_UEVENT"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"12u","type":"unix","device":"0xffff98e4b5c63800","size_off":0,"node":29230,"name":"type=STREAM"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"13u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"14u","type":"CHR","device":"13,64","size_off":0,"node":146,"name":"/dev/input/event0"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"15u","type":"CHR","device":"13,65","size_off":0,"node":151,"name":"/dev/input/event1"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"16u","type":"CHR","device":"4,6","size_off":0,"node":25,"name":"/dev/tty6"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"17r","type":"FIFO","device":"0,23","size_off":0,"node":661,"name":"/run/systemd/inhibit/1.ref"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"18r","type":"FIFO","device":"0,23","size_off":0,"node":715,"name":"/run/systemd/sessions/1.ref"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"19r","type":"FIFO","device":"0,23","size_off":0,"node":719,"name":"/run/systemd/sessions/49.ref"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":5989,"name":"/var/spool/cron"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":47416,"node":924741,"name":"/usr/sbin/cron"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b637fc00","size_off":0,"node":29086,"name":"type=STREAM"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b637fc00","size_off":0,"node":29086,"name":"type=STREAM"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"0,23","size_off":5,"node":675,"name":"/run/crond.pid"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":52664,"node":131156,"name":"/bin/login"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10280,"node":656234,"name":"/lib/x86_64-linux-gnu/security/pam_keyinit.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656240,"name":"/lib/x86_64-linux-gnu/security/pam_mail.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656242,"name":"/lib/x86_64-linux-gnu/security/pam_motd.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14488,"node":656235,"name":"/lib/x86_64-linux-gnu/security/pam_lastlog.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14544,"node":656232,"name":"/lib/x86_64-linux-gnu/security/pam_group.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10264,"node":656244,"name":"/lib/x86_64-linux-gnu/security/pam_nologin.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10304,"node":656249,"name":"/lib/x86_64-linux-gnu/security/pam_securetty.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656229,"name":"/lib/x86_64-linux-gnu/security/pam_faildelay.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"3u","type":"unix","device":"0xffff98e4b460e800","size_off":0,"node":33487,"name":"type=DGRAM"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"6w","type":"FIFO","device":"0,23","size_off":0,"node":715,"name":"/run/systemd/sessions/1.ref"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"txt","type":"REG","device":"8,2","size_off":236584,"node":918017,"name":"/usr/bin/dbus-daemon"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"1u","type":"unix","device":"0xffff98e4b637b800","size_off":0,"node":29165,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"2u","type":"unix","device":"0xffff98e4b637b800","size_off":0,"node":29165,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"3u","type":"unix","device":"0xffff98e4afa55c00","size_off":0,"node":27489,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"5u","type":"sock","device":"0,9","size_off":0,"node":29373,"name":"protocol: NETLINK"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"6u","type":"unix","device":"0xffff98e4b5c66400","size_off":0,"node":29374,"name":"type=DGRAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"7r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"8u","type":"unix","device":"0xffff98e4b5c63000","size_off":0,"node":29375,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"9u","type":"unix","device":"0xffff98e4b5c67c00","size_off":0,"node":29376,"name":"type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"10u","type":"unix","device":"0xffff98e4b1dc2400","size_off":0,"node":29377,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"11u","type":"unix","device":"0xffff98e4b1d03400","size_off":0,"node":29378,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"12u","type":"unix","device":"0xffff98e4b5d86c00","size_off":0,"node":30460,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"13u","type":"unix","device":"0xffff98e4b6379c00","size_off":0,"node":29380,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"14u","type":"unix","device":"0xffff98e4b5c64800","size_off":0,"node":29381,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"15u","type":"unix","device":"0xffff98e4b5c62800","size_off":0,"node":29382,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"16u","type":"unix","device":"0xffff98e4b5d87800","size_off":0,"node":30630,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"17u","type":"unix","device":"0xffff98e4b5d85000","size_off":0,"node":30671,"name":"/var/run/dbus/system_bus_socket type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":501680,"node":923340,"name":"/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":66728,"node":656133,"name":"/lib/x86_64-linux-gnu/libbz2.so.1.0.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1822008,"node":924305,"name":"/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342624,"node":919965,"name":"/usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":0,"node":4981,"name":"/var/log/unattended-upgrades/unattended-upgrades-shutdown.log"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b5d85800","size_off":0,"node":30670,"name":"type=STREAM"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"8w","type":"FIFO","device":"0,23","size_off":0,"node":661,"name":"/run/systemd/inhibit/1.ref"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":4526456,"node":918753,"name":"/usr/bin/python3.6"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":501680,"node":923340,"name":"/usr/lib/x86_64-linux-gnu/libzstd.so.1.3.3"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":66728,"node":656133,"name":"/lib/x86_64-linux-gnu/libbz2.so.1.0.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":96616,"node":656152,"name":"/lib/x86_64-linux-gnu/libgcc_s.so.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1594864,"node":924414,"name":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1822008,"node":924305,"name":"/usr/lib/x86_64-linux-gnu/libapt-pkg.so.5.0.2"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342624,"node":919965,"name":"/usr/lib/python3/dist-packages/apt_pkg.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":186076,"node":1049145,"name":"/usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":212456,"node":924339,"name":"/usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":315848,"node":921267,"name":"/usr/lib/python3/dist-packages/gi/_gi.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":19144,"node":919958,"name":"/usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":313496,"node":656141,"name":"/lib/x86_64-linux-gnu/libdbus-1.so.3.19.4"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":159408,"node":919957,"name":"/usr/lib/python3/dist-packages/_dbus_bindings.cpython-36m-x86_64-linux-gnu.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4afa15800","size_off":0,"node":29474,"name":"type=STREAM"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"3w","type":"REG","device":"8,2","size_off":0,"node":4981,"name":"/var/log/unattended-upgrades/unattended-upgrades-shutdown.log"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b5d85800","size_off":0,"node":30670,"name":"type=STREAM"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"6u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"8w","type":"FIFO","device":"0,23","size_off":0,"node":661,"name":"/run/systemd/inhibit/1.ref"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":5991,"name":"/var/spool/cron/atjobs"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"txt","type":"REG","device":"8,2","size_off":26632,"node":924733,"name":"/usr/sbin/atd"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"3uW","type":"REG","device":"0,23","size_off":5,"node":695,"name":"/run/atd.pid"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":40697760,"node":940062,"name":"/usr/bin/containerd"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"mem-W","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b5d80c00","size_off":0,"node":29684,"name":"type=STREAM"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"3uW","type":"REG","device":"8,2","size_off":131072,"node":399496,"name":"/var/lib/containerd/io.containerd.metadata.v1.bolt/meta.db"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b942f000","size_off":0,"node":30726,"name":"/run/containerd/containerd.sock type=STREAM"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"7u","type":"IPv4","device":"30727","size_off":0,"node":null,"name":"localhost:42351 (LISTEN)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":786856,"node":933045,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14256,"node":656161,"name":"/lib/x86_64-linux-gnu/libkeyutils.so.1.5"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43616,"node":924373,"name":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":199104,"node":924370,"name":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14248,"node":668487,"name":"/lib/x86_64-linux-gnu/libcom_err.so.2.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":877056,"node":924372,"name":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":305456,"node":924347,"name":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2357760,"node":924313,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39784,"node":656275,"name":"/lib/x86_64-linux-gnu/libwrap.so.0.7.6"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"1u","type":"unix","device":"0xffff98e4b1d8d800","size_off":0,"node":30152,"name":"type=STREAM"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"2u","type":"unix","device":"0xffff98e4b1d8d800","size_off":0,"node":30152,"name":"type=STREAM"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"30163","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"4u","type":"IPv6","device":"30180","size_off":0,"node":null,"name":"*:ssh (LISTEN)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":56552,"node":263600,"name":"/sbin/agetty"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":199772,"node":918701,"name":"/usr/lib/locale/C.UTF-8/LC_CTYPE"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"4,1","size_off":0,"node":20,"name":"/dev/tty1"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"4,1","size_off":0,"node":20,"name":"/dev/tty1"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"4,1","size_off":0,"node":20,"name":"/dev/tty1"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"4r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":14552,"node":918752,"name":"/usr/lib/policykit-1/polkitd"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":106712,"node":924401,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b5d87c00","size_off":0,"node":30459,"name":"type=STREAM"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":14552,"node":918752,"name":"/usr/lib/policykit-1/polkitd"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":106712,"node":924401,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b5d87c00","size_off":0,"node":30459,"name":"type=STREAM"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":14552,"node":918752,"name":"/usr/lib/policykit-1/polkitd"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":202880,"node":655558,"name":"/lib/x86_64-linux-gnu/libexpat.so.1.6.7"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":114000,"node":924402,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31032,"node":924332,"name":"/usr/lib/x86_64-linux-gnu/libffi.so.6.0.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14232,"node":924341,"name":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":106712,"node":924401,"name":"/usr/lib/x86_64-linux-gnu/libpolkit-backend-1.so.0.0.0"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1137968,"node":924340,"name":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":342072,"node":924344,"name":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1690808,"node":924338,"name":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.5600.4"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b5d87c00","size_off":0,"node":30459,"name":"type=STREAM"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"7u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"8r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"9r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/exe"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"1u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"2u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"3u","type":"unix","device":"0xffff98e4b31f0800","size_off":0,"node":33650,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"6r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"7r","type":"DIR","device":"0,28","size_off":0,"node":1263,"name":"/sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"9u","type":"netlink","device":null,"size_off":0,"node":33759,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"11r","type":"REG","device":"0,4","size_off":0,"node":33761,"name":"/proc/1723/mountinfo"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"12r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"13r","type":"REG","device":"0,4","size_off":0,"node":4026532068,"name":"/proc/swaps"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"14u","type":"unix","device":"0xffff98e4b31f4800","size_off":0,"node":33762,"name":"/run/user/1000/systemd/notify type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"15u","type":"unix","device":"0xffff98e4b31f2800","size_off":0,"node":33763,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"16u","type":"unix","device":"0xffff98e4b31f2000","size_off":0,"node":33764,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"17u","type":"unix","device":"0xffff98e4b31f3800","size_off":0,"node":33765,"name":"/run/user/1000/systemd/private type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"22u","type":"unix","device":"0xffff98e4b31f1000","size_off":0,"node":33808,"name":"/run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"23u","type":"unix","device":"0xffff98e4b31f6800","size_off":0,"node":33809,"name":"/run/user/1000/gnupg/S.dirmngr type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"24u","type":"unix","device":"0xffff98e4b31f2c00","size_off":0,"node":33810,"name":"/run/user/1000/gnupg/S.gpg-agent.browser type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"25u","type":"unix","device":"0xffff98e4b31f4c00","size_off":0,"node":33811,"name":"/run/user/1000/gnupg/S.gpg-agent type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"26u","type":"unix","device":"0xffff98e4b31f1400","size_off":0,"node":33812,"name":"/run/user/1000/gnupg/S.gpg-agent.extra type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"27u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"1u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"2u","type":"unix","device":"0xffff98e4b460c400","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"3u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"6w","type":"FIFO","device":"0,12","size_off":0,"node":33602,"name":"pipe"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"7u","type":"unix","device":"0xffff98e4b31f1800","size_off":0,"node":33638,"name":"type=DGRAM"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/exe"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/exe"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/exe"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/exe"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/exe"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/exe"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/exe"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":786856,"node":933045,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656240,"name":"/lib/x86_64-linux-gnu/security/pam_mail.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656242,"name":"/lib/x86_64-linux-gnu/security/pam_motd.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10280,"node":656234,"name":"/lib/x86_64-linux-gnu/security/pam_keyinit.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10264,"node":656244,"name":"/lib/x86_64-linux-gnu/security/pam_nologin.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14256,"node":656161,"name":"/lib/x86_64-linux-gnu/libkeyutils.so.1.5"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":43616,"node":924373,"name":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":199104,"node":924370,"name":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14248,"node":668487,"name":"/lib/x86_64-linux-gnu/libcom_err.so.2.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":877056,"node":924372,"name":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":305456,"node":924347,"name":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2357760,"node":924313,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39784,"node":656275,"name":"/lib/x86_64-linux-gnu/libwrap.so.0.7.6"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"3u","type":"IPv4","device":"207375","size_off":0,"node":null,"name":"kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b3fe6c00","size_off":0,"node":207447,"name":"type=DGRAM"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"5u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"6u","type":"unix","device":"0xffff98e4b3fe3000","size_off":0,"node":207714,"name":"type=STREAM"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,23","size_off":0,"node":719,"name":"/run/systemd/sessions/49.ref"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":786856,"node":933045,"name":"/usr/sbin/sshd"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22872,"node":656236,"name":"/lib/x86_64-linux-gnu/security/pam_limits.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10312,"node":656240,"name":"/lib/x86_64-linux-gnu/security/pam_mail.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656242,"name":"/lib/x86_64-linux-gnu/security/pam_motd.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10280,"node":656234,"name":"/lib/x86_64-linux-gnu/security/pam_keyinit.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10336,"node":656239,"name":"/lib/x86_64-linux-gnu/security/pam_loginuid.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18736,"node":656250,"name":"/lib/x86_64-linux-gnu/security/pam_selinux.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10264,"node":656244,"name":"/lib/x86_64-linux-gnu/security/pam_nologin.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":101168,"node":656200,"name":"/lib/x86_64-linux-gnu/libresolv-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14256,"node":656161,"name":"/lib/x86_64-linux-gnu/libkeyutils.so.1.5"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43616,"node":924373,"name":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":199104,"node":924370,"name":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14248,"node":668487,"name":"/lib/x86_64-linux-gnu/libcom_err.so.2.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":877056,"node":924372,"name":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":305456,"node":924347,"name":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":116960,"node":656216,"name":"/lib/x86_64-linux-gnu/libz.so.1.2.11"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2357760,"node":924313,"name":"/usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":536648,"node":662910,"name":"/lib/x86_64-linux-gnu/libsystemd.so.0.21.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39784,"node":656275,"name":"/lib/x86_64-linux-gnu/libwrap.so.0.7.6"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"3u","type":"IPv4","device":"207375","size_off":0,"node":null,"name":"kbrazil-ubuntu:ssh->192.168.71.1:65159 (ESTABLISHED)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"4u","type":"unix","device":"0xffff98e4b3fe6c00","size_off":0,"node":207447,"name":"type=DGRAM"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"5u","type":"unix","device":"0xffff98e4b3fe4800","size_off":0,"node":207713,"name":"type=STREAM"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":207717,"name":"pipe"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"7w","type":"FIFO","device":"0,23","size_off":0,"node":719,"name":"/run/systemd/sessions/49.ref"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"8w","type":"FIFO","device":"0,12","size_off":0,"node":207717,"name":"pipe"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"9u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"11u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"12u","type":"CHR","device":"5,2","size_off":0,"node":86,"name":"/dev/ptmx"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/exe"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/exe"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/exe"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/exe"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/exe"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"8,2","size_off":1568,"node":528300,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":149080,"node":923438,"name":"/usr/bin/sudo"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14576,"node":656186,"name":"/lib/x86_64-linux-gnu/libpam_misc.so.0.82.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655398,"name":"/lib/x86_64-linux-gnu/security/pam_systemd.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10376,"node":656261,"name":"/lib/x86_64-linux-gnu/security/pam_umask.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10080,"node":656222,"name":"/lib/x86_64-linux-gnu/security/pam_cap.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":6104,"node":656245,"name":"/lib/x86_64-linux-gnu/security/pam_permit.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":5776,"node":656224,"name":"/lib/x86_64-linux-gnu/security/pam_deny.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39208,"node":656139,"name":"/lib/x86_64-linux-gnu/libcrypt-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":60272,"node":656262,"name":"/lib/x86_64-linux-gnu/security/pam_unix.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14464,"node":656226,"name":"/lib/x86_64-linux-gnu/security/pam_env.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":258040,"node":655397,"name":"/lib/x86_64-linux-gnu/libnss_systemd.so.2"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":354592,"node":940088,"name":"/usr/lib/sudo/sudoers.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":84360,"node":940083,"name":"/usr/lib/sudo/libsudo_util.so.0.0.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":10592,"node":656214,"name":"/lib/x86_64-linux-gnu/libutil-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"1w","type":"REG","device":"8,2","size_off":0,"node":528287,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"3u","type":"netlink","device":null,"size_off":0,"node":340065,"name":"AUDIT"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"4u","type":"unix","device":"0xffff98e4b4afb800","size_off":0,"node":340069,"name":"type=DGRAM"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":340072,"name":"pipe"},{"command":"sudo","pid":23914,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,12","size_off":0,"node":340072,"name":"pipe"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"1w","type":"REG","device":"8,2","size_off":0,"node":528287,"name":"/home/kbrazil/testfiles/lsof-sudo.out"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"3r","type":"DIR","device":"0,4","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"4r","type":"DIR","device":"0,4","size_off":0,"node":340074,"name":"/proc/23915/fd"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"5w","type":"FIFO","device":"0,12","size_off":0,"node":340083,"name":"pipe"},{"command":"lsof","pid":23915,"tid":null,"user":"root","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":340084,"name":"pipe"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"4r","type":"FIFO","device":"0,12","size_off":0,"node":340083,"name":"pipe"},{"command":"lsof","pid":23916,"tid":null,"user":"root","fd":"7w","type":"FIFO","device":"0,12","size_off":0,"node":340084,"name":"pipe"}] diff --git a/tests/fixtures/ubuntu-18.04/lsof.json b/tests/fixtures/ubuntu-18.04/lsof.json index 75db7c3b..eb4c6b78 100644 --- a/tests/fixtures/ubuntu-18.04/lsof.json +++ b/tests/fixtures/ubuntu-18.04/lsof.json @@ -1 +1 @@ -[{"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1/cwd (readlink: Permission denied)"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1/root (readlink: Permission denied)"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1/exe (readlink: Permission denied)"}, {"command": "systemd", "pid": 1, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1/fd (opendir: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/cwd (readlink: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/root (readlink: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/2/exe (readlink: Permission denied)"}, {"command": "kthreadd", "pid": 2, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/2/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/4/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 4, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/4/fd (opendir: Permission denied)"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/cwd (readlink: Permission denied)"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/root (readlink: Permission denied)"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/6/exe (readlink: Permission denied)"}, {"command": "mm_percpu", "pid": 6, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/6/fd (opendir: Permission denied)"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/cwd (readlink: Permission denied)"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/root (readlink: Permission denied)"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/7/exe (readlink: Permission denied)"}, {"command": "ksoftirqd", "pid": 7, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/7/fd (opendir: Permission denied)"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/cwd (readlink: Permission denied)"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/root (readlink: Permission denied)"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/8/exe (readlink: Permission denied)"}, {"command": "rcu_sched", "pid": 8, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/8/fd (opendir: Permission denied)"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/cwd (readlink: Permission denied)"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/root (readlink: Permission denied)"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/9/exe (readlink: Permission denied)"}, {"command": "rcu_bh", "pid": 9, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/9/fd (opendir: Permission denied)"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/cwd (readlink: Permission denied)"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/root (readlink: Permission denied)"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/10/exe (readlink: Permission denied)"}, {"command": "migration", "pid": 10, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/10/fd (opendir: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/cwd (readlink: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/root (readlink: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/11/exe (readlink: Permission denied)"}, {"command": "watchdog/", "pid": 11, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/11/fd (opendir: Permission denied)"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/12/cwd (readlink: Permission denied)"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/12/root (readlink: Permission denied)"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/12/exe (readlink: Permission denied)"}, {"command": "cpuhp/0", "pid": 12, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/12/fd (opendir: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/cwd (readlink: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/root (readlink: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/13/exe (readlink: Permission denied)"}, {"command": "kdevtmpfs", "pid": 13, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/13/fd (opendir: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/cwd (readlink: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/root (readlink: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/14/exe (readlink: Permission denied)"}, {"command": "netns", "pid": 14, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/14/fd (opendir: Permission denied)"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/cwd (readlink: Permission denied)"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/root (readlink: Permission denied)"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15/exe (readlink: Permission denied)"}, {"command": "rcu_tasks", "pid": 15, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15/fd (opendir: Permission denied)"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/cwd (readlink: Permission denied)"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/root (readlink: Permission denied)"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16/exe (readlink: Permission denied)"}, {"command": "kauditd", "pid": 16, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/16/fd (opendir: Permission denied)"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/cwd (readlink: Permission denied)"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/root (readlink: Permission denied)"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17/exe (readlink: Permission denied)"}, {"command": "khungtask", "pid": 17, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/17/fd (opendir: Permission denied)"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/cwd (readlink: Permission denied)"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/root (readlink: Permission denied)"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/18/exe (readlink: Permission denied)"}, {"command": "oom_reape", "pid": 18, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/18/fd (opendir: Permission denied)"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/cwd (readlink: Permission denied)"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/root (readlink: Permission denied)"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19/exe (readlink: Permission denied)"}, {"command": "writeback", "pid": 19, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/19/fd (opendir: Permission denied)"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/cwd (readlink: Permission denied)"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/root (readlink: Permission denied)"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/20/exe (readlink: Permission denied)"}, {"command": "kcompactd", "pid": 20, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/20/fd (opendir: Permission denied)"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/cwd (readlink: Permission denied)"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/root (readlink: Permission denied)"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/21/exe (readlink: Permission denied)"}, {"command": "ksmd", "pid": 21, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/21/fd (opendir: Permission denied)"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/cwd (readlink: Permission denied)"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/root (readlink: Permission denied)"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/22/exe (readlink: Permission denied)"}, {"command": "khugepage", "pid": 22, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/22/fd (opendir: Permission denied)"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/cwd (readlink: Permission denied)"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/root (readlink: Permission denied)"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23/exe (readlink: Permission denied)"}, {"command": "crypto", "pid": 23, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/23/fd (opendir: Permission denied)"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/cwd (readlink: Permission denied)"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/root (readlink: Permission denied)"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/24/exe (readlink: Permission denied)"}, {"command": "kintegrit", "pid": 24, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/24/fd (opendir: Permission denied)"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/25/cwd (readlink: Permission denied)"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/25/root (readlink: Permission denied)"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/25/exe (readlink: Permission denied)"}, {"command": "kblockd", "pid": 25, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/25/fd (opendir: Permission denied)"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/26/cwd (readlink: Permission denied)"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/26/root (readlink: Permission denied)"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/26/exe (readlink: Permission denied)"}, {"command": "ata_sff", "pid": 26, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/26/fd (opendir: Permission denied)"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/27/cwd (readlink: Permission denied)"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/27/root (readlink: Permission denied)"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/27/exe (readlink: Permission denied)"}, {"command": "md", "pid": 27, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/27/fd (opendir: Permission denied)"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/28/cwd (readlink: Permission denied)"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/28/root (readlink: Permission denied)"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/28/exe (readlink: Permission denied)"}, {"command": "edac-poll", "pid": 28, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/28/fd (opendir: Permission denied)"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/29/cwd (readlink: Permission denied)"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/29/root (readlink: Permission denied)"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/29/exe (readlink: Permission denied)"}, {"command": "devfreq_w", "pid": 29, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/29/fd (opendir: Permission denied)"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/cwd (readlink: Permission denied)"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/root (readlink: Permission denied)"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/30/exe (readlink: Permission denied)"}, {"command": "watchdogd", "pid": 30, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/30/fd (opendir: Permission denied)"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/34/cwd (readlink: Permission denied)"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/34/root (readlink: Permission denied)"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/34/exe (readlink: Permission denied)"}, {"command": "kswapd0", "pid": 34, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/34/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/35/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/35/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/35/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 35, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/35/fd (opendir: Permission denied)"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/36/cwd (readlink: Permission denied)"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/36/root (readlink: Permission denied)"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/36/exe (readlink: Permission denied)"}, {"command": "ecryptfs-", "pid": 36, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/36/fd (opendir: Permission denied)"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/78/cwd (readlink: Permission denied)"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/78/root (readlink: Permission denied)"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/78/exe (readlink: Permission denied)"}, {"command": "kthrotld", "pid": 78, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/78/fd (opendir: Permission denied)"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/79/cwd (readlink: Permission denied)"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/79/root (readlink: Permission denied)"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/79/exe (readlink: Permission denied)"}, {"command": "acpi_ther", "pid": 79, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/79/fd (opendir: Permission denied)"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/80/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/80/root (readlink: Permission denied)"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/80/exe (readlink: Permission denied)"}, {"command": "scsi_eh_0", "pid": 80, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/80/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/81/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/81/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/81/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 81, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/81/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/82/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/82/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/82/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 82, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/82/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/83/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/83/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/83/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 83, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/83/fd (opendir: Permission denied)"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/89/cwd (readlink: Permission denied)"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/89/root (readlink: Permission denied)"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/89/exe (readlink: Permission denied)"}, {"command": "ipv6_addr", "pid": 89, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/89/fd (opendir: Permission denied)"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/99/cwd (readlink: Permission denied)"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/99/root (readlink: Permission denied)"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/99/exe (readlink: Permission denied)"}, {"command": "kstrp", "pid": 99, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/99/fd (opendir: Permission denied)"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/116/cwd (readlink: Permission denied)"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/116/root (readlink: Permission denied)"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/116/exe (readlink: Permission denied)"}, {"command": "charger_m", "pid": 116, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/116/fd (opendir: Permission denied)"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/170/cwd (readlink: Permission denied)"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/170/root (readlink: Permission denied)"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/170/exe (readlink: Permission denied)"}, {"command": "mpt_poll_", "pid": 170, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/170/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/171/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/171/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/171/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 171, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/171/fd (opendir: Permission denied)"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/172/cwd (readlink: Permission denied)"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/172/root (readlink: Permission denied)"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/172/exe (readlink: Permission denied)"}, {"command": "mpt/0", "pid": 172, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/172/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/173/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/173/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/173/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 173, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/173/fd (opendir: Permission denied)"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/174/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/174/root (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/174/exe (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 174, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/174/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/175/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/175/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/175/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 175, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/175/fd (opendir: Permission denied)"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/176/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/176/root (readlink: Permission denied)"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/176/exe (readlink: Permission denied)"}, {"command": "scsi_eh_4", "pid": 176, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/176/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/177/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/177/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/177/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 177, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/177/fd (opendir: Permission denied)"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/178/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/178/root (readlink: Permission denied)"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/178/exe (readlink: Permission denied)"}, {"command": "scsi_eh_5", "pid": 178, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/178/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/179/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/179/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/179/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 179, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/179/fd (opendir: Permission denied)"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/180/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/180/root (readlink: Permission denied)"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/180/exe (readlink: Permission denied)"}, {"command": "scsi_eh_6", "pid": 180, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/180/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/181/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/181/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/181/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 181, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/181/fd (opendir: Permission denied)"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/182/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/182/root (readlink: Permission denied)"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/182/exe (readlink: Permission denied)"}, {"command": "scsi_eh_7", "pid": 182, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/182/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/183/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/183/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/183/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 183, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/183/fd (opendir: Permission denied)"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/188/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/188/root (readlink: Permission denied)"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/188/exe (readlink: Permission denied)"}, {"command": "scsi_eh_8", "pid": 188, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/188/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/189/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/189/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/189/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 189, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/189/fd (opendir: Permission denied)"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/191/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/191/root (readlink: Permission denied)"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/191/exe (readlink: Permission denied)"}, {"command": "scsi_eh_9", "pid": 191, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/191/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/196/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/196/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/196/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 196, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/196/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/198/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/198/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/198/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 198, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/198/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/199/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/199/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/199/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 199, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/199/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/201/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/201/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/201/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 201, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/201/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/203/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/203/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/203/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 203, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/203/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/205/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/205/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/205/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 205, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/205/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/208/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/208/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/208/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 208, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/208/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/209/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/209/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/209/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 209, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/209/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/212/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/212/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/212/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 212, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/212/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/213/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/213/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/213/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 213, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/213/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/216/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/216/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/216/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 216, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/216/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/217/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/217/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/217/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 217, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/217/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/219/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/219/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/219/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 219, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/219/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/221/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/221/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/221/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 221, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/221/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/223/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/223/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/223/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 223, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/223/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/225/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/225/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/225/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 225, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/225/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/227/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/227/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/227/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 227, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/227/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/229/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/229/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/229/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 229, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/229/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/230/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/230/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/230/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 230, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/230/fd (opendir: Permission denied)"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/232/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/232/root (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/232/exe (readlink: Permission denied)"}, {"command": "scsi_eh_1", "pid": 232, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/232/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/233/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/233/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/233/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 233, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/233/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/235/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/235/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/235/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 235, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/235/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/237/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/237/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/237/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 237, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/237/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/238/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/238/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/238/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 238, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/238/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/240/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/240/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/240/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 240, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/240/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/241/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/241/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/241/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 241, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/241/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/243/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/243/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/243/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 243, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/243/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/245/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/245/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/245/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 245, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/245/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/246/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/246/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/246/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 246, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/246/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/248/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/248/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/248/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 248, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/248/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/250/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/250/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/250/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 250, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/250/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/252/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/252/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/252/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 252, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/252/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/254/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/254/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/254/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 254, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/254/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/256/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/256/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/256/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 256, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/256/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/258/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/258/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/258/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 258, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/258/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/259/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/259/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/259/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 259, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/259/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/260/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/260/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/260/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 260, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/260/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/261/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/261/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/261/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 261, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/261/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/262/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/262/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/262/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 262, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/262/fd (opendir: Permission denied)"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/263/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/263/root (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/263/exe (readlink: Permission denied)"}, {"command": "scsi_eh_2", "pid": 263, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/263/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/264/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/264/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/264/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 264, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/264/fd (opendir: Permission denied)"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/265/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/265/root (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/265/exe (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 265, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/265/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/266/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/266/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/266/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 266, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/266/fd (opendir: Permission denied)"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/267/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/267/root (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/267/exe (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 267, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/267/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/268/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/268/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/268/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 268, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/268/fd (opendir: Permission denied)"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/cwd (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/root (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/295/exe (readlink: Permission denied)"}, {"command": "scsi_eh_3", "pid": 295, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/295/fd (opendir: Permission denied)"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/296/cwd (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/296/root (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/296/exe (readlink: Permission denied)"}, {"command": "scsi_tmf_", "pid": 296, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/296/fd (opendir: Permission denied)"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/302/cwd (readlink: Permission denied)"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/302/root (readlink: Permission denied)"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/302/exe (readlink: Permission denied)"}, {"command": "ttm_swap", "pid": 302, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/302/fd (opendir: Permission denied)"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/303/cwd (readlink: Permission denied)"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/303/root (readlink: Permission denied)"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/303/exe (readlink: Permission denied)"}, {"command": "irq/16-vm", "pid": 303, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/303/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/305/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/305/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/305/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 305, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/305/fd (opendir: Permission denied)"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/369/cwd (readlink: Permission denied)"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/369/root (readlink: Permission denied)"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/369/exe (readlink: Permission denied)"}, {"command": "raid5wq", "pid": 369, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/369/fd (opendir: Permission denied)"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/422/cwd (readlink: Permission denied)"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/422/root (readlink: Permission denied)"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/422/exe (readlink: Permission denied)"}, {"command": "jbd2/sda2", "pid": 422, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/422/fd (opendir: Permission denied)"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/423/cwd (readlink: Permission denied)"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/423/root (readlink: Permission denied)"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/423/exe (readlink: Permission denied)"}, {"command": "ext4-rsv-", "pid": 423, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/423/fd (opendir: Permission denied)"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/495/cwd (readlink: Permission denied)"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/495/root (readlink: Permission denied)"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/495/exe (readlink: Permission denied)"}, {"command": "systemd-j", "pid": 495, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/495/fd (opendir: Permission denied)"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/498/cwd (readlink: Permission denied)"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/498/root (readlink: Permission denied)"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/498/exe (readlink: Permission denied)"}, {"command": "iscsi_eh", "pid": 498, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/498/fd (opendir: Permission denied)"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/509/cwd (readlink: Permission denied)"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/509/root (readlink: Permission denied)"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/509/exe (readlink: Permission denied)"}, {"command": "systemd-u", "pid": 509, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/509/fd (opendir: Permission denied)"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/511/cwd (readlink: Permission denied)"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/511/root (readlink: Permission denied)"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/511/exe (readlink: Permission denied)"}, {"command": "lvmetad", "pid": 511, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/511/fd (opendir: Permission denied)"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/512/cwd (readlink: Permission denied)"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/512/root (readlink: Permission denied)"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/512/exe (readlink: Permission denied)"}, {"command": "ib-comp-w", "pid": 512, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/512/fd (opendir: Permission denied)"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/513/cwd (readlink: Permission denied)"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/513/root (readlink: Permission denied)"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/513/exe (readlink: Permission denied)"}, {"command": "ib_mcast", "pid": 513, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/513/fd (opendir: Permission denied)"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/514/cwd (readlink: Permission denied)"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/514/root (readlink: Permission denied)"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/514/exe (readlink: Permission denied)"}, {"command": "ib_nl_sa_", "pid": 514, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/514/fd (opendir: Permission denied)"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/523/cwd (readlink: Permission denied)"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/523/root (readlink: Permission denied)"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/523/exe (readlink: Permission denied)"}, {"command": "rdma_cm", "pid": 523, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/523/fd (opendir: Permission denied)"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/541/cwd (readlink: Permission denied)"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/541/root (readlink: Permission denied)"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/541/exe (readlink: Permission denied)"}, {"command": "loop0", "pid": 541, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/541/fd (opendir: Permission denied)"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/545/cwd (readlink: Permission denied)"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/545/root (readlink: Permission denied)"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/545/exe (readlink: Permission denied)"}, {"command": "loop1", "pid": 545, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/545/fd (opendir: Permission denied)"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/548/cwd (readlink: Permission denied)"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/548/root (readlink: Permission denied)"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/548/exe (readlink: Permission denied)"}, {"command": "loop2", "pid": 548, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/548/fd (opendir: Permission denied)"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/552/cwd (readlink: Permission denied)"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/552/root (readlink: Permission denied)"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/552/exe (readlink: Permission denied)"}, {"command": "loop3", "pid": 552, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/552/fd (opendir: Permission denied)"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/554/cwd (readlink: Permission denied)"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/554/root (readlink: Permission denied)"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/554/exe (readlink: Permission denied)"}, {"command": "loop5", "pid": 554, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/554/fd (opendir: Permission denied)"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/556/cwd (readlink: Permission denied)"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/556/root (readlink: Permission denied)"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/556/exe (readlink: Permission denied)"}, {"command": "loop7", "pid": 556, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/556/fd (opendir: Permission denied)"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/557/cwd (readlink: Permission denied)"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/557/root (readlink: Permission denied)"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/557/exe (readlink: Permission denied)"}, {"command": "loop8", "pid": 557, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/557/fd (opendir: Permission denied)"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/559/cwd (readlink: Permission denied)"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/559/root (readlink: Permission denied)"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/559/exe (readlink: Permission denied)"}, {"command": "loop10", "pid": 559, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/559/fd (opendir: Permission denied)"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/606/cwd (readlink: Permission denied)"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/606/root (readlink: Permission denied)"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/606/exe (readlink: Permission denied)"}, {"command": "systemd-t", "pid": 606, "tid": null, "user": "systemd-timesync", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/606/fd (opendir: Permission denied)"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/606/task/617/cwd (readlink: Permission denied)"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/606/task/617/root (readlink: Permission denied)"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/606/task/617/exe (readlink: Permission denied)"}, {"command": "sd-resolv", "pid": 606, "tid": 617, "user": "systemd-timesync", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/606/task/617/fd (opendir: Permission denied)"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/607/cwd (readlink: Permission denied)"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/607/root (readlink: Permission denied)"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/607/exe (readlink: Permission denied)"}, {"command": "VGAuthSer", "pid": 607, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/607/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/671/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/671/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/671/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 671, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/671/fd (opendir: Permission denied)"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/680/cwd (readlink: Permission denied)"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/680/root (readlink: Permission denied)"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/680/exe (readlink: Permission denied)"}, {"command": "vmtoolsd", "pid": 680, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/680/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/680/task/733/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/680/task/733/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/680/task/733/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 680, "tid": 733, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/680/task/733/fd (opendir: Permission denied)"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/867/cwd (readlink: Permission denied)"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/867/root (readlink: Permission denied)"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/867/exe (readlink: Permission denied)"}, {"command": "systemd-n", "pid": 867, "tid": null, "user": "systemd-network", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/867/fd (opendir: Permission denied)"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/885/cwd (readlink: Permission denied)"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/885/root (readlink: Permission denied)"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/885/exe (readlink: Permission denied)"}, {"command": "systemd-r", "pid": 885, "tid": null, "user": "systemd-resolve", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/885/fd (opendir: Permission denied)"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/cwd (readlink: Permission denied)"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/root (readlink: Permission denied)"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/exe (readlink: Permission denied)"}, {"command": "rsyslogd", "pid": 955, "tid": null, "user": "syslog", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/955/fd (opendir: Permission denied)"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/965/cwd (readlink: Permission denied)"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/965/root (readlink: Permission denied)"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/965/exe (readlink: Permission denied)"}, {"command": "in:imuxso", "pid": 955, "tid": 965, "user": "syslog", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/955/task/965/fd (opendir: Permission denied)"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/966/cwd (readlink: Permission denied)"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/966/root (readlink: Permission denied)"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/966/exe (readlink: Permission denied)"}, {"command": "in:imklog", "pid": 955, "tid": 966, "user": "syslog", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/955/task/966/fd (opendir: Permission denied)"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/967/cwd (readlink: Permission denied)"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/967/root (readlink: Permission denied)"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/955/task/967/exe (readlink: Permission denied)"}, {"command": "rs:main", "pid": 955, "tid": 967, "user": "syslog", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/955/task/967/fd (opendir: Permission denied)"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/956/cwd (readlink: Permission denied)"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/956/root (readlink: Permission denied)"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/956/exe (readlink: Permission denied)"}, {"command": "networkd-", "pid": 956, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/956/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/956/task/1294/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/956/task/1294/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/956/task/1294/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 956, "tid": 1294, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/956/task/1294/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22673/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22673/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22673/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22673, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22673/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22675/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22675/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22675/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22675, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22675/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22676/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22676/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22676/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22676, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22676/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22678/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22678/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22678/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22678, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22678/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22683/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22683/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22683/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22683, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22683/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22685/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22685/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22685/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22685, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22685/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22686/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22686/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22686/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22686, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22686/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22688/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22688/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22688/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22688, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22688/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22689/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22689/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22689/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22689, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22689/fd (opendir: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22690/cwd (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22690/root (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22690/exe (readlink: Permission denied)"}, {"command": "lxcfs", "pid": 960, "tid": 22690, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/960/task/22690/fd (opendir: Permission denied)"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/cwd (readlink: Permission denied)"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/root (readlink: Permission denied)"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/exe (readlink: Permission denied)"}, {"command": "accounts-", "pid": 961, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/961/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1030/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1030/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1030/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 961, "tid": 1030, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1030/fd (opendir: Permission denied)"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1101/cwd (readlink: Permission denied)"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1101/root (readlink: Permission denied)"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1101/exe (readlink: Permission denied)"}, {"command": "gdbus", "pid": 961, "tid": 1101, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/961/task/1101/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1326/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1326/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1326/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1326, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1326/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1327/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1327/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1327/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1327, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1327/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1328/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1328/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1328/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1328, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1328/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1329/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1329/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1329/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1329, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1329/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1332/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1332/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1332/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1332, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1332/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1342/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1342/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1342/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1342, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1342/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1359/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1359/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1359/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1359, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1359/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1382/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1382/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1382/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1382, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1382/fd (opendir: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1517/cwd (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1517/root (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1517/exe (readlink: Permission denied)"}, {"command": "snapd", "pid": 1017, "tid": 1517, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1017/task/1517/fd (opendir: Permission denied)"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1018/cwd (readlink: Permission denied)"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1018/root (readlink: Permission denied)"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1018/exe (readlink: Permission denied)"}, {"command": "systemd-l", "pid": 1018, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1018/fd (opendir: Permission denied)"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1038/cwd (readlink: Permission denied)"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1038/root (readlink: Permission denied)"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1038/exe (readlink: Permission denied)"}, {"command": "cron", "pid": 1038, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1038/fd (opendir: Permission denied)"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1043/cwd (readlink: Permission denied)"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1043/root (readlink: Permission denied)"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1043/exe (readlink: Permission denied)"}, {"command": "login", "pid": 1043, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1043/fd (opendir: Permission denied)"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1048/cwd (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1048/root (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1048/exe (readlink: Permission denied)"}, {"command": "dbus-daem", "pid": 1048, "tid": null, "user": "messagebus", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1048/fd (opendir: Permission denied)"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1099/cwd (readlink: Permission denied)"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1099/root (readlink: Permission denied)"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1099/exe (readlink: Permission denied)"}, {"command": "unattende", "pid": 1099, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1099/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1099/task/1311/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1099/task/1311/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1099/task/1311/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 1099, "tid": 1311, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1099/task/1311/fd (opendir: Permission denied)"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1100/cwd (readlink: Permission denied)"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1100/root (readlink: Permission denied)"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1100/exe (readlink: Permission denied)"}, {"command": "atd", "pid": 1100, "tid": null, "user": "daemon", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1100/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1303/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1303/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1303/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1303, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1303/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1304/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1304/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1304/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1304, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1304/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1305/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1305/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1305/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1305, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1305/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1306/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1306/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1306/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1306, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1306/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1315/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1315/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1315/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1315, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1315/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1322/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1322/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1322/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1322, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1322/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1323/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1323/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1323/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1323, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1323/fd (opendir: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1325/cwd (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1325/root (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1325/exe (readlink: Permission denied)"}, {"command": "container", "pid": 1112, "tid": 1325, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1112/task/1325/fd (opendir: Permission denied)"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1127/cwd (readlink: Permission denied)"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1127/root (readlink: Permission denied)"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1127/exe (readlink: Permission denied)"}, {"command": "sshd", "pid": 1127, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1127/fd (opendir: Permission denied)"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1153/cwd (readlink: Permission denied)"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1153/root (readlink: Permission denied)"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1153/exe (readlink: Permission denied)"}, {"command": "agetty", "pid": 1153, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1153/fd (opendir: Permission denied)"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/cwd (readlink: Permission denied)"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/root (readlink: Permission denied)"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/exe (readlink: Permission denied)"}, {"command": "polkitd", "pid": 1154, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1154/fd (opendir: Permission denied)"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1198/cwd (readlink: Permission denied)"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1198/root (readlink: Permission denied)"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1198/exe (readlink: Permission denied)"}, {"command": "gmain", "pid": 1154, "tid": 1198, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1198/fd (opendir: Permission denied)"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1203/cwd (readlink: Permission denied)"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1203/root (readlink: Permission denied)"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1203/exe (readlink: Permission denied)"}, {"command": "gdbus", "pid": 1154, "tid": 1203, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1154/task/1203/fd (opendir: Permission denied)"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1532/cwd (readlink: Permission denied)"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1532/root (readlink: Permission denied)"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1532/exe (readlink: Permission denied)"}, {"command": "loop11", "pid": 1532, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1532/fd (opendir: Permission denied)"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1595792, "node": 668802, "name": "/lib/systemd/systemd"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1700792, "node": 656167, "name": "/lib/x86_64-linux-gnu/libm-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 121016, "node": 655394, "name": "/lib/x86_64-linux-gnu/libudev.so.1.6.9"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 84032, "node": 656154, "name": "/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 43304, "node": 656160, "name": "/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 34872, "node": 924307, "name": "/usr/lib/x86_64-linux-gnu/libargon2.so.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 432640, "node": 656144, "name": "/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18680, "node": 656129, "name": "/lib/x86_64-linux-gnu/libattr.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 18712, "node": 656135, "name": "/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27112, "node": 656215, "name": "/lib/x86_64-linux-gnu/libuuid.so.1.3.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 112672, "node": 924379, "name": "/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 153984, "node": 656165, "name": "/lib/x86_64-linux-gnu/liblzma.so.5.2.2"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 206872, "node": 656157, "name": "/lib/x86_64-linux-gnu/libidn.so.11.6.16"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 27088, "node": 924361, "name": "/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1155768, "node": 656153, "name": "/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 22768, "node": 656136, "name": "/lib/x86_64-linux-gnu/libcap.so.2.25"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 310040, "node": 656140, "name": "/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31232, "node": 656125, "name": "/lib/x86_64-linux-gnu/libacl.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 64144, "node": 656127, "name": "/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 92208, "node": 656162, "name": "/lib/x86_64-linux-gnu/libkmod.so.2.3.2"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 124848, "node": 656130, "name": "/lib/x86_64-linux-gnu/libaudit.so.1.0.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 55848, "node": 656185, "name": "/lib/x86_64-linux-gnu/libpam.so.0.83.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 311720, "node": 656131, "name": "/lib/x86_64-linux-gnu/libblkid.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 340232, "node": 656170, "name": "/lib/x86_64-linux-gnu/libmount.so.1.1.0"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 288976, "node": 656202, "name": "/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 31680, "node": 656201, "name": "/lib/x86_64-linux-gnu/librt-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2363632, "node": 655401, "name": "/lib/systemd/libsystemd-shared-237.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "1u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33601, "name": "type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "2u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33601, "name": "type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "3u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33650, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "4u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "5u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[signalfd]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "6r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "7r", "type": "DIR", "device": "0,28", "size_off": 0, "node": 1263, "name": "/sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "8u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "9u", "type": "netlink", "device": null, "size_off": null, "node": 33759, "name": "KOBJECT_UEVENT"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "10u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[eventpoll]"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "11r", "type": "REG", "device": "0,4", "size_off": 0, "node": 33761, "name": "/proc/1723/mountinfo"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "12r", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "inotify"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "13r", "type": "REG", "device": "0,4", "size_off": 0, "node": 4026532068, "name": "/proc/swaps"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "14u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33762, "name": "/run/user/1000/systemd/notify type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "15u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33763, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "16u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33764, "name": "type=DGRAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "17u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33765, "name": "/run/user/1000/systemd/private type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "22u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33808, "name": "/run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "23u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33809, "name": "/run/user/1000/gnupg/S.dirmngr type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "24u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33810, "name": "/run/user/1000/gnupg/S.gpg-agent.browser type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "25u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33811, "name": "/run/user/1000/gnupg/S.gpg-agent type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "26u", "type": "unix", "device": "0x0000000000000000", "size_off": null, "node": 33812, "name": "/run/user/1000/gnupg/S.gpg-agent.extra type=STREAM"}, {"command": "systemd", "pid": 1723, "tid": null, "user": "kbrazil", "fd": "27u", "type": "a_inode", "device": "0,13", "size_off": 0, "node": 10717, "name": "[timerfd]"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1734/cwd (readlink: Permission denied)"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1734/root (readlink: Permission denied)"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/1734/exe (readlink: Permission denied)"}, {"command": "(sd-pam", "pid": 1734, "tid": null, "user": "kbrazil", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/1734/fd (opendir: Permission denied)"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1113504, "node": 131099, "name": "/bin/bash"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170784, "node": 656210, "name": "/lib/x86_64-linux-gnu/libtinfo.so.5.9"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "bash", "pid": 1749, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "4,64", "size_off": null, "node": 87, "name": "/dev/ttyS0"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3451/cwd (readlink: Permission denied)"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3451/root (readlink: Permission denied)"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3451/exe (readlink: Permission denied)"}, {"command": "loop9", "pid": 3451, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/3451/fd (opendir: Permission denied)"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3657/cwd (readlink: Permission denied)"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3657/root (readlink: Permission denied)"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/3657/exe (readlink: Permission denied)"}, {"command": "loop4", "pid": 3657, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/3657/fd (opendir: Permission denied)"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15892/cwd (readlink: Permission denied)"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15892/root (readlink: Permission denied)"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15892/exe (readlink: Permission denied)"}, {"command": "xfsalloc", "pid": 15892, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15892/fd (opendir: Permission denied)"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15896/cwd (readlink: Permission denied)"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15896/root (readlink: Permission denied)"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15896/exe (readlink: Permission denied)"}, {"command": "xfs_mru_c", "pid": 15896, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15896/fd (opendir: Permission denied)"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15900/cwd (readlink: Permission denied)"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15900/root (readlink: Permission denied)"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15900/exe (readlink: Permission denied)"}, {"command": "jfsIO", "pid": 15900, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15900/fd (opendir: Permission denied)"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15901/cwd (readlink: Permission denied)"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15901/root (readlink: Permission denied)"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15901/exe (readlink: Permission denied)"}, {"command": "jfsCommit", "pid": 15901, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15901/fd (opendir: Permission denied)"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15902/cwd (readlink: Permission denied)"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15902/root (readlink: Permission denied)"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/15902/exe (readlink: Permission denied)"}, {"command": "jfsSync", "pid": 15902, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/15902/fd (opendir: Permission denied)"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16944/cwd (readlink: Permission denied)"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16944/root (readlink: Permission denied)"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/16944/exe (readlink: Permission denied)"}, {"command": "sshd", "pid": 16944, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/16944/fd (opendir: Permission denied)"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17058/cwd (readlink: Permission denied)"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17058/root (readlink: Permission denied)"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/17058/exe (readlink: Permission denied)"}, {"command": "sshd", "pid": 17058, "tid": null, "user": "kbrazil", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/17058/fd (opendir: Permission denied)"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1113504, "node": 131099, "name": "/bin/bash"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47568, "node": 656179, "name": "/lib/x86_64-linux-gnu/libnss_files-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 97176, "node": 656176, "name": "/lib/x86_64-linux-gnu/libnsl-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 47576, "node": 656181, "name": "/lib/x86_64-linux-gnu/libnss_nis-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 39744, "node": 656177, "name": "/lib/x86_64-linux-gnu/libnss_compat-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170784, "node": 656210, "name": "/lib/x86_64-linux-gnu/libtinfo.so.5.9"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "bash", "pid": 17059, "tid": null, "user": "kbrazil", "fd": "255u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19890/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19890/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/19890/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 19890, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/19890/fd (opendir: Permission denied)"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23282/cwd (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23282/root (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23282/exe (readlink: Permission denied)"}, {"command": "kworker/0", "pid": 23282, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/23282/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23289/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23289/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23289/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23289, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/23289/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23310/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23310/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23310/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23310, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/23310/fd (opendir: Permission denied)"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "cwd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23851/cwd (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "rtd", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23851/root (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "txt", "type": "unknown", "device": null, "size_off": null, "node": null, "name": "/proc/23851/exe (readlink: Permission denied)"}, {"command": "kworker/u", "pid": 23851, "tid": null, "user": "root", "fd": "NOFD", "type": null, "device": null, "size_off": null, "node": null, "name": "/proc/23851/fd (opendir: Permission denied)"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 1113504, "node": 131099, "name": "/bin/bash"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170784, "node": 656210, "name": "/lib/x86_64-linux-gnu/libtinfo.so.5.9"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 26376, "node": 1049137, "name": "/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "tests.sh", "pid": 23870, "tid": null, "user": "kbrazil", "fd": "255r", "type": "REG", "device": "8,2", "size_off": 1568, "node": 528300, "name": "/home/kbrazil/testfiles/tests.sh"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "0r", "type": "CHR", "device": "1,3", "size_off": null, "node": 6, "name": "/dev/null"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23903, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23904, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23905, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 35000, "node": 131203, "name": "/bin/sleep"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "1u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "sleep", "pid": 23906, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 163224, "node": 918160, "name": "/usr/bin/lsof"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "0u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "1w", "type": "REG", "device": "8,2", "size_off": 0, "node": 528286, "name": "/home/kbrazil/testfiles/lsof.out"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "2u", "type": "CHR", "device": "136,0", "size_off": null, "node": 3, "name": "/dev/pts/0"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "3r", "type": "DIR", "device": "0,4", "size_off": 0, "node": 1, "name": "/proc"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "4r", "type": "DIR", "device": "0,4", "size_off": 0, "node": 339909, "name": "/proc/23912/fd"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "5w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 339914, "name": "pipe"}, {"command": "lsof", "pid": 23912, "tid": null, "user": "kbrazil", "fd": "6r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 339915, "name": "pipe"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "cwd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 528261, "name": "/home/kbrazil/testfiles"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "rtd", "type": "DIR", "device": "8,2", "size_off": 4096, "node": 2, "name": "/"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "txt", "type": "REG", "device": "8,2", "size_off": 163224, "node": 918160, "name": "/usr/bin/lsof"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 144976, "node": 656197, "name": "/lib/x86_64-linux-gnu/libpthread-2.27.so"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 14560, "node": 656145, "name": "/lib/x86_64-linux-gnu/libdl-2.27.so"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 464824, "node": 656191, "name": "/lib/x86_64-linux-gnu/libpcre.so.3.13.3"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 2030544, "node": 656134, "name": "/lib/x86_64-linux-gnu/libc-2.27.so"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 154832, "node": 656203, "name": "/lib/x86_64-linux-gnu/libselinux.so.1"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 170960, "node": 656122, "name": "/lib/x86_64-linux-gnu/ld-2.27.so"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "mem", "type": "REG", "device": "8,2", "size_off": 1683056, "node": 933058, "name": "/usr/lib/locale/locale-archive"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "4r", "type": "FIFO", "device": "0,12", "size_off": null, "node": 339914, "name": "pipe"}, {"command": "lsof", "pid": 23913, "tid": null, "user": "kbrazil", "fd": "7w", "type": "FIFO", "device": "0,12", "size_off": null, "node": 339915, "name": "pipe"}] +[{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/cwd (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/root (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1/exe (readlink: Permission denied)"},{"command":"systemd","pid":1,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1/fd (opendir: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/cwd (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/root (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/2/exe (readlink: Permission denied)"},{"command":"kthreadd","pid":2,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/2/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/root (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/4/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":4,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/4/fd (opendir: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/cwd (readlink: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/root (readlink: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/6/exe (readlink: Permission denied)"},{"command":"mm_percpu","pid":6,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/6/fd (opendir: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/cwd (readlink: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/root (readlink: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/7/exe (readlink: Permission denied)"},{"command":"ksoftirqd","pid":7,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/7/fd (opendir: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/cwd (readlink: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/root (readlink: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/8/exe (readlink: Permission denied)"},{"command":"rcu_sched","pid":8,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/8/fd (opendir: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/cwd (readlink: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/root (readlink: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/9/exe (readlink: Permission denied)"},{"command":"rcu_bh","pid":9,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/9/fd (opendir: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/cwd (readlink: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/root (readlink: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/10/exe (readlink: Permission denied)"},{"command":"migration","pid":10,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/10/fd (opendir: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/cwd (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/root (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/11/exe (readlink: Permission denied)"},{"command":"watchdog/","pid":11,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/11/fd (opendir: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/cwd (readlink: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/root (readlink: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/12/exe (readlink: Permission denied)"},{"command":"cpuhp/0","pid":12,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/12/fd (opendir: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/cwd (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/root (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/13/exe (readlink: Permission denied)"},{"command":"kdevtmpfs","pid":13,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/13/fd (opendir: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/cwd (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/root (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/14/exe (readlink: Permission denied)"},{"command":"netns","pid":14,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/14/fd (opendir: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/cwd (readlink: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/root (readlink: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15/exe (readlink: Permission denied)"},{"command":"rcu_tasks","pid":15,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15/fd (opendir: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/cwd (readlink: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/root (readlink: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16/exe (readlink: Permission denied)"},{"command":"kauditd","pid":16,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/16/fd (opendir: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/cwd (readlink: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/root (readlink: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17/exe (readlink: Permission denied)"},{"command":"khungtask","pid":17,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/17/fd (opendir: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/cwd (readlink: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/root (readlink: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/18/exe (readlink: Permission denied)"},{"command":"oom_reape","pid":18,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/18/fd (opendir: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/cwd (readlink: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/root (readlink: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19/exe (readlink: Permission denied)"},{"command":"writeback","pid":19,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/19/fd (opendir: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/cwd (readlink: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/root (readlink: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/20/exe (readlink: Permission denied)"},{"command":"kcompactd","pid":20,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/20/fd (opendir: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/cwd (readlink: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/root (readlink: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/21/exe (readlink: Permission denied)"},{"command":"ksmd","pid":21,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/21/fd (opendir: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/cwd (readlink: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/root (readlink: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/22/exe (readlink: Permission denied)"},{"command":"khugepage","pid":22,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/22/fd (opendir: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/cwd (readlink: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/root (readlink: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23/exe (readlink: Permission denied)"},{"command":"crypto","pid":23,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23/fd (opendir: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/cwd (readlink: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/root (readlink: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/24/exe (readlink: Permission denied)"},{"command":"kintegrit","pid":24,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/24/fd (opendir: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/cwd (readlink: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/root (readlink: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/25/exe (readlink: Permission denied)"},{"command":"kblockd","pid":25,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/25/fd (opendir: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/cwd (readlink: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/root (readlink: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/26/exe (readlink: Permission denied)"},{"command":"ata_sff","pid":26,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/26/fd (opendir: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/cwd (readlink: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/root (readlink: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/27/exe (readlink: Permission denied)"},{"command":"md","pid":27,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/27/fd (opendir: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/cwd (readlink: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/root (readlink: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/28/exe (readlink: Permission denied)"},{"command":"edac-poll","pid":28,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/28/fd (opendir: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/cwd (readlink: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/root (readlink: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/29/exe (readlink: Permission denied)"},{"command":"devfreq_w","pid":29,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/29/fd (opendir: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/cwd (readlink: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/root (readlink: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/30/exe (readlink: Permission denied)"},{"command":"watchdogd","pid":30,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/30/fd (opendir: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/cwd (readlink: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/root (readlink: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/34/exe (readlink: Permission denied)"},{"command":"kswapd0","pid":34,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/34/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/root (readlink: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/35/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":35,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/35/fd (opendir: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/cwd (readlink: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/root (readlink: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/36/exe (readlink: Permission denied)"},{"command":"ecryptfs-","pid":36,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/36/fd (opendir: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/cwd (readlink: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/root (readlink: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/78/exe (readlink: Permission denied)"},{"command":"kthrotld","pid":78,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/78/fd (opendir: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/cwd (readlink: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/root (readlink: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/79/exe (readlink: Permission denied)"},{"command":"acpi_ther","pid":79,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/79/fd (opendir: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/cwd (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/root (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/80/exe (readlink: Permission denied)"},{"command":"scsi_eh_0","pid":80,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/80/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/81/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":81,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/81/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/82/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":82,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/82/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/83/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":83,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/83/fd (opendir: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/cwd (readlink: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/root (readlink: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/89/exe (readlink: Permission denied)"},{"command":"ipv6_addr","pid":89,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/89/fd (opendir: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/cwd (readlink: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/root (readlink: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/99/exe (readlink: Permission denied)"},{"command":"kstrp","pid":99,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/99/fd (opendir: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/cwd (readlink: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/root (readlink: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/116/exe (readlink: Permission denied)"},{"command":"charger_m","pid":116,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/116/fd (opendir: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/cwd (readlink: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/root (readlink: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/170/exe (readlink: Permission denied)"},{"command":"mpt_poll_","pid":170,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/170/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/171/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":171,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/171/fd (opendir: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/cwd (readlink: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/root (readlink: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/172/exe (readlink: Permission denied)"},{"command":"mpt/0","pid":172,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/172/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/173/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":173,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/173/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/174/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":174,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/174/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/175/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":175,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/175/fd (opendir: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/cwd (readlink: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/root (readlink: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/176/exe (readlink: Permission denied)"},{"command":"scsi_eh_4","pid":176,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/176/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/177/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":177,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/177/fd (opendir: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/cwd (readlink: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/root (readlink: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/178/exe (readlink: Permission denied)"},{"command":"scsi_eh_5","pid":178,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/178/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/179/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":179,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/179/fd (opendir: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/cwd (readlink: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/root (readlink: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/180/exe (readlink: Permission denied)"},{"command":"scsi_eh_6","pid":180,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/180/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/181/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":181,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/181/fd (opendir: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/cwd (readlink: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/root (readlink: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/182/exe (readlink: Permission denied)"},{"command":"scsi_eh_7","pid":182,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/182/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/183/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":183,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/183/fd (opendir: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/cwd (readlink: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/root (readlink: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/188/exe (readlink: Permission denied)"},{"command":"scsi_eh_8","pid":188,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/188/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/189/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":189,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/189/fd (opendir: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/cwd (readlink: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/root (readlink: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/191/exe (readlink: Permission denied)"},{"command":"scsi_eh_9","pid":191,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/191/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/196/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":196,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/196/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/198/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":198,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/198/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/199/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":199,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/199/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/201/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":201,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/201/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/203/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":203,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/203/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/205/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":205,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/205/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/208/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":208,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/208/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/209/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":209,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/209/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/212/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":212,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/212/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/213/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":213,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/213/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/216/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":216,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/216/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/217/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":217,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/217/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/219/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":219,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/219/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/221/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":221,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/221/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/223/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":223,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/223/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/225/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":225,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/225/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/227/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":227,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/227/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/229/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":229,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/229/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/230/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":230,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/230/fd (opendir: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/cwd (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/root (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/232/exe (readlink: Permission denied)"},{"command":"scsi_eh_1","pid":232,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/232/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/233/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":233,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/233/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/235/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":235,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/235/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/237/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":237,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/237/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/238/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":238,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/238/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/240/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":240,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/240/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/241/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":241,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/241/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/243/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":243,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/243/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/245/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":245,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/245/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/246/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":246,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/246/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/248/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":248,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/248/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/250/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":250,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/250/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/252/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":252,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/252/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/254/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":254,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/254/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/256/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":256,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/256/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/258/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":258,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/258/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/259/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":259,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/259/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/260/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":260,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/260/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/261/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":261,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/261/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/262/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":262,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/262/fd (opendir: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/cwd (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/root (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/263/exe (readlink: Permission denied)"},{"command":"scsi_eh_2","pid":263,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/263/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/264/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":264,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/264/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/265/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":265,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/265/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/266/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":266,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/266/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/267/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":267,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/267/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/268/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":268,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/268/fd (opendir: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/cwd (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/root (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/295/exe (readlink: Permission denied)"},{"command":"scsi_eh_3","pid":295,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/295/fd (opendir: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/cwd (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/root (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/296/exe (readlink: Permission denied)"},{"command":"scsi_tmf_","pid":296,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/296/fd (opendir: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/cwd (readlink: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/root (readlink: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/302/exe (readlink: Permission denied)"},{"command":"ttm_swap","pid":302,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/302/fd (opendir: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/cwd (readlink: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/root (readlink: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/303/exe (readlink: Permission denied)"},{"command":"irq/16-vm","pid":303,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/303/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/root (readlink: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/305/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":305,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/305/fd (opendir: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/cwd (readlink: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/root (readlink: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/369/exe (readlink: Permission denied)"},{"command":"raid5wq","pid":369,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/369/fd (opendir: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/cwd (readlink: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/root (readlink: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/422/exe (readlink: Permission denied)"},{"command":"jbd2/sda2","pid":422,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/422/fd (opendir: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/cwd (readlink: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/root (readlink: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/423/exe (readlink: Permission denied)"},{"command":"ext4-rsv-","pid":423,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/423/fd (opendir: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/495/cwd (readlink: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/495/root (readlink: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/495/exe (readlink: Permission denied)"},{"command":"systemd-j","pid":495,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/495/fd (opendir: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/cwd (readlink: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/root (readlink: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/498/exe (readlink: Permission denied)"},{"command":"iscsi_eh","pid":498,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/498/fd (opendir: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/509/cwd (readlink: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/509/root (readlink: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/509/exe (readlink: Permission denied)"},{"command":"systemd-u","pid":509,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/509/fd (opendir: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/511/cwd (readlink: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/511/root (readlink: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/511/exe (readlink: Permission denied)"},{"command":"lvmetad","pid":511,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/511/fd (opendir: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/cwd (readlink: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/root (readlink: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/512/exe (readlink: Permission denied)"},{"command":"ib-comp-w","pid":512,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/512/fd (opendir: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/cwd (readlink: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/root (readlink: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/513/exe (readlink: Permission denied)"},{"command":"ib_mcast","pid":513,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/513/fd (opendir: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/cwd (readlink: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/root (readlink: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/514/exe (readlink: Permission denied)"},{"command":"ib_nl_sa_","pid":514,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/514/fd (opendir: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/cwd (readlink: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/root (readlink: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/523/exe (readlink: Permission denied)"},{"command":"rdma_cm","pid":523,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/523/fd (opendir: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/cwd (readlink: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/root (readlink: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/541/exe (readlink: Permission denied)"},{"command":"loop0","pid":541,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/541/fd (opendir: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/cwd (readlink: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/root (readlink: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/545/exe (readlink: Permission denied)"},{"command":"loop1","pid":545,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/545/fd (opendir: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/cwd (readlink: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/root (readlink: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/548/exe (readlink: Permission denied)"},{"command":"loop2","pid":548,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/548/fd (opendir: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/cwd (readlink: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/root (readlink: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/552/exe (readlink: Permission denied)"},{"command":"loop3","pid":552,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/552/fd (opendir: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/cwd (readlink: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/root (readlink: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/554/exe (readlink: Permission denied)"},{"command":"loop5","pid":554,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/554/fd (opendir: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/cwd (readlink: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/root (readlink: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/556/exe (readlink: Permission denied)"},{"command":"loop7","pid":556,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/556/fd (opendir: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/cwd (readlink: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/root (readlink: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/557/exe (readlink: Permission denied)"},{"command":"loop8","pid":557,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/557/fd (opendir: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/cwd (readlink: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/root (readlink: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/559/exe (readlink: Permission denied)"},{"command":"loop10","pid":559,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/559/fd (opendir: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/cwd (readlink: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/root (readlink: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/exe (readlink: Permission denied)"},{"command":"systemd-t","pid":606,"tid":null,"user":"systemd-timesync","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/606/fd (opendir: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/cwd (readlink: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/root (readlink: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/exe (readlink: Permission denied)"},{"command":"sd-resolv","pid":606,"tid":617,"user":"systemd-timesync","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/606/task/617/fd (opendir: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/607/cwd (readlink: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/607/root (readlink: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/607/exe (readlink: Permission denied)"},{"command":"VGAuthSer","pid":607,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/607/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/root (readlink: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/671/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":671,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/671/fd (opendir: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/cwd (readlink: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/root (readlink: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/exe (readlink: Permission denied)"},{"command":"vmtoolsd","pid":680,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/680/fd (opendir: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/cwd (readlink: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/root (readlink: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/exe (readlink: Permission denied)"},{"command":"gmain","pid":680,"tid":733,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/680/task/733/fd (opendir: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/867/cwd (readlink: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/867/root (readlink: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/867/exe (readlink: Permission denied)"},{"command":"systemd-n","pid":867,"tid":null,"user":"systemd-network","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/867/fd (opendir: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/885/cwd (readlink: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/885/root (readlink: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/885/exe (readlink: Permission denied)"},{"command":"systemd-r","pid":885,"tid":null,"user":"systemd-resolve","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/885/fd (opendir: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/cwd (readlink: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/root (readlink: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/exe (readlink: Permission denied)"},{"command":"rsyslogd","pid":955,"tid":null,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/fd (opendir: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/cwd (readlink: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/root (readlink: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/exe (readlink: Permission denied)"},{"command":"in:imuxso","pid":955,"tid":965,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/task/965/fd (opendir: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/cwd (readlink: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/root (readlink: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/exe (readlink: Permission denied)"},{"command":"in:imklog","pid":955,"tid":966,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/task/966/fd (opendir: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/cwd (readlink: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/root (readlink: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/exe (readlink: Permission denied)"},{"command":"rs:main","pid":955,"tid":967,"user":"syslog","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/955/task/967/fd (opendir: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/cwd (readlink: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/root (readlink: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/exe (readlink: Permission denied)"},{"command":"networkd-","pid":956,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/956/fd (opendir: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/cwd (readlink: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/root (readlink: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/exe (readlink: Permission denied)"},{"command":"gmain","pid":956,"tid":1294,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/956/task/1294/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22673,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22673/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22675,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22675/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22676,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22676/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22678,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22678/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22683,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22683/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22685,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22685/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22686,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22686/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22688,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22688/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22689,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22689/fd (opendir: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/cwd (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/root (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/exe (readlink: Permission denied)"},{"command":"lxcfs","pid":960,"tid":22690,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/960/task/22690/fd (opendir: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/cwd (readlink: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/root (readlink: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/exe (readlink: Permission denied)"},{"command":"accounts-","pid":961,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/961/fd (opendir: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/cwd (readlink: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/root (readlink: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/exe (readlink: Permission denied)"},{"command":"gmain","pid":961,"tid":1030,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/961/task/1030/fd (opendir: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/root (readlink: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/exe (readlink: Permission denied)"},{"command":"gdbus","pid":961,"tid":1101,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/961/task/1101/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1326,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1326/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1327,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1327/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1328,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1328/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1329,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1329/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1332,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1332/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1342,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1342/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1359,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1359/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1382,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1382/fd (opendir: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/cwd (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/root (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/exe (readlink: Permission denied)"},{"command":"snapd","pid":1017,"tid":1517,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1017/task/1517/fd (opendir: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1018/cwd (readlink: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1018/root (readlink: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1018/exe (readlink: Permission denied)"},{"command":"systemd-l","pid":1018,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1018/fd (opendir: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1038/cwd (readlink: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1038/root (readlink: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1038/exe (readlink: Permission denied)"},{"command":"cron","pid":1038,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1038/fd (opendir: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1043/cwd (readlink: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1043/root (readlink: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1043/exe (readlink: Permission denied)"},{"command":"login","pid":1043,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1043/fd (opendir: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1048/cwd (readlink: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1048/root (readlink: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1048/exe (readlink: Permission denied)"},{"command":"dbus-daem","pid":1048,"tid":null,"user":"messagebus","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1048/fd (opendir: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/cwd (readlink: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/root (readlink: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/exe (readlink: Permission denied)"},{"command":"unattende","pid":1099,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1099/fd (opendir: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/cwd (readlink: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/root (readlink: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/exe (readlink: Permission denied)"},{"command":"gmain","pid":1099,"tid":1311,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1099/task/1311/fd (opendir: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1100/cwd (readlink: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1100/root (readlink: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1100/exe (readlink: Permission denied)"},{"command":"atd","pid":1100,"tid":null,"user":"daemon","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1100/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1303,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1303/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1304,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1304/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1305,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1305/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1306,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1306/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1315,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1315/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1322,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1322/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1323,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1323/fd (opendir: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/cwd (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/root (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/exe (readlink: Permission denied)"},{"command":"container","pid":1112,"tid":1325,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1112/task/1325/fd (opendir: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1127/cwd (readlink: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1127/root (readlink: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1127/exe (readlink: Permission denied)"},{"command":"sshd","pid":1127,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1127/fd (opendir: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1153/cwd (readlink: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1153/root (readlink: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1153/exe (readlink: Permission denied)"},{"command":"agetty","pid":1153,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1153/fd (opendir: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/cwd (readlink: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/root (readlink: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/exe (readlink: Permission denied)"},{"command":"polkitd","pid":1154,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1154/fd (opendir: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/cwd (readlink: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/root (readlink: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/exe (readlink: Permission denied)"},{"command":"gmain","pid":1154,"tid":1198,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1198/fd (opendir: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/cwd (readlink: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/root (readlink: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/exe (readlink: Permission denied)"},{"command":"gdbus","pid":1154,"tid":1203,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1154/task/1203/fd (opendir: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/cwd (readlink: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/root (readlink: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1532/exe (readlink: Permission denied)"},{"command":"loop11","pid":1532,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1532/fd (opendir: Permission denied)"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1595792,"node":668802,"name":"/lib/systemd/systemd"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1700792,"node":656167,"name":"/lib/x86_64-linux-gnu/libm-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":121016,"node":655394,"name":"/lib/x86_64-linux-gnu/libudev.so.1.6.9"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":84032,"node":656154,"name":"/lib/x86_64-linux-gnu/libgpg-error.so.0.22.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":43304,"node":656160,"name":"/lib/x86_64-linux-gnu/libjson-c.so.3.0.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":34872,"node":924307,"name":"/usr/lib/x86_64-linux-gnu/libargon2.so.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":432640,"node":656144,"name":"/lib/x86_64-linux-gnu/libdevmapper.so.1.02.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18680,"node":656129,"name":"/lib/x86_64-linux-gnu/libattr.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":18712,"node":656135,"name":"/lib/x86_64-linux-gnu/libcap-ng.so.0.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27112,"node":656215,"name":"/lib/x86_64-linux-gnu/libuuid.so.1.3.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":112672,"node":924379,"name":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.7.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":153984,"node":656165,"name":"/lib/x86_64-linux-gnu/liblzma.so.5.2.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":206872,"node":656157,"name":"/lib/x86_64-linux-gnu/libidn.so.11.6.16"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":27088,"node":924361,"name":"/usr/lib/x86_64-linux-gnu/libip4tc.so.0.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1155768,"node":656153,"name":"/lib/x86_64-linux-gnu/libgcrypt.so.20.2.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":22768,"node":656136,"name":"/lib/x86_64-linux-gnu/libcap.so.2.25"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":310040,"node":656140,"name":"/lib/x86_64-linux-gnu/libcryptsetup.so.12.2.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31232,"node":656125,"name":"/lib/x86_64-linux-gnu/libacl.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":64144,"node":656127,"name":"/lib/x86_64-linux-gnu/libapparmor.so.1.4.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":92208,"node":656162,"name":"/lib/x86_64-linux-gnu/libkmod.so.2.3.2"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":124848,"node":656130,"name":"/lib/x86_64-linux-gnu/libaudit.so.1.0.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":55848,"node":656185,"name":"/lib/x86_64-linux-gnu/libpam.so.0.83.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":311720,"node":656131,"name":"/lib/x86_64-linux-gnu/libblkid.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":340232,"node":656170,"name":"/lib/x86_64-linux-gnu/libmount.so.1.1.0"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":288976,"node":656202,"name":"/lib/x86_64-linux-gnu/libseccomp.so.2.4.1"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":31680,"node":656201,"name":"/lib/x86_64-linux-gnu/librt-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2363632,"node":655401,"name":"/lib/systemd/libsystemd-shared-237.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"1u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"2u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33601,"name":"type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"3u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33650,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"4u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"5u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[signalfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"6r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"7r","type":"DIR","device":"0,28","size_off":0,"node":1263,"name":"/sys/fs/cgroup/unified/user.slice/user-1000.slice/user@1000.service"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"8u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"9u","type":"netlink","device":null,"size_off":0,"node":33759,"name":"KOBJECT_UEVENT"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"10u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[eventpoll]"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"11r","type":"REG","device":"0,4","size_off":0,"node":33761,"name":"/proc/1723/mountinfo"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"12r","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"inotify"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"13r","type":"REG","device":"0,4","size_off":0,"node":4026532068,"name":"/proc/swaps"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"14u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33762,"name":"/run/user/1000/systemd/notify type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"15u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33763,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"16u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33764,"name":"type=DGRAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"17u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33765,"name":"/run/user/1000/systemd/private type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"22u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33808,"name":"/run/user/1000/gnupg/S.gpg-agent.ssh type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"23u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33809,"name":"/run/user/1000/gnupg/S.dirmngr type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"24u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33810,"name":"/run/user/1000/gnupg/S.gpg-agent.browser type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"25u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33811,"name":"/run/user/1000/gnupg/S.gpg-agent type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"26u","type":"unix","device":"0x0000000000000000","size_off":0,"node":33812,"name":"/run/user/1000/gnupg/S.gpg-agent.extra type=STREAM"},{"command":"systemd","pid":1723,"tid":null,"user":"kbrazil","fd":"27u","type":"a_inode","device":"0,13","size_off":0,"node":10717,"name":"[timerfd]"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1734/cwd (readlink: Permission denied)"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1734/root (readlink: Permission denied)"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/1734/exe (readlink: Permission denied)"},{"command":"(sd-pam","pid":1734,"tid":null,"user":"kbrazil","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/1734/fd (opendir: Permission denied)"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"bash","pid":1749,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"4,64","size_off":0,"node":87,"name":"/dev/ttyS0"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/cwd (readlink: Permission denied)"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/root (readlink: Permission denied)"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3451/exe (readlink: Permission denied)"},{"command":"loop9","pid":3451,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/3451/fd (opendir: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/cwd (readlink: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/root (readlink: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/3657/exe (readlink: Permission denied)"},{"command":"loop4","pid":3657,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/3657/fd (opendir: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/cwd (readlink: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/root (readlink: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15892/exe (readlink: Permission denied)"},{"command":"xfsalloc","pid":15892,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15892/fd (opendir: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/cwd (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/root (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15896/exe (readlink: Permission denied)"},{"command":"xfs_mru_c","pid":15896,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15896/fd (opendir: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/cwd (readlink: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/root (readlink: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15900/exe (readlink: Permission denied)"},{"command":"jfsIO","pid":15900,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15900/fd (opendir: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/cwd (readlink: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/root (readlink: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15901/exe (readlink: Permission denied)"},{"command":"jfsCommit","pid":15901,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15901/fd (opendir: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/cwd (readlink: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/root (readlink: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/15902/exe (readlink: Permission denied)"},{"command":"jfsSync","pid":15902,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/15902/fd (opendir: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16944/cwd (readlink: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16944/root (readlink: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/16944/exe (readlink: Permission denied)"},{"command":"sshd","pid":16944,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/16944/fd (opendir: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17058/cwd (readlink: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17058/root (readlink: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/17058/exe (readlink: Permission denied)"},{"command":"sshd","pid":17058,"tid":null,"user":"kbrazil","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/17058/fd (opendir: Permission denied)"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47568,"node":656179,"name":"/lib/x86_64-linux-gnu/libnss_files-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":97176,"node":656176,"name":"/lib/x86_64-linux-gnu/libnsl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":47576,"node":656181,"name":"/lib/x86_64-linux-gnu/libnss_nis-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":39744,"node":656177,"name":"/lib/x86_64-linux-gnu/libnss_compat-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"bash","pid":17059,"tid":null,"user":"kbrazil","fd":"255u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/root (readlink: Permission denied)"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/19890/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":19890,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/19890/fd (opendir: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/cwd (readlink: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/root (readlink: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23282/exe (readlink: Permission denied)"},{"command":"kworker/0","pid":23282,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23282/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/root (readlink: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23289/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":23289,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23289/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/root (readlink: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23310/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":23310,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23310/fd (opendir: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"cwd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/cwd (readlink: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"rtd","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/root (readlink: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"txt","type":"unknown","device":null,"size_off":null,"node":null,"name":"/proc/23851/exe (readlink: Permission denied)"},{"command":"kworker/u","pid":23851,"tid":null,"user":"root","fd":"NOFD","type":null,"device":null,"size_off":null,"node":null,"name":"/proc/23851/fd (opendir: Permission denied)"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":1113504,"node":131099,"name":"/bin/bash"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170784,"node":656210,"name":"/lib/x86_64-linux-gnu/libtinfo.so.5.9"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":26376,"node":1049137,"name":"/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"tests.sh","pid":23870,"tid":null,"user":"kbrazil","fd":"255r","type":"REG","device":"8,2","size_off":1568,"node":528300,"name":"/home/kbrazil/testfiles/tests.sh"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"0r","type":"CHR","device":"1,3","size_off":0,"node":6,"name":"/dev/null"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23903,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23904,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23905,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":35000,"node":131203,"name":"/bin/sleep"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"1u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"sleep","pid":23906,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"0u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"1w","type":"REG","device":"8,2","size_off":0,"node":528286,"name":"/home/kbrazil/testfiles/lsof.out"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"2u","type":"CHR","device":"136,0","size_off":0,"node":3,"name":"/dev/pts/0"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"3r","type":"DIR","device":"0,4","size_off":0,"node":1,"name":"/proc"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"4r","type":"DIR","device":"0,4","size_off":0,"node":339909,"name":"/proc/23912/fd"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"5w","type":"FIFO","device":"0,12","size_off":0,"node":339914,"name":"pipe"},{"command":"lsof","pid":23912,"tid":null,"user":"kbrazil","fd":"6r","type":"FIFO","device":"0,12","size_off":0,"node":339915,"name":"pipe"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"cwd","type":"DIR","device":"8,2","size_off":4096,"node":528261,"name":"/home/kbrazil/testfiles"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"rtd","type":"DIR","device":"8,2","size_off":4096,"node":2,"name":"/"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"txt","type":"REG","device":"8,2","size_off":163224,"node":918160,"name":"/usr/bin/lsof"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":144976,"node":656197,"name":"/lib/x86_64-linux-gnu/libpthread-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":14560,"node":656145,"name":"/lib/x86_64-linux-gnu/libdl-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":464824,"node":656191,"name":"/lib/x86_64-linux-gnu/libpcre.so.3.13.3"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":2030544,"node":656134,"name":"/lib/x86_64-linux-gnu/libc-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":154832,"node":656203,"name":"/lib/x86_64-linux-gnu/libselinux.so.1"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":170960,"node":656122,"name":"/lib/x86_64-linux-gnu/ld-2.27.so"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"mem","type":"REG","device":"8,2","size_off":1683056,"node":933058,"name":"/usr/lib/locale/locale-archive"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"4r","type":"FIFO","device":"0,12","size_off":0,"node":339914,"name":"pipe"},{"command":"lsof","pid":23913,"tid":null,"user":"kbrazil","fd":"7w","type":"FIFO","device":"0,12","size_off":0,"node":339915,"name":"pipe"}] From d36b332bd78b5bf5979cdc59b31da08d8e4104d7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 18 Apr 2021 16:33:47 -0700 Subject: [PATCH 32/36] use jc.utils for conversions --- docs/parsers/systemctl_lj.md | 2 +- docs/parsers/time.md | 2 +- docs/parsers/timedatectl.md | 2 +- docs/parsers/tracepath.md | 2 +- docs/parsers/traceroute.md | 2 +- docs/parsers/upower.md | 2 +- docs/parsers/uptime.md | 2 +- docs/parsers/wc.md | 2 +- docs/parsers/who.md | 2 +- docs/utils.md | 2 +- jc/parsers/acpi.py | 21 +++++++------------ jc/parsers/airport_s.py | 9 +++----- jc/parsers/arp.py | 4 ++-- jc/parsers/blkid.py | 4 ++-- jc/parsers/cksum.py | 4 ++-- jc/parsers/df.py | 4 ++-- jc/parsers/dig.py | 4 ++-- jc/parsers/dir.py | 4 ++-- jc/parsers/dmidecode.py | 4 ++-- jc/parsers/du.py | 4 ++-- jc/parsers/free.py | 4 ++-- jc/parsers/fstab.py | 4 ++-- jc/parsers/group.py | 4 ++-- jc/parsers/hash.py | 4 ++-- jc/parsers/hciconfig.py | 4 ++-- jc/parsers/ifconfig.py | 4 ++-- jc/parsers/iptables.py | 4 ++-- jc/parsers/jobs.py | 4 ++-- jc/parsers/ls.py | 4 ++-- jc/parsers/lsblk.py | 13 +++++------- jc/parsers/lsmod.py | 4 ++-- jc/parsers/lsof.py | 4 ++-- jc/parsers/netstat.py | 16 +++++++-------- jc/parsers/ntpq.py | 10 ++++----- jc/parsers/passwd.py | 4 ++-- jc/parsers/ps.py | 13 +++++------- jc/parsers/route.py | 4 ++-- jc/parsers/rpm_qi.py | 4 ++-- jc/parsers/shadow.py | 4 ++-- jc/parsers/ss.py | 4 ++-- jc/parsers/stat.py | 4 ++-- jc/parsers/systemctl_lj.py | 13 +++++------- jc/parsers/systeminfo.py | 6 +++--- jc/parsers/time.py | 32 +++++++++++------------------ jc/parsers/timedatectl.py | 8 ++------ jc/parsers/tracepath.py | 40 +++++++++++------------------------- jc/parsers/traceroute.py | 36 ++++++++++---------------------- jc/parsers/upower.py | 24 ++++++++-------------- jc/parsers/uptime.py | 39 +++++++++++++---------------------- jc/parsers/w.py | 4 ++-- jc/parsers/wc.py | 12 +++++------ jc/parsers/who.py | 12 ++++------- jc/utils.py | 36 ++++++++++++++++++++------------ 53 files changed, 193 insertions(+), 271 deletions(-) diff --git a/docs/parsers/systemctl_lj.md b/docs/parsers/systemctl_lj.md index ca9fc5d1..72a5a4af 100644 --- a/docs/parsers/systemctl_lj.md +++ b/docs/parsers/systemctl_lj.md @@ -100,4 +100,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/time.md b/docs/parsers/time.md index b1d5a6a0..cc8468bd 100644 --- a/docs/parsers/time.md +++ b/docs/parsers/time.md @@ -148,4 +148,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/timedatectl.md b/docs/parsers/timedatectl.md index f6628b22..9d740a5a 100644 --- a/docs/parsers/timedatectl.md +++ b/docs/parsers/timedatectl.md @@ -88,4 +88,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/tracepath.md b/docs/parsers/tracepath.md index 64791ef6..b4ab6b43 100644 --- a/docs/parsers/tracepath.md +++ b/docs/parsers/tracepath.md @@ -156,4 +156,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/traceroute.md b/docs/parsers/traceroute.md index 099f4f35..e29dd8b8 100644 --- a/docs/parsers/traceroute.md +++ b/docs/parsers/traceroute.md @@ -142,4 +142,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, freebsd -Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/upower.md b/docs/parsers/upower.md index 91e174da..6156d1e6 100644 --- a/docs/parsers/upower.md +++ b/docs/parsers/upower.md @@ -219,4 +219,4 @@ Returns: ## Parser Information Compatibility: linux -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/uptime.md b/docs/parsers/uptime.md index 146016e7..1fe63384 100644 --- a/docs/parsers/uptime.md +++ b/docs/parsers/uptime.md @@ -90,4 +90,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/wc.md b/docs/parsers/wc.md index 3bc1f5ab..130ef740 100644 --- a/docs/parsers/wc.md +++ b/docs/parsers/wc.md @@ -79,4 +79,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/parsers/who.md b/docs/parsers/who.md index 8a4f7f40..f694220e 100644 --- a/docs/parsers/who.md +++ b/docs/parsers/who.md @@ -157,4 +157,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, cygwin, aix, freebsd -Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/docs/utils.md b/docs/utils.md index 60bd45cc..e245fd8c 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -78,7 +78,7 @@ Converts string input to integer by stripping all non-numeric characters Parameters: - value: (string) Input value + value: (string/integer/float) Input value Returns: diff --git a/jc/parsers/acpi.py b/jc/parsers/acpi.py index 59d09191..2125c38e 100644 --- a/jc/parsers/acpi.py +++ b/jc/parsers/acpi.py @@ -256,25 +256,18 @@ def _process(proc_data): float_list = ['temperature'] for entry in proc_data: - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) - - if 'trip_points' in entry: - for tp in entry['trip_points']: - for key in int_list: - if key in tp: - tp[key] = jc.utils.convert_to_int(tp[key]) - - for entry in proc_data: - for key in float_list: - if key in entry: + if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) if 'trip_points' in entry: for tp in entry['trip_points']: - for key in float_list: - if key in tp: + for key in tp: + if key in int_list: + tp[key] = jc.utils.convert_to_int(tp[key]) + if key in float_list: tp[key] = jc.utils.convert_to_float(tp[key]) for entry in proc_data: diff --git a/jc/parsers/airport_s.py b/jc/parsers/airport_s.py index 3ae4aef9..28ccc380 100644 --- a/jc/parsers/airport_s.py +++ b/jc/parsers/airport_s.py @@ -137,15 +137,12 @@ def _process(proc_data): """ for entry in proc_data: - # integers + # convert integers and booleans int_list = ['rssi'] - for key in int_list: - if key in entry: - entry[key] = jc.utils.convert_to_int(entry[key]) - - # booleans bool_list = ['ht'] for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) if key in bool_list: entry[key] = jc.utils.convert_to_bool(entry[key]) diff --git a/jc/parsers/arp.py b/jc/parsers/arp.py index 896e37c4..fe45ea2b 100644 --- a/jc/parsers/arp.py +++ b/jc/parsers/arp.py @@ -150,8 +150,8 @@ def _process(proc_data): entry['name'] = None int_list = ['expires'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/blkid.py b/jc/parsers/blkid.py index 0153efc7..6c4d7ab1 100644 --- a/jc/parsers/blkid.py +++ b/jc/parsers/blkid.py @@ -155,8 +155,8 @@ def _process(proc_data): 'id_part_entry_offset', 'id_part_entry_size', 'minimum_io_size', 'physical_sector_size', 'logical_sector_size', 'id_iolimit_minimum_io_size', 'id_iolimit_physical_sector_size', 'id_iolimit_logical_sector_size'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/cksum.py b/jc/parsers/cksum.py index b3150f6e..541abb82 100644 --- a/jc/parsers/cksum.py +++ b/jc/parsers/cksum.py @@ -82,8 +82,8 @@ def _process(proc_data): for entry in proc_data: int_list = ['checksum', 'blocks'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/df.py b/jc/parsers/df.py index 714c4ae4..2fc61246 100644 --- a/jc/parsers/df.py +++ b/jc/parsers/df.py @@ -158,8 +158,8 @@ def _process(proc_data): # change used, available, use_percent, capacity_percent, ifree, iused, iused_percent to int int_list = ['used', 'available', 'use_percent', 'capacity_percent', 'ifree', 'iused', 'iused_percent'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 4ceccfea..323998cd 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -304,8 +304,8 @@ def _process(proc_data): for entry in proc_data: int_list = ['id', 'query_num', 'answer_num', 'authority_num', 'additional_num', 'rcvd', 'query_size', 'query_time'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'axfr' in entry: diff --git a/jc/parsers/dir.py b/jc/parsers/dir.py index 19fae60a..851f93d7 100644 --- a/jc/parsers/dir.py +++ b/jc/parsers/dir.py @@ -155,8 +155,8 @@ def _process(proc_data): # add ints int_list = ["size"] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/dmidecode.py b/jc/parsers/dmidecode.py index 5c7e6971..b03dfff7 100644 --- a/jc/parsers/dmidecode.py +++ b/jc/parsers/dmidecode.py @@ -153,8 +153,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['type', 'bytes'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if not entry['values']: diff --git a/jc/parsers/du.py b/jc/parsers/du.py index d5dd592e..5774f615 100644 --- a/jc/parsers/du.py +++ b/jc/parsers/du.py @@ -116,8 +116,8 @@ def _process(proc_data): """ int_list = ['size'] for entry in proc_data: - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/free.py b/jc/parsers/free.py index c8fcc116..b1d4db9d 100644 --- a/jc/parsers/free.py +++ b/jc/parsers/free.py @@ -101,8 +101,8 @@ def _process(proc_data): for entry in proc_data: int_list = ['total', 'used', 'free', 'shared', 'buff_cache', 'available'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/fstab.py b/jc/parsers/fstab.py index 4620a4f6..d7522c75 100644 --- a/jc/parsers/fstab.py +++ b/jc/parsers/fstab.py @@ -111,8 +111,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['fs_freq', 'fs_passno'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/group.py b/jc/parsers/group.py index 22ba0e66..fe554df9 100644 --- a/jc/parsers/group.py +++ b/jc/parsers/group.py @@ -136,8 +136,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['gid'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if entry['members'] == ['']: diff --git a/jc/parsers/hash.py b/jc/parsers/hash.py index f73ac0fa..2fd7d0d4 100644 --- a/jc/parsers/hash.py +++ b/jc/parsers/hash.py @@ -64,8 +64,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['hits'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/hciconfig.py b/jc/parsers/hciconfig.py index 27801b38..70d247fe 100644 --- a/jc/parsers/hciconfig.py +++ b/jc/parsers/hciconfig.py @@ -348,8 +348,8 @@ def _process(proc_data): int_list = ['acl_mtu', 'acl_mtu_packets', 'sco_mtu', 'sco_mtu_packets', 'rx_bytes', 'rx_acl', 'rx_sco', 'rx_events', 'rx_errors', 'tx_bytes', 'tx_acl', 'tx_sco', 'tx_commands', 'tx_errors'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'service_classes' in entry and len(entry['service_classes']) == 1 and 'Unspecified' in entry['service_classes']: diff --git a/jc/parsers/ifconfig.py b/jc/parsers/ifconfig.py index c45b60fb..bd73cfde 100644 --- a/jc/parsers/ifconfig.py +++ b/jc/parsers/ifconfig.py @@ -434,8 +434,8 @@ def _process(proc_data): int_list = ['flags', 'mtu', 'ipv6_mask', 'rx_packets', 'rx_bytes', 'rx_errors', 'rx_dropped', 'rx_overruns', 'rx_frame', 'tx_packets', 'tx_bytes', 'tx_errors', 'tx_dropped', 'tx_overruns', 'tx_carrier', 'tx_collisions', 'metric'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) # convert OSX-style subnet mask to dotted quad diff --git a/jc/parsers/iptables.py b/jc/parsers/iptables.py index 110de268..e59e6fa7 100644 --- a/jc/parsers/iptables.py +++ b/jc/parsers/iptables.py @@ -191,8 +191,8 @@ def _process(proc_data): for entry in proc_data: for rule in entry['rules']: int_list = ['num', 'pkts'] - for key in int_list: - if key in rule: + for key in rule: + if key in int_list: rule[key] = jc.utils.convert_to_int(rule[key]) if 'bytes' in rule: diff --git a/jc/parsers/jobs.py b/jc/parsers/jobs.py index 42ba7aab..b33154f5 100644 --- a/jc/parsers/jobs.py +++ b/jc/parsers/jobs.py @@ -122,8 +122,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['job_number', 'pid'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/ls.py b/jc/parsers/ls.py index 691657af..c0c6ce6c 100644 --- a/jc/parsers/ls.py +++ b/jc/parsers/ls.py @@ -134,8 +134,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['links', 'size'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'date' in entry: diff --git a/jc/parsers/lsblk.py b/jc/parsers/lsblk.py index cd09b74f..b835d1fd 100644 --- a/jc/parsers/lsblk.py +++ b/jc/parsers/lsblk.py @@ -295,16 +295,13 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - # boolean changes + # boolean and integer changes bool_list = ['rm', 'ro', 'rota', 'disc_zero', 'rand'] - for key in bool_list: - if key in entry: - entry[key] = jc.utils.convert_to_bool(entry[key]) - - # integer changes int_list = ['ra', 'alignment', 'min_io', 'opt_io', 'phy_sec', 'log_sec', 'rq_size', 'disc_aln'] - for key in int_list: - if key in entry: + for key in entry: + if key in bool_list: + entry[key] = jc.utils.convert_to_bool(entry[key]) + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/lsmod.py b/jc/parsers/lsmod.py index ba1b286a..07b07cdd 100644 --- a/jc/parsers/lsmod.py +++ b/jc/parsers/lsmod.py @@ -153,8 +153,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['size', 'used'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/lsof.py b/jc/parsers/lsof.py index 96dff8ea..8115763d 100644 --- a/jc/parsers/lsof.py +++ b/jc/parsers/lsof.py @@ -147,8 +147,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['pid', 'tid', 'size_off', 'node'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index a712168d..f72709c4 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -380,7 +380,7 @@ def _process(proc_data): List of Dictionaries. Structured data to conform to the schema. """ for entry in proc_data: - # integer changes + # integer and float conversions int_list = ['recv_q', 'send_q', 'pid', 'refcnt', 'inode', 'unit', 'vendor', 'class', 'osx_flags', 'subcla', 'pcbcount', 'rcvbuf', 'sndbuf', 'rxbytes', 'txbytes', 'route_refs', 'use', 'mtu', 'mss', 'window', 'irtt', 'metric', 'ipkts', @@ -388,10 +388,14 @@ def _process(proc_data): 'tx_ok', 'tx_err', 'tx_drp', 'tx_ovr', 'idrop', 'ibytes', 'obytes', 'r_mbuf', 's_mbuf', 'r_clus', 's_clus', 'r_hiwa', 's_hiwa', 'r_lowa', 's_lowa', 'r_bcnt', 's_bcnt', 'r_bmax', 's_bmax', 'rexmit', 'ooorcv', '0_win'] - for key in int_list: - if key in entry: + float_list = ['rexmt', 'persist', 'keep', '2msl', 'delack', 'rcvtime'] + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) + if key in float_list: + entry[key] = jc.utils.convert_to_float(entry[key]) + # add number keys if 'local_port' in entry: local_num = jc.utils.convert_to_int(entry['local_port']) if local_num: @@ -402,12 +406,6 @@ def _process(proc_data): if foreign_num: entry['foreign_port_num'] = foreign_num - # float changes - float_list = ['rexmt', 'persist', 'keep', '2msl', 'delack', 'rcvtime'] - for key in float_list: - if key in entry: - entry[key] = jc.utils.convert_to_float(entry[key]) - return proc_data diff --git a/jc/parsers/ntpq.py b/jc/parsers/ntpq.py index bf879abc..4d2a8aef 100644 --- a/jc/parsers/ntpq.py +++ b/jc/parsers/ntpq.py @@ -240,13 +240,11 @@ def _process(proc_data): entry['state'] = entry.pop('s') int_list = ['st', 'when', 'poll', 'reach'] - for key in int_list: - if key in entry: - entry[key] = jc.utils.convert_to_int(entry[key]) - float_list = ['delay', 'offset', 'jitter'] - for key in float_list: - if key in entry: + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) + if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data diff --git a/jc/parsers/passwd.py b/jc/parsers/passwd.py index bf6912df..acb5d616 100644 --- a/jc/parsers/passwd.py +++ b/jc/parsers/passwd.py @@ -121,8 +121,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['uid', 'gid'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/ps.py b/jc/parsers/ps.py index 97c3e428..bf8e4749 100644 --- a/jc/parsers/ps.py +++ b/jc/parsers/ps.py @@ -241,16 +241,13 @@ def _process(proc_data): if '%mem' in entry: entry['mem_percent'] = entry.pop('%mem') - # change to int + # convert ints and floats int_list = ['pid', 'ppid', 'c', 'vsz', 'rss'] - for key in int_list: - if key in entry: - entry[key] = jc.utils.convert_to_int(entry[key]) - - # change to float float_list = ['cpu_percent', 'mem_percent'] - for key in float_list: - if key in entry: + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) + if key in float_list: entry[key] = jc.utils.convert_to_float(entry[key]) # clean up other fields diff --git a/jc/parsers/route.py b/jc/parsers/route.py index 9fc3f721..2f3944c8 100644 --- a/jc/parsers/route.py +++ b/jc/parsers/route.py @@ -138,8 +138,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['metric', 'ref', 'use', 'mss', 'window', 'irtt'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) # add flags_pretty diff --git a/jc/parsers/rpm_qi.py b/jc/parsers/rpm_qi.py index 19df676f..e63f63a0 100644 --- a/jc/parsers/rpm_qi.py +++ b/jc/parsers/rpm_qi.py @@ -185,8 +185,8 @@ def _process(proc_data): for entry in proc_data: int_list = ['epoch', 'size'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'build_date' in entry: diff --git a/jc/parsers/shadow.py b/jc/parsers/shadow.py index 4df9c09e..ebaae347 100644 --- a/jc/parsers/shadow.py +++ b/jc/parsers/shadow.py @@ -128,8 +128,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['last_changed', 'minimum', 'maximum', 'warn', 'inactive', 'expire'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) return proc_data diff --git a/jc/parsers/ss.py b/jc/parsers/ss.py index 0437d126..62d3fc2c 100644 --- a/jc/parsers/ss.py +++ b/jc/parsers/ss.py @@ -306,8 +306,8 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['recv_q', 'send_q', 'pid'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) if 'local_port' in entry: diff --git a/jc/parsers/stat.py b/jc/parsers/stat.py index 534a815d..d071bf31 100644 --- a/jc/parsers/stat.py +++ b/jc/parsers/stat.py @@ -197,8 +197,8 @@ def _process(proc_data): for entry in proc_data: int_list = ['size', 'blocks', 'io_blocks', 'inode', 'links', 'uid', 'gid', 'unix_device', 'rdev', 'block_size'] - for key in int_list: - if key in entry: + for key in entry: + if key in int_list: entry[key] = jc.utils.convert_to_int(entry[key]) # turn - into null for time fields and add calculated timestamp fields diff --git a/jc/parsers/systemctl_lj.py b/jc/parsers/systemctl_lj.py index fa360e69..ee0a701d 100644 --- a/jc/parsers/systemctl_lj.py +++ b/jc/parsers/systemctl_lj.py @@ -75,7 +75,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`systemctl list-jobs` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -102,13 +102,10 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['job'] - for key in int_list: - if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) + return proc_data diff --git a/jc/parsers/systeminfo.py b/jc/parsers/systeminfo.py index c6f8b571..c8f6cc9e 100644 --- a/jc/parsers/systeminfo.py +++ b/jc/parsers/systeminfo.py @@ -241,7 +241,7 @@ def _process(proc_data): proc_data[item] = None for i, nic in enumerate(proc_data["network_cards"]): - proc_data["network_cards"][i]["dhcp_enabled"] = _convert_to_boolean( + proc_data["network_cards"][i]["dhcp_enabled"] = jc.utils.convert_to_bool( nic["dhcp_enabled"] ) @@ -258,7 +258,7 @@ def _process(proc_data): "virtual_memory_in_use_mb", ] for key in int_list: - proc_data[key] = _convert_to_int(proc_data.get(key)) + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) dt_list = ["original_install_date", "system_boot_time"] for key in dt_list: @@ -282,7 +282,7 @@ def _process(proc_data): if hyperv_key in proc_data: for key in hyperv_subkey_list: if key in proc_data[hyperv_key]: - proc_data[hyperv_key][key] = _convert_to_boolean( + proc_data[hyperv_key][key] = jc.utils.convert_to_bool( proc_data[hyperv_key][key] ) diff --git a/jc/parsers/time.py b/jc/parsers/time.py index 46f19e09..99511e33 100644 --- a/jc/parsers/time.py +++ b/jc/parsers/time.py @@ -123,7 +123,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`/usr/bin/time` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -156,38 +156,30 @@ def _process(proc_data): *hours, minutes, seconds, centiseconds = proc_data['elapsed_time'].split(':') proc_data['elapsed_time'] = proc_data['elapsed_time'][::-1].replace(':', '.', 1)[::-1] if hours: - proc_data['elapsed_time_hours'] = int(hours[0]) + proc_data['elapsed_time_hours'] = jc.utils.convert_to_int(hours[0]) else: proc_data['elapsed_time_hours'] = 0 - proc_data['elapsed_time_minutes'] = int(minutes) - proc_data['elapsed_time_seconds'] = int(seconds) - proc_data['elapsed_time_centiseconds'] = int(centiseconds) + proc_data['elapsed_time_minutes'] = jc.utils.convert_to_int(minutes) + proc_data['elapsed_time_seconds'] = jc.utils.convert_to_int(seconds) + proc_data['elapsed_time_centiseconds'] = jc.utils.convert_to_int(centiseconds) proc_data['elapsed_time_total_seconds'] = (proc_data['elapsed_time_hours'] * 3600) + \ (proc_data['elapsed_time_minutes'] * 60) + \ (proc_data['elapsed_time_seconds']) + \ (proc_data['elapsed_time_centiseconds'] / 100) - int_list = ['elapsed_time_hours', 'elapsed_time_minutes', 'elapsed_time_seconds', 'elapsed_time_microseconds', - 'cpu_percent', 'average_shared_text_size', 'average_unshared_data_size', 'average_unshared_stack_size', + # convert ints and floats + int_list = ['cpu_percent', 'average_shared_text_size', 'average_unshared_data_size', 'average_unshared_stack_size', 'average_shared_memory_size', 'maximum_resident_set_size', 'block_input_operations', 'block_output_operations', 'major_pagefaults', 'minor_pagefaults', 'swaps', 'page_reclaims', 'page_faults', 'messages_sent', 'messages_received', 'signals_received', 'voluntary_context_switches', 'involuntary_context_switches', 'average_stack_size', 'average_total_size', 'average_resident_set_size', 'signals_delivered', 'page_size', 'exit_status'] - for key in int_list: - if key in proc_data: - try: - proc_data[key] = int(proc_data[key]) - except (ValueError, TypeError): - proc_data[key] = None - float_list = ['real_time', 'user_time', 'system_time'] - for key in float_list: - if key in proc_data: - try: - proc_data[key] = float(proc_data[key]) - except (ValueError): - proc_data[key] = None + for key in proc_data: + if key in int_list: + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) + if key in float_list: + proc_data[key] = jc.utils.convert_to_float(proc_data[key]) return proc_data diff --git a/jc/parsers/timedatectl.py b/jc/parsers/timedatectl.py index 565119a1..b1f99845 100644 --- a/jc/parsers/timedatectl.py +++ b/jc/parsers/timedatectl.py @@ -63,7 +63,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`timedatectl status` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -89,15 +89,11 @@ def _process(proc_data): Dictionary. Structured data to conform to the schema. """ - # boolean changes bool_list = ['ntp_enabled', 'ntp_synchronized', 'rtc_in_local_tz', 'dst_active', 'system_clock_synchronized', 'systemd-timesyncd.service_active'] for key in proc_data: if key in bool_list: - try: - proc_data[key] = True if proc_data[key] == 'yes' else False - except (ValueError): - proc_data[key] = None + proc_data[key] = jc.utils.convert_to_bool(proc_data[key]) if 'universal_time' in proc_data: ts = jc.utils.timestamp(proc_data['universal_time']) diff --git a/jc/parsers/tracepath.py b/jc/parsers/tracepath.py index 23af12d7..24b226a3 100644 --- a/jc/parsers/tracepath.py +++ b/jc/parsers/tracepath.py @@ -132,7 +132,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`tracepath` and `tracepath6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -157,39 +157,23 @@ def _process(proc_data): Dictionary. Structured data to conform to the schema. """ + # convert ints and floats int_list = ['pmtu', 'forward_hops', 'return_hops', 'ttl', 'asymmetric_difference'] float_list = ['reply_ms'] - - for key, value in proc_data.items(): - for item in int_list: - if key in int_list: - try: - proc_data[key] = int(proc_data[key]) - except (ValueError, TypeError): - proc_data[key] = None - - for item in int_list: - if key in float_list: - try: - proc_data[key] = float(proc_data[key]) - except (ValueError, TypeError): - proc_data[key] = None + for key in proc_data: + if key in int_list: + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) + if key in float_list: + proc_data[key] = jc.utils.convert_to_float(proc_data[key]) if 'hops' in proc_data: for entry in proc_data['hops']: - for key in int_list: - if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError, TypeError): - entry[key] = None + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) - for key in float_list: - if key in entry: - try: - entry[key] = float(entry[key]) - except (ValueError, TypeError): - entry[key] = None + if key in float_list: + entry[key] = jc.utils.convert_to_float(entry[key]) return proc_data diff --git a/jc/parsers/traceroute.py b/jc/parsers/traceroute.py index b64d335c..e7d3e99f 100644 --- a/jc/parsers/traceroute.py +++ b/jc/parsers/traceroute.py @@ -119,7 +119,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.2' + version = '1.3' description = '`traceroute` and `traceroute6` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -335,35 +335,21 @@ def _process(proc_data): if 'hops' in proc_data: for entry in proc_data['hops']: - for key in int_list: - if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError, TypeError): - entry[key] = None + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) - for key in float_list: - if key in entry: - try: - entry[key] = float(entry[key]) - except (ValueError, TypeError): - entry[key] = None + if key in float_list: + entry[key] = jc.utils.convert_to_float(entry[key]) if 'probes' in entry: for item in entry['probes']: - for key in int_list: - if key in item: - try: - item[key] = int(item[key]) - except (ValueError, TypeError): - item[key] = None + for key in item: + if key in int_list: + item[key] = jc.utils.convert_to_int(item[key]) - for key in float_list: - if key in item: - try: - item[key] = float(item[key]) - except (ValueError, TypeError): - item[key] = None + if key in float_list: + item[key] = jc.utils.convert_to_float(item[key]) return proc_data diff --git a/jc/parsers/upower.py b/jc/parsers/upower.py index d7871b24..ebc92efc 100644 --- a/jc/parsers/upower.py +++ b/jc/parsers/upower.py @@ -194,7 +194,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`upower` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -225,7 +225,7 @@ def _process(proc_data): if 'updated' in entry: updated_list = entry['updated'].replace('(', '').replace(')', '').split() entry['updated'] = ' '.join(updated_list[:-3]) - entry['updated_seconds_ago'] = int(updated_list[-3]) + entry['updated_seconds_ago'] = jc.utils.convert_to_int(updated_list[-3]) if entry['updated']: ts = jc.utils.timestamp(entry['updated']) @@ -236,20 +236,14 @@ def _process(proc_data): bool_list = ['power_supply', 'has_history', 'has_statistics', 'on_battery', 'lid_is_closed', 'lid_is_present'] for key in entry: if key in bool_list: - if entry[key].lower() == 'yes': - entry[key] = True - else: - entry[key] = False + entry[key] = jc.utils.convert_to_bool(entry[key]) # detail level boolean conversions bool_list = ['online', 'present', 'rechargeable'] if 'detail' in entry: for key in entry['detail']: if key in bool_list: - if entry['detail'][key].lower() == 'yes': - entry['detail'][key] = True - else: - entry['detail'][key] = False + entry['detail'][key] = jc.utils.convert_to_bool(entry['detail'][key]) # detail level convert warning to null if value is none if 'detail' in entry: @@ -262,8 +256,8 @@ def _process(proc_data): add_items = [] for key, value in entry['detail'].items(): if value and isinstance(value, str): - if len(value.split()) == 2 and value.split()[0].replace('.', '').isnumeric(): - entry['detail'][key] = float(value.split()[0]) + if len(value.split()) == 2: + entry['detail'][key] = jc.utils.convert_to_float(value.split()[0]) add_items.append({ key + '_unit': value.split()[1] }) @@ -278,7 +272,7 @@ def _process(proc_data): for key, value in entry['detail'].items(): if value and isinstance(value, str): if value[-1] == '%': - entry['detail'][key] = float(value[:-1]) + entry['detail'][key] = jc.utils.convert_to_float(value) # detail level fix quoted values if 'detail' in entry: @@ -302,9 +296,9 @@ def _process(proc_data): new_history_obj = {} for key, value in history_obj.items(): if key == 'time': - new_history_obj[key] = int(value) + new_history_obj[key] = jc.utils.convert_to_int(value) elif key == 'percent_charged': - new_history_obj[key] = float(value) + new_history_obj[key] = jc.utils.convert_to_float(value) else: new_history_obj[key] = value diff --git a/jc/parsers/uptime.py b/jc/parsers/uptime.py index 5597f341..cccf78d0 100644 --- a/jc/parsers/uptime.py +++ b/jc/parsers/uptime.py @@ -65,7 +65,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.4' + version = '1.5' description = '`uptime` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -92,10 +92,10 @@ def _process(proc_data): """ if 'time' in proc_data: time_list = proc_data['time'].split(':') - proc_data['time_hour'] = int(time_list[0]) - proc_data['time_minute'] = int(time_list[1]) + proc_data['time_hour'] = jc.utils.convert_to_int(time_list[0]) + proc_data['time_minute'] = jc.utils.convert_to_int(time_list[1]) if len(time_list) == 3: - proc_data['time_second'] = int(time_list[2]) + proc_data['time_second'] = jc.utils.convert_to_int(time_list[2]) else: proc_data['time_second'] = None @@ -113,14 +113,14 @@ def _process(proc_data): uptime_total_seconds = 0 if 'min' in proc_data['uptime']: - uptime_minutes = int(proc_data['uptime'].split()[-2]) + uptime_minutes = jc.utils.convert_to_int(proc_data['uptime'].split()[-2]) if ':' in proc_data['uptime']: - uptime_hours = int(proc_data['uptime'].split()[-1].split(':')[-2]) - uptime_minutes = int(proc_data['uptime'].split(':')[-1]) + uptime_hours = jc.utils.convert_to_int(proc_data['uptime'].split()[-1].split(':')[-2]) + uptime_minutes = jc.utils.convert_to_int(proc_data['uptime'].split(':')[-1]) if 'day' in proc_data['uptime']: - uptime_days = int(proc_data['uptime'].split()[0]) + uptime_days = jc.utils.convert_to_int(proc_data['uptime'].split()[0]) proc_data['uptime_days'] = uptime_days proc_data['uptime_hours'] = uptime_hours @@ -129,25 +129,14 @@ def _process(proc_data): uptime_total_seconds = (uptime_days * 86400) + (uptime_hours * 3600) + (uptime_minutes * 60) proc_data['uptime_total_seconds'] = uptime_total_seconds - # integer conversions + # integer and float conversions int_list = ['users'] - for key in int_list: - if key in proc_data: - try: - key_int = int(proc_data[key]) - proc_data[key] = key_int - except (ValueError): - proc_data[key] = None - - # float conversions float_list = ['load_1m', 'load_5m', 'load_15m'] - for key in float_list: - if key in proc_data: - try: - key_float = float(proc_data[key]) - proc_data[key] = key_float - except (ValueError): - proc_data[key] = None + for key in proc_data: + if key in int_list: + proc_data[key] = jc.utils.convert_to_int(proc_data[key]) + if key in float_list: + proc_data[key] = jc.utils.convert_to_float(proc_data[key]) return proc_data diff --git a/jc/parsers/w.py b/jc/parsers/w.py index d9719c66..65682166 100644 --- a/jc/parsers/w.py +++ b/jc/parsers/w.py @@ -131,8 +131,8 @@ def _process(proc_data): """ for entry in proc_data: null_list = ['user', 'tty', 'from', 'login_at', 'idle', 'what'] - for key in null_list: - if key in entry: + for key in entry: + if key in null_list: if entry[key] == '-': entry[key] = None diff --git a/jc/parsers/wc.py b/jc/parsers/wc.py index 2dfa0859..6a3c4f4d 100644 --- a/jc/parsers/wc.py +++ b/jc/parsers/wc.py @@ -54,7 +54,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.1' + version = '1.2' description = '`wc` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -82,12 +82,10 @@ def _process(proc_data): for entry in proc_data: int_list = ['lines', 'words', 'characters'] - for key in int_list: - if key in entry: - try: - entry[key] = int(entry[key]) - except (ValueError): - entry[key] = None + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) + return proc_data diff --git a/jc/parsers/who.py b/jc/parsers/who.py index 336d12cc..bf55caf5 100644 --- a/jc/parsers/who.py +++ b/jc/parsers/who.py @@ -133,7 +133,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.3' + version = '1.4' description = '`who` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' @@ -161,13 +161,9 @@ def _process(proc_data): """ for entry in proc_data: int_list = ['pid'] - for key in int_list: - if key in entry: - try: - key_int = int(entry[key]) - entry[key] = key_int - except (ValueError): - entry[key] = None + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) if 'time' in entry: ts = jc.utils.timestamp(entry['time']) diff --git a/jc/utils.py b/jc/utils.py index 278b2664..211675ff 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -89,21 +89,26 @@ def convert_to_int(value): Parameters: - value: (string) Input value + value: (string/integer/float) Input value Returns: integer/None Integer if successful conversion, otherwise None """ - try: - value = int(re.sub(r'[^0-9\-\.]', '', value)) - except (ValueError, TypeError): + if isinstance(value, str): try: - value = round(convert_to_float(value)) - except (ValueError, TypeError): - return None + return int(re.sub(r'[^0-9\-\.]', '', value)) + except ValueError: + try: + return round(convert_to_float(value)) + except (ValueError, TypeError): + return None - return value + elif isinstance(value, (int, float)): + return int(value) + + else: + return None def convert_to_float(value): @@ -118,12 +123,17 @@ def convert_to_float(value): float/None Float if successful conversion, otherwise None """ - try: - value = float(re.sub(r'[^0-9\-\.]', '', value)) - except (ValueError, TypeError): - return None + if isinstance(value, str): + try: + return float(re.sub(r'[^0-9\-\.]', '', value)) + except (ValueError, TypeError): + return None - return value + elif isinstance(value, (int, float)): + return float(value) + + else: + return None def convert_to_bool(value): From e4324f05fb6f89c34fa1567e70d8636457623edb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 18 Apr 2021 16:42:34 -0700 Subject: [PATCH 33/36] fix indentation in doc --- docs/parsers/dig.md | 14 +++++++------- jc/parsers/dig.py | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/parsers/dig.md b/docs/parsers/dig.md index a7d4943c..4b0dc801 100644 --- a/docs/parsers/dig.md +++ b/docs/parsers/dig.md @@ -44,14 +44,14 @@ Schema: } ], "opt_pseudosection": { - "edns": { - "version": integer, - "flags": [ + "edns": { + "version": integer, + "flags": [ string - ], - "udp": integer - }, - "cookie": string + ], + "udp": integer + }, + "cookie": string }, "question": { "name": string, diff --git a/jc/parsers/dig.py b/jc/parsers/dig.py index 323998cd..25dde57f 100644 --- a/jc/parsers/dig.py +++ b/jc/parsers/dig.py @@ -41,14 +41,14 @@ Schema: } ], "opt_pseudosection": { - "edns": { - "version": integer, - "flags": [ + "edns": { + "version": integer, + "flags": [ string - ], - "udp": integer - }, - "cookie": string + ], + "udp": integer + }, + "cookie": string }, "question": { "name": string, From 27a196c93862bd737603cfe402b35529eb412954 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 18 Apr 2021 16:42:42 -0700 Subject: [PATCH 34/36] doc update --- CHANGELOG | 2 +- jc/man/jc.1.gz | Bin 2061 -> 2062 bytes man/jc.1.gz | Bin 2061 -> 2062 bytes 3 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 7fbf50c6..04c73e84 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,6 @@ jc changelog -20210416 v1.15.2 +20210419 v1.15.2 - Add systeminfo parser tested on Windows - Update dig parser to fix an issue with IPv6 addresses in the server field - Update dig parser to fix an issue when axfr entries contain a semicolon diff --git a/jc/man/jc.1.gz b/jc/man/jc.1.gz index f36f0a3c057f3d287a735827109c360a6b9e0801..2f4b867b77c1e984342f7f50c6378be19a614da5 100644 GIT binary patch delta 2044 zcmVJ@UqJ*5Tna>TQ`|1@g1f`H zPIlwn_yv*MZLwK2v_#uXBvB=)I6B;qznLLr%SIvv_o4L+^~?*&;gBg`@e?ge`Dv-`H#^DcJgaHo3hc(n5oK^m1UKcnY8tPNf5=?Y&x7=1t57BGQ`Q1 z6o%Q2XuxX4a$eLVZ9xnv+&%5-gA_Op8(rBVZa< zsscShzhLZ1s>-lL<=|QR7t^?EmDf1?v;dV68)jDM0;HcrR-cjd2`$cvUmce4f-MEB z3^=x|QFked6z2ebgFY1Tc92~nS3C)AMH;bLiGG=XMoGyHssR|t$~+gTn#E zc{EjjPGF+$DU$Aq>J-xoB4FtR9laN5LcB{dtPW*cc(#>xgF&U6{X5cNo=|oae}3Ic z3b8{5km#ODx^lo(4@|BdPOkfa+5>eDFqf%FRO%gVxE`VMaUEt(0!S8SJ$SdyY1IuA z1+D2l{B{Fz#R-W-AGBBt?ZHU)z_sw2f#`vMnkM!J!X^V^?_UpwwN_QRhZEZcHyfU+ zZA-unbck%Y*$^IyZr>5%kDMou;Oz81Pk+P{cm@X%FhqeL(Yqr}iG*~z@^QK2ddy2> zm9CwLqk9CDv1Y#(#CEKN&pdr;N3L3~H%yO6K{<{=)CgM+qAG)O<)Y2J4q8s{1C+s&-4?gp(60c7pf$9URmB*@{WSXn0aC0Q88(atr2i(Cu-6LSj?+y(F3wy3he0Xfr zeS|x{Bg9KcW&}sV?+=nc_1KYRm`T5XwZJfB`bEsfry>+Vrbom@LD>@pkOKV$NmLKG z%){^QK?EcNx*LC-KYP=saZZ~ar*~1%9|EQ}iFMbcBYWXiAELN(e1=(&fD{~h~gUaZ^QWgUo>6gKOmszvo zEuP`#Rz0p-&7mmb)?K`%g;ZR??d9z|8b{TdL(Lf(Tf)z-g^9N7oo zt+6A!;qK)1?(-n1od^HughBU z9A)_u_5(}AQz~*@?fR|_qg0-Mie&|lV@jBe_HoIRM|Mg8L{Q-krRY)_u?HL|qTt$y ztaM@F|%XR3%m36x#=C=&6^hLM0oh+MCWm8$oYVD4wmw8d?_i1q@wi z-zzCB&I-yRsO=5ga$Ug9W7LLACIEO z&H6?@|LY9-tnuWlPa8 zwLq^LZV3)Ibk5fpCJmd^lc)tNe^jh^mC+R({EU68XP%dtIK!rm5w_|0c$id`mA5MlMz}mGG=Nqh(gDWnoy( zYw9?Gb?T@wj(l=pC5LHTsze`gr78(CD( z1GsLVDNug6o=vU>5eecONQ=RdjR1slp3LGF{zfh}*YyAlWioNSyV$isUK0OZ7Vx$* zPQlG=G`tzk=a<99@b2y*Y5uiDXuWP;S{3Y>!QES=TtkYl?FJ0Po4?9jsbV7b$%y8} zKj1r=lnz!(MJ2{YwRBq$?Hndg zNeB-$Y$R+l?j&RcdF(SGsB5WR1ChW`Xc~AELF%!vf8di^F`kth4v9c$nYjKeEQ7YL z4aHdoc^RBwZ690=DafK)ru&HZAHiYQmc*pTTl;tzI6if`e({&fe_z-~4hwv_`y5l+ z^|C%Ye;H2ZH&<~GHyaiEJ~c+*51@O^w%cvAR%#7d7ZRvzbhkQKYUu(Q%rt7ytlVmgE=! delta 2043 zcmVJ@UqJ*5TmnRPQ`{D~;O=m) zlihkRenI4RTWl5$Em1ZTNmNNHjt=+ZZ)Ql@vXMx^eP}&HJ@Z0xIOI$Q%TMefW*6-J zyZ0C2yT67PAK1m<;^)D8cJf;^pRw`HgsIAwm1UKcnY8tPNic{$vDs*P9f0Ir$Pgz} zDGak4(STLTa$eLVZ5U=CkO}AW#~Vt!2ziU0D8n8KC9ecjl!7(s^|qjc+IP2~q!-b1Vgmf*UC`E4enZ zSTk8L6Kh$2S~EZ=c^nI%St(1Az(-V@YL&CQ^kcNVn#}If1!;9A!2-F$v?#SO0;XZ5 zD$o=33&x(Lstk)&4xS}{F^#KMd5!bWOHesrqs$6jfb^5d>T{Alp~X4ztHWYmu$5qy z0moJ~>Mli*;2gkj(1#-44zerciYKA1NCs?PqF<(eQBrb)Y5)eZGS5XKxdp@U4c15; z=#qx5!K-4xPG`!B%iRZ_Np4_OIS3TWGE{USp3QGL$~yUS~+7#bVDEMg#BC8!!JCm#OssDxN-Lh58n zJpADvL_jj2yYa{Qvp0Pj=d|f@dKU%#Az*3~TX#)5vKMYe-jZE`;ZTmYHtbIc zEe+-+4MxR}!oFQemA<5^|)#^hoXpEcj@jpe;9ZChc{^1pM*Wz)1q1wc1D|u+$*scE{sXP&Xs|p^+lrS0X(Xn!L<=t z>BKe+?+WzyyWeio;U8^@imSXSwhz?MQ!iJAiZ@WTH=Thtg5IW3JX?!3v@Glk7`o7Y zR8m-+6_iC#+Z(p!x`3O57nr~Taf!g2c83Hpm*cHIzt#fkP70B0rvoDj|`D}VU zTL#}$Mb)_}MJ&^r#TC34@wu8QZP=6KRFs3x-^Sm^^PBl?go^?tgoLUN7lS=4ijQr#8kD|uS z`c6Lo^BnoD(#ei5s(b}A8``kWf@g!^_l?k^nJ?Gk5~r}rAW*>lb7Ztg8gdO~OVKd3 zK(88Z1r9fK&es?w4I9^!sRb*4M5MgR=n4*g!M@cq&&y1lW7Eb6+jM+9%&*&JKnHoh zC+Ns|YkKG2k8_#`w&2=3=#`zn@=J+>0(bm5TF$4wr56Qb7ps|ydDfiKGOO0IFf8Xa zb)3LDb<`Ng**(O=hu9&FJKR|ULh!l9V04;JMrFz1rs53Bd$_Kkd^+)eGYr{{EUM=r zT({2@C_jCgPp^jq62v!<7Q-VO0SM(ho<}YGja+H2>meA*WbAr(k!ypzB>uZB;B94` zf}8nxbTe8ku13qz-Q7dn{A-EOdfmLVD%dlFySGTVh7@1h4H$+uf0emX#SGYIBbpQc zfbV2dI!u)slo+>-LXIteNO(HH`dUFZsgc0cZo%DRdkMM({6QwIt@St6%5A}5=P-Fn zLU^cQBVm(qCm|!qW1k5@T}$m6hy;d0)4-buQjdlG1D{mNcvfyWBm$vj?E15?4BEOj z6lWRaWpIMEeQ+_PAd705>?7WP1czN)5|bWp?c-tK_|)b4#b2*~eq|pyEb!Itb3|#^ z%lhp6bu?YvTt`9FY*gg?)EI$3f$lZiZnuNAQftV%kU(9dyVb#ByBmi>VM^WZLoHqa zK`&@@a=*NC^&RQhG!~ow8C~=+lhNnpr}-_E!x?PCN6r5uGj{rj+=D7s#Q$rZbD5#Z zvmn@5Tbj$^a1EP2Qmt@sc!-9R;S<4p@$Gi<>!)QfR%K0jhMmS|?ESlozlHe62i7(U Zu?3}mVPLn|bh2cg`yY6)%u=ox002sa_Uixu diff --git a/man/jc.1.gz b/man/jc.1.gz index f36f0a3c057f3d287a735827109c360a6b9e0801..2f4b867b77c1e984342f7f50c6378be19a614da5 100644 GIT binary patch delta 2044 zcmVJ@UqJ*5Tna>TQ`|1@g1f`H zPIlwn_yv*MZLwK2v_#uXBvB=)I6B;qznLLr%SIvv_o4L+^~?*&;gBg`@e?ge`Dv-`H#^DcJgaHo3hc(n5oK^m1UKcnY8tPNf5=?Y&x7=1t57BGQ`Q1 z6o%Q2XuxX4a$eLVZ9xnv+&%5-gA_Op8(rBVZa< zsscShzhLZ1s>-lL<=|QR7t^?EmDf1?v;dV68)jDM0;HcrR-cjd2`$cvUmce4f-MEB z3^=x|QFked6z2ebgFY1Tc92~nS3C)AMH;bLiGG=XMoGyHssR|t$~+gTn#E zc{EjjPGF+$DU$Aq>J-xoB4FtR9laN5LcB{dtPW*cc(#>xgF&U6{X5cNo=|oae}3Ic z3b8{5km#ODx^lo(4@|BdPOkfa+5>eDFqf%FRO%gVxE`VMaUEt(0!S8SJ$SdyY1IuA z1+D2l{B{Fz#R-W-AGBBt?ZHU)z_sw2f#`vMnkM!J!X^V^?_UpwwN_QRhZEZcHyfU+ zZA-unbck%Y*$^IyZr>5%kDMou;Oz81Pk+P{cm@X%FhqeL(Yqr}iG*~z@^QK2ddy2> zm9CwLqk9CDv1Y#(#CEKN&pdr;N3L3~H%yO6K{<{=)CgM+qAG)O<)Y2J4q8s{1C+s&-4?gp(60c7pf$9URmB*@{WSXn0aC0Q88(atr2i(Cu-6LSj?+y(F3wy3he0Xfr zeS|x{Bg9KcW&}sV?+=nc_1KYRm`T5XwZJfB`bEsfry>+Vrbom@LD>@pkOKV$NmLKG z%){^QK?EcNx*LC-KYP=saZZ~ar*~1%9|EQ}iFMbcBYWXiAELN(e1=(&fD{~h~gUaZ^QWgUo>6gKOmszvo zEuP`#Rz0p-&7mmb)?K`%g;ZR??d9z|8b{TdL(Lf(Tf)z-g^9N7oo zt+6A!;qK)1?(-n1od^HughBU z9A)_u_5(}AQz~*@?fR|_qg0-Mie&|lV@jBe_HoIRM|Mg8L{Q-krRY)_u?HL|qTt$y ztaM@F|%XR3%m36x#=C=&6^hLM0oh+MCWm8$oYVD4wmw8d?_i1q@wi z-zzCB&I-yRsO=5ga$Ug9W7LLACIEO z&H6?@|LY9-tnuWlPa8 zwLq^LZV3)Ibk5fpCJmd^lc)tNe^jh^mC+R({EU68XP%dtIK!rm5w_|0c$id`mA5MlMz}mGG=Nqh(gDWnoy( zYw9?Gb?T@wj(l=pC5LHTsze`gr78(CD( z1GsLVDNug6o=vU>5eecONQ=RdjR1slp3LGF{zfh}*YyAlWioNSyV$isUK0OZ7Vx$* zPQlG=G`tzk=a<99@b2y*Y5uiDXuWP;S{3Y>!QES=TtkYl?FJ0Po4?9jsbV7b$%y8} zKj1r=lnz!(MJ2{YwRBq$?Hndg zNeB-$Y$R+l?j&RcdF(SGsB5WR1ChW`Xc~AELF%!vf8di^F`kth4v9c$nYjKeEQ7YL z4aHdoc^RBwZ690=DafK)ru&HZAHiYQmc*pTTl;tzI6if`e({&fe_z-~4hwv_`y5l+ z^|C%Ye;H2ZH&<~GHyaiEJ~c+*51@O^w%cvAR%#7d7ZRvzbhkQKYUu(Q%rt7ytlVmgE=! delta 2043 zcmVJ@UqJ*5TmnRPQ`{D~;O=m) zlihkRenI4RTWl5$Em1ZTNmNNHjt=+ZZ)Ql@vXMx^eP}&HJ@Z0xIOI$Q%TMefW*6-J zyZ0C2yT67PAK1m<;^)D8cJf;^pRw`HgsIAwm1UKcnY8tPNic{$vDs*P9f0Ir$Pgz} zDGak4(STLTa$eLVZ5U=CkO}AW#~Vt!2ziU0D8n8KC9ecjl!7(s^|qjc+IP2~q!-b1Vgmf*UC`E4enZ zSTk8L6Kh$2S~EZ=c^nI%St(1Az(-V@YL&CQ^kcNVn#}If1!;9A!2-F$v?#SO0;XZ5 zD$o=33&x(Lstk)&4xS}{F^#KMd5!bWOHesrqs$6jfb^5d>T{Alp~X4ztHWYmu$5qy z0moJ~>Mli*;2gkj(1#-44zerciYKA1NCs?PqF<(eQBrb)Y5)eZGS5XKxdp@U4c15; z=#qx5!K-4xPG`!B%iRZ_Np4_OIS3TWGE{USp3QGL$~yUS~+7#bVDEMg#BC8!!JCm#OssDxN-Lh58n zJpADvL_jj2yYa{Qvp0Pj=d|f@dKU%#Az*3~TX#)5vKMYe-jZE`;ZTmYHtbIc zEe+-+4MxR}!oFQemA<5^|)#^hoXpEcj@jpe;9ZChc{^1pM*Wz)1q1wc1D|u+$*scE{sXP&Xs|p^+lrS0X(Xn!L<=t z>BKe+?+WzyyWeio;U8^@imSXSwhz?MQ!iJAiZ@WTH=Thtg5IW3JX?!3v@Glk7`o7Y zR8m-+6_iC#+Z(p!x`3O57nr~Taf!g2c83Hpm*cHIzt#fkP70B0rvoDj|`D}VU zTL#}$Mb)_}MJ&^r#TC34@wu8QZP=6KRFs3x-^Sm^^PBl?go^?tgoLUN7lS=4ijQr#8kD|uS z`c6Lo^BnoD(#ei5s(b}A8``kWf@g!^_l?k^nJ?Gk5~r}rAW*>lb7Ztg8gdO~OVKd3 zK(88Z1r9fK&es?w4I9^!sRb*4M5MgR=n4*g!M@cq&&y1lW7Eb6+jM+9%&*&JKnHoh zC+Ns|YkKG2k8_#`w&2=3=#`zn@=J+>0(bm5TF$4wr56Qb7ps|ydDfiKGOO0IFf8Xa zb)3LDb<`Ng**(O=hu9&FJKR|ULh!l9V04;JMrFz1rs53Bd$_Kkd^+)eGYr{{EUM=r zT({2@C_jCgPp^jq62v!<7Q-VO0SM(ho<}YGja+H2>meA*WbAr(k!ypzB>uZB;B94` zf}8nxbTe8ku13qz-Q7dn{A-EOdfmLVD%dlFySGTVh7@1h4H$+uf0emX#SGYIBbpQc zfbV2dI!u)slo+>-LXIteNO(HH`dUFZsgc0cZo%DRdkMM({6QwIt@St6%5A}5=P-Fn zLU^cQBVm(qCm|!qW1k5@T}$m6hy;d0)4-buQjdlG1D{mNcvfyWBm$vj?E15?4BEOj z6lWRaWpIMEeQ+_PAd705>?7WP1czN)5|bWp?c-tK_|)b4#b2*~eq|pyEb!Itb3|#^ z%lhp6bu?YvTt`9FY*gg?)EI$3f$lZiZnuNAQftV%kU(9dyVb#ByBmi>VM^WZLoHqa zK`&@@a=*NC^&RQhG!~ow8C~=+lhNnpr}-_E!x?PCN6r5uGj{rj+=D7s#Q$rZbD5#Z zvmn@5Tbj$^a1EP2Qmt@sc!-9R;S<4p@$Gi<>!)QfR%K0jhMmS|?ESlozlHe62i7(U Zu?3}mVPLn|bh2cg`yY6)%u=ox002sa_Uixu From 7eddf41c5f6310264359cd6d78bdfa4b65af7d06 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sun, 18 Apr 2021 17:21:08 -0700 Subject: [PATCH 35/36] dont round up int conversions and fix tests --- jc/man/jc.1.gz | Bin 2062 -> 2062 bytes jc/utils.py | 2 +- man/jc.1.gz | Bin 2062 -> 2062 bytes tests/fixtures/centos-7.7/df-h.json | 2 +- tests/fixtures/centos-7.7/df.json | 2 +- tests/fixtures/centos-7.7/free-h.json | 2 +- tests/fixtures/osx-10.14.6/df-h.json | 2 +- tests/fixtures/osx-10.14.6/ls-alh.json | 2 +- tests/fixtures/ubuntu-18.04/df-h.json | 2 +- tests/fixtures/ubuntu-18.04/free-h.json | 2 +- tests/test_utils.py | 89 +++++++++++++++++++++++- 11 files changed, 96 insertions(+), 9 deletions(-) diff --git a/jc/man/jc.1.gz b/jc/man/jc.1.gz index 2f4b867b77c1e984342f7f50c6378be19a614da5..d860a611e53e602cfe3e64ecfcb42ecaff3b921e 100644 GIT binary patch delta 15 WcmeAZ=o4U*@8;mxab_bM2L}KnL Date: Sun, 18 Apr 2021 17:24:42 -0700 Subject: [PATCH 36/36] update changelog --- CHANGELOG | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 04c73e84..f5368223 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,13 +1,13 @@ jc changelog -20210419 v1.15.2 +20210418 v1.15.2 - Add systeminfo parser tested on Windows - Update dig parser to fix an issue with IPv6 addresses in the server field - Update dig parser to fix an issue when axfr entries contain a semicolon - Update dig parser to add support for Additional Section and Opt Pseudosection - Update dig parser to add query_size field - Use dig parser as the main example in readme, documentation, and man page -- Standardize int, float, and boolean conversion rules +- Standardize int, float, and boolean conversion rules with functions in jc.utils 20210413 v1.15.1 - New feature to show parser documentation interactively with -h --parser_name