From 3c96464217a740571e16c74ad41c1d92f7585547 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 12 Dec 2019 15:59:24 -0800 Subject: [PATCH] osx fixes and tests --- jc/parsers/ps.py | 31 +- tests/fixtures/osx-10.14.6/ps-axu.json | 1 + tests/fixtures/osx-10.14.6/ps-axu.out | 421 +++++++++++++++++++++++++ tests/fixtures/osx-10.14.6/ps-ef.json | 1 + tests/fixtures/osx-10.14.6/ps-ef.out | 421 +++++++++++++++++++++++++ tests/test_ps.py | 24 ++ 6 files changed, 886 insertions(+), 13 deletions(-) create mode 100644 tests/fixtures/osx-10.14.6/ps-axu.json create mode 100644 tests/fixtures/osx-10.14.6/ps-axu.out create mode 100644 tests/fixtures/osx-10.14.6/ps-ef.json create mode 100644 tests/fixtures/osx-10.14.6/ps-ef.out diff --git a/jc/parsers/ps.py b/jc/parsers/ps.py index 5a814910..82f31326 100644 --- a/jc/parsers/ps.py +++ b/jc/parsers/ps.py @@ -173,6 +173,7 @@ Examples: ] """ import jc.utils +import jc.parsers.universal def process(proc_data): @@ -194,7 +195,8 @@ def process(proc_data): "ppid": integer, "c": integer, "stime": string, - "tty": string, # ? = Null + "tty": string, # ? or ?? = Null + "tt": string, # ?? = Null "time": string, "cmd": string, "user": string, @@ -209,6 +211,14 @@ def process(proc_data): ] """ for entry in proc_data: + # change key name '%cpu' to 'cpu_percent' + if '%cpu' in entry: + entry['cpu_percent'] = entry.pop('%cpu') + + # change key name '%mem' to 'mem_percent' + if '%mem' in entry: + entry['mem_percent'] = entry.pop('%mem') + # change to int int_list = ['pid', 'ppid', 'c', 'vsz', 'rss'] for key in int_list: @@ -230,9 +240,13 @@ def process(proc_data): entry[key] = None if 'tty' in entry: - if entry['tty'] == '?': + if entry['tty'] == '?' or entry['tty'] == '??': entry['tty'] = None + if 'tt' in entry: + if entry['tt'] == '??': + entry['tt'] = None + return proc_data @@ -257,19 +271,10 @@ def parse(data, raw=False, quiet=False): if not quiet: jc.utils.compatibility(__name__, compatible) - # code adapted from Conor Heine at: - # https://gist.github.com/cahna/43a1a3ff4d075bcd71f9d7120037a501 - cleandata = data.splitlines() - headers = [h for h in ' '.join(cleandata[0].lower().strip().split()).split() if h] + cleandata[0] = cleandata[0].lower() - # clean up '%cpu' and '%mem' headers - # even though % in a key is valid json, it can make things difficult - headers = ['cpu_percent' if x == '%cpu' else x for x in headers] - headers = ['mem_percent' if x == '%mem' else x for x in headers] - - raw_data = map(lambda s: s.strip().split(None, len(headers) - 1), cleandata[1:]) - raw_output = [dict(zip(headers, r)) for r in raw_data] + raw_output = jc.parsers.universal.simple_table_parse(cleandata) if raw: return raw_output diff --git a/tests/fixtures/osx-10.14.6/ps-axu.json b/tests/fixtures/osx-10.14.6/ps-axu.json new file mode 100644 index 00000000..ab07f2c9 --- /dev/null +++ b/tests/fixtures/osx-10.14.6/ps-axu.json @@ -0,0 +1 @@ +[{"user": "kbrazil", "pid": 1046, "vsz": 6595412, "rss": 498788, "tt": null, "stat": "S", "started": "12:10PM", "time": "7:53.61", "command": "com.docker.hyperkit -A -u -F vms/0/hyperkit.pid -c 4 -m 2048M -s 0:0,hostbridge -s 31,lpc -s 1:0,virtio-vpnkit,path=vpnkit.eth.sock,uuid=0bed4206-a5b8-40bf-b1fa-02cb5d5a7f54 -U 573cd650-b0d4-41ed-a405-9cffcdcd24cb -s 2:0,ahci-hd,/Users/kbrazil/Library/Containers/com.docker.docker/Data/vms/0/Docker.raw -s 3,virtio-sock,guest_cid=3,path=vms/0,guest_forwards=2376;1525 -s 4,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker-desktop.iso -s 5,ahci-cd,vms/0/config.iso -s 6,ahci-cd,/Applications/Docker.app/Contents/Resources/linuxkit/docker.iso -s 7,virtio-rnd -l com1,autopty=vms/0/tty,asl -f bootrom,/Applications/Docker.app/Contents/Resources/uefi/UEFI.fd,,", "cpu_percent": 3.7, "mem_percent": 3.0}, {"user": "kbrazil", "pid": 556, "vsz": 5046052, "rss": 109592, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:37.91", "command": "/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_102425", "cpu_percent": 3.5, "mem_percent": 0.7}, {"user": "_hidd", "pid": 112, "vsz": 4382500, "rss": 9940, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "2:47.17", "command": "/usr/libexec/hidd", "cpu_percent": 1.7, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 633, "vsz": 4421912, "rss": 61740, "tt": null, "stat": "S", "started": "12:10PM", "time": "1:48.29", "command": "/Applications/Sublime Text.app/Contents/MacOS/plugin_host 560 --auto-shell-env", "cpu_percent": 1.1, "mem_percent": 0.4}, {"user": "root", "pid": 86, "vsz": 4486620, "rss": 72908, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:24.14", "command": "/Library/enSilo/enSiloCollector", "cpu_percent": 0.9, "mem_percent": 0.4}, {"user": "root", "pid": 58, "vsz": 4383244, "rss": 14084, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:23.52", "command": "/Library/Application Support/JAMF/Jamf.app/Contents/MacOS/JamfDaemon.app/Contents/MacOS/JamfDaemon", "cpu_percent": 0.7, "mem_percent": 0.1}, {"user": "_windowserver", "pid": 192, "vsz": 7877628, "rss": 101144, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "10:51.11", "command": "/System/Library/PrivateFrameworks/SkyLight.framework/Resources/WindowServer -daemon", "cpu_percent": 0.6, "mem_percent": 0.6}, {"user": "root", "pid": 15535, "vsz": 4368408, "rss": 23672, "tt": null, "stat": "Ss", "started": "12:48PM", "time": "2:17.82", "command": "/Library/Tanium/TaniumClient/Tools/Trace/TaniumRecorder", "cpu_percent": 0.5, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8297, "vsz": 6938128, "rss": 754604, "tt": null, "stat": "S", "started": "12:23PM", "time": "2:37.81", "command": "/Applications/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook", "cpu_percent": 0.4, "mem_percent": 4.5}, {"user": "kbrazil", "pid": 609, "vsz": 4325216, "rss": 1556, "tt": "s000", "stat": "S", "started": "12:10PM", "time": "0:00.14", "command": "-bash", "cpu_percent": 0.3, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1339, "vsz": 4880900, "rss": 80832, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:08.51", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=2927646513826902537 --renderer-client-id=7 --no-v8-untrusted-code-mitigations --seatbelt-client=97", "cpu_percent": 0.2, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 560, "vsz": 5376996, "rss": 180740, "tt": null, "stat": "S", "started": "12:10PM", "time": "2:56.43", "command": "/Applications/Sublime Text.app/Contents/MacOS/Sublime Text -psn_0_110619", "cpu_percent": 0.2, "mem_percent": 1.1}, {"user": "kbrazil", "pid": 842, "vsz": 6853924, "rss": 342028, "tt": null, "stat": "S", "started": "12:10PM", "time": "1:44.26", "command": "/Applications/Microsoft Teams.app/Contents/Frameworks/Microsoft Teams Helper.app/Contents/MacOS/Microsoft Teams Helper --type=renderer --autoplay-policy=no-user-gesture-required --service-pipe-token=2C8ABD0CD7E364771B7462751E3E4A5E --lang=en-US --app-path=/Applications/Microsoft Teams.app/Contents/Resources/app.asar --node-integration=false --webview-tag=true --no-sandbox --preload=/Applications/Microsoft Teams.app/Contents/Resources/app.asar/lib/renderer/preload.js --background-color=#fff --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-compositor-image-animations --service-request-channel-token=2C8ABD0CD7E364771B7462751E3E4A5E --renderer-client-id=8 --msteams-process-type=mainWindow", "cpu_percent": 0.2, "mem_percent": 2.0}, {"user": "root", "pid": 57, "vsz": 4377044, "rss": 13180, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.25", "command": "/System/Library/CoreServices/powerd.bundle/powerd", "cpu_percent": 0.1, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 571, "vsz": 5929356, "rss": 142152, "tt": null, "stat": "S", "started": "12:10PM", "time": "1:23.47", "command": "/Applications/Microsoft Teams.app/Contents/MacOS/Teams -psn_0_131104", "cpu_percent": 0.1, "mem_percent": 0.8}, {"user": "kbrazil", "pid": 1328, "vsz": 4628932, "rss": 47828, "tt": null, "stat": "S", "started": "12:11PM", "time": "1:09.36", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --service-sandbox-type=network --enable-audio-service-sandbox --service-request-channel-token=8688265969343734167 --seatbelt-client=39", "cpu_percent": 0.1, "mem_percent": 0.3}, {"user": "root", "pid": 216, "vsz": 4362088, "rss": 10252, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.18", "command": "/Library/Tanium/TaniumClient/TaniumClient -m", "cpu_percent": 0.1, "mem_percent": 0.1}, {"user": "root", "pid": 79, "vsz": 4404900, "rss": 18656, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:28.23", "command": "/usr/libexec/opendirectoryd", "cpu_percent": 0.1, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1340, "vsz": 5412264, "rss": 225696, "tt": null, "stat": "S", "started": "12:11PM", "time": "10:59.39", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=11755221728008101780 --renderer-client-id=22 --no-v8-untrusted-code-mitigations --seatbelt-client=97", "cpu_percent": 0.1, "mem_percent": 1.3}, {"user": "root", "pid": 57231, "vsz": 4315924, "rss": 11092, "tt": null, "stat": "Ss", "started": "3:13PM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeinstalld", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 57229, "vsz": 4378256, "rss": 13020, "tt": null, "stat": "S", "started": "3:13PM", "time": "0:00.13", "command": "/System/Library/CoreServices/mapspushd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 54954, "vsz": 4390412, "rss": 14248, "tt": null, "stat": "S", "started": "3:01PM", "time": "0:00.08", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker -c MDSImporterWorker -m com.apple.mdworker.single", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 54454, "vsz": 4425076, "rss": 37128, "tt": null, "stat": "S", "started": "2:58PM", "time": "0:02.19", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_spotlight", "pid": 54453, "vsz": 4442200, "rss": 54860, "tt": null, "stat": "S", "started": "2:58PM", "time": "0:03.34", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 54435, "vsz": 4371660, "rss": 14552, "tt": null, "stat": "S", "started": "2:58PM", "time": "0:00.58", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 51461, "vsz": 4307192, "rss": 5396, "tt": null, "stat": "S", "started": "2:50PM", "time": "0:00.01", "command": "/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/XPCServices/com.apple.accessibility.mediaaccessibilityd.xpc/Contents/MacOS/com.apple.accessibility.mediaaccessibilityd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 51460, "vsz": 4316148, "rss": 9196, "tt": null, "stat": "Ss", "started": "2:50PM", "time": "0:00.01", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 48283, "vsz": 4358676, "rss": 12708, "tt": null, "stat": "S", "started": "2:42PM", "time": "0:00.32", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_spotlight", "pid": 48282, "vsz": 4370660, "rss": 13524, "tt": null, "stat": "S", "started": "2:42PM", "time": "0:00.47", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37224, "vsz": 4371764, "rss": 23364, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:01.93", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37211, "vsz": 4316408, "rss": 28756, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:12.71", "command": "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/Resources/Python.app/Contents/MacOS/Python -B /Users/kbrazil/Library/Application Support/Sublime Text 3/Packages/Anaconda/anaconda_server/jsonserver.py -p git 51762 -e /Users/kbrazil/git 633", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 37114, "vsz": 4363676, "rss": 24892, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:02.90", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37112, "vsz": 4363532, "rss": 24976, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:03.67", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 37111, "vsz": 4371764, "rss": 23808, "tt": null, "stat": "S", "started": "2:00PM", "time": "0:02.17", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker_shared -s mdworker -c MDSImporterWorker -m com.apple.mdworker.shared", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 36910, "vsz": 4408440, "rss": 15596, "tt": null, "stat": "S", "started": "1:59PM", "time": "0:00.42", "command": "/System/Library/CoreServices/CoreServicesUIAgent.app/Contents/MacOS/CoreServicesUIAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 33592, "vsz": 4923136, "rss": 16688, "tt": null, "stat": "S", "started": "1:48PM", "time": "0:00.39", "command": "/System/Library/CoreServices/OSDUIHelper.app/Contents/MacOS/OSDUIHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 33536, "vsz": 4871376, "rss": 12472, "tt": null, "stat": "Ss", "started": "1:48PM", "time": "0:00.11", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 32519, "vsz": 4887320, "rss": 98056, "tt": null, "stat": "S", "started": "1:42PM", "time": "0:35.95", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=4833087251975673221 --renderer-client-id=89 --no-v8-untrusted-code-mitigations --seatbelt-client=105", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kbrazil", "pid": 28662, "vsz": 4350188, "rss": 4528, "tt": null, "stat": "S", "started": "1:30PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/XPCServices/com.apple.tonelibraryd.xpc/Contents/MacOS/com.apple.tonelibraryd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 28349, "vsz": 4376368, "rss": 42396, "tt": null, "stat": "S", "started": "1:28PM", "time": "0:03.20", "command": "/Library/Tanium/TaniumClient/TaniumClient -a", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 24327, "vsz": 106190056, "rss": 23576, "tt": null, "stat": "Ss", "started": "1:25PM", "time": "0:00.54", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 24324, "vsz": 4379072, "rss": 39528, "tt": null, "stat": "S", "started": "1:25PM", "time": "0:41.29", "command": "/Library/Tanium/TaniumClient/TaniumClient -c", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 24307, "vsz": 4468340, "rss": 32696, "tt": null, "stat": "Ss", "started": "1:25PM", "time": "0:00.07", "command": "/System/Library/Frameworks/SafariServices.framework/Versions/A/XPCServices/com.apple.SafariServices.xpc/Contents/MacOS/com.apple.SafariServices", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 24306, "vsz": 4389156, "rss": 20372, "tt": null, "stat": "Ss", "started": "1:25PM", "time": "0:00.47", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 24149, "vsz": 4914400, "rss": 16384, "tt": null, "stat": "S", "started": "1:24PM", "time": "0:00.44", "command": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreautha.bundle/Contents/MacOS/coreautha", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 24002, "vsz": 4343176, "rss": 7892, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.02", "command": "/usr/libexec/USBAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 23999, "vsz": 4368704, "rss": 4992, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.03", "command": "/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent --launchd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 23995, "vsz": 4378708, "rss": 6748, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.14", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 23994, "vsz": 4386588, "rss": 9564, "tt": null, "stat": "S", "started": "1:12PM", "time": "0:00.45", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 17515, "vsz": 4352904, "rss": 9716, "tt": null, "stat": "Ss", "started": "12:50PM", "time": "0:00.04", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_download_service", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 17500, "vsz": 4342764, "rss": 1176, "tt": null, "stat": "S", "started": "12:50PM", "time": "0:00.06", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_softwareupdate", "pid": 17499, "vsz": 4309216, "rss": 1200, "tt": null, "stat": "S", "started": "12:50PM", "time": "0:00.09", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_atsserver", "pid": 17495, "vsz": 4378548, "rss": 7852, "tt": null, "stat": "Ss", "started": "12:50PM", "time": "0:00.14", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 14604, "vsz": 4378208, "rss": 8868, "tt": null, "stat": "S", "started": "12:46PM", "time": "0:00.14", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdwrite", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 9244, "vsz": 5163904, "rss": 301704, "tt": null, "stat": "S", "started": "12:30PM", "time": "2:01.15", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=8858794436591905239 --renderer-client-id=55 --no-v8-untrusted-code-mitigations --seatbelt-client=86", "cpu_percent": 0.0, "mem_percent": 1.8}, {"user": "kbrazil", "pid": 9214, "vsz": 4925960, "rss": 17848, "tt": null, "stat": "S", "started": "12:29PM", "time": "0:00.93", "command": "/System/Library/CoreServices/NowPlayingTouchUI.app/Contents/MacOS/NowPlayingTouchUI", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8325, "vsz": 4324132, "rss": 8156, "tt": null, "stat": "S", "started": "12:24PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/CoreCDP.framework/Versions/A/Resources/cdpd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 8322, "vsz": 4385988, "rss": 15792, "tt": null, "stat": "S", "started": "12:24PM", "time": "0:00.57", "command": "/System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/XPCServices/com.apple.sbd.xpc/Contents/MacOS/com.apple.sbd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8321, "vsz": 4349992, "rss": 26068, "tt": null, "stat": "S", "started": "12:24PM", "time": "0:00.08", "command": "/System/Library/CoreServices/EscrowSecurityAlert.app/Contents/MacOS/EscrowSecurityAlert", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 8314, "vsz": 4383492, "rss": 19548, "tt": null, "stat": "Ss", "started": "12:23PM", "time": "0:00.61", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8311, "vsz": 4384516, "rss": 19548, "tt": null, "stat": "Ss", "started": "12:23PM", "time": "0:00.60", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8310, "vsz": 89351692, "rss": 15404, "tt": null, "stat": "Ss", "started": "12:23PM", "time": "0:00.57", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 8089, "vsz": 4838912, "rss": 44408, "tt": null, "stat": "S", "started": "12:21PM", "time": "0:00.88", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=1389501289005694357 --renderer-client-id=52 --no-v8-untrusted-code-mitigations --seatbelt-client=86", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 7140, "vsz": 5024064, "rss": 110384, "tt": null, "stat": "S", "started": "12:19PM", "time": "0:08.90", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=9092984558249145172 --renderer-client-id=49 --no-v8-untrusted-code-mitigations --seatbelt-client=82", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "_spotlight", "pid": 3836, "vsz": 4378508, "rss": 10824, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:05.81", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 3835, "vsz": 4378524, "rss": 10908, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:00.70", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mdworker -s mdworker-sizing -c MDSSizingWorker -m com.apple.mdworker.sizing", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 3724, "vsz": 4376420, "rss": 5196, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:00.07", "command": "/System/Library/PrivateFrameworks/ContextKit.framework/Versions/A/XPCServices/ContextService.xpc/Contents/MacOS/ContextService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 3468, "vsz": 4496632, "rss": 30660, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:02.79", "command": "/System/Library/CoreServices/SafariSupport.bundle/Contents/MacOS/SafariBookmarksSyncAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 3464, "vsz": 4368200, "rss": 25980, "tt": null, "stat": "S", "started": "12:17PM", "time": "0:00.10", "command": "/System/Library/PrivateFrameworks/PhotoAnalysis.framework/Versions/A/Support/photoanalysisd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 3457, "vsz": 4380232, "rss": 16996, "tt": null, "stat": "S", "started": "12:16PM", "time": "0:00.81", "command": "/System/Library/PrivateFrameworks/AppStoreDaemon.framework/Support/appstoreagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 3021, "vsz": 4411016, "rss": 5496, "tt": null, "stat": "S", "started": "12:15PM", "time": "0:00.22", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/atsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 1431, "vsz": 4354884, "rss": 6456, "tt": null, "stat": "Ss", "started": "12:12PM", "time": "0:00.27", "command": "/usr/libexec/mobileactivationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1361, "vsz": 4992152, "rss": 96620, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:03.32", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=163564885204398202 --renderer-client-id=18 --no-v8-untrusted-code-mitigations --seatbelt-client=152", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kbrazil", "pid": 1360, "vsz": 4822052, "rss": 39128, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.30", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=14592748587185609565 --renderer-client-id=28 --no-v8-untrusted-code-mitigations --seatbelt-client=152", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 1359, "vsz": 4990256, "rss": 96852, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:03.16", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=1853710337875639311 --renderer-client-id=17 --no-v8-untrusted-code-mitigations --seatbelt-client=152", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kbrazil", "pid": 1355, "vsz": 5023736, "rss": 67856, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.91", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=1224005870227148888 --renderer-client-id=16 --no-v8-untrusted-code-mitigations --seatbelt-client=140", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 1354, "vsz": 5030008, "rss": 76272, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:01.05", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=480287905150682803 --renderer-client-id=15 --no-v8-untrusted-code-mitigations --seatbelt-client=81", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 1353, "vsz": 4333556, "rss": 8332, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:00.01", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1351, "vsz": 4388208, "rss": 10216, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.34", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/SpeechSynthesis.framework/Resources/com.apple.speech.speechsynthesisd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1350, "vsz": 5020780, "rss": 51228, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.85", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=2712918331526780356 --renderer-client-id=14 --no-v8-untrusted-code-mitigations --seatbelt-client=120", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 1349, "vsz": 5020388, "rss": 82388, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:03.93", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=17159034106610942123 --renderer-client-id=20 --no-v8-untrusted-code-mitigations --seatbelt-client=120", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 1344, "vsz": 4603408, "rss": 23220, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:05.39", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=utility --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --service-sandbox-type=audio --enable-audio-service-sandbox --message-loop-type-ui --service-request-channel-token=9475569438679355899 --seatbelt-client=119", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1343, "vsz": 4830708, "rss": 42480, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.43", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=10386980195613703949 --renderer-client-id=23 --no-v8-untrusted-code-mitigations --seatbelt-client=112", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 1342, "vsz": 4395552, "rss": 17628, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.25", "command": "/Applications/1Password.app/Contents/Library/LoginItems/2BUA8C4S2C.com.agilebits.onepassword-osx-helper.app/Contents/MacOS/OnePasswordNativeMessageHost chrome-extension://aomjjhallfgjeglblehebfpbcfeobpgk/", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1337, "vsz": 4835856, "rss": 48760, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.62", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --extension-process --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=15622214365442578176 --renderer-client-id=4 --no-v8-untrusted-code-mitigations --seatbelt-client=82", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 1334, "vsz": 4872076, "rss": 72608, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:07.53", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (Renderer).app/Contents/MacOS/Google Chrome Helper (Renderer) --type=renderer --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --lang=en-US --disable-oor-cors --enable-auto-reload --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=1651644936729802306 --renderer-client-id=6 --no-v8-untrusted-code-mitigations --seatbelt-client=87", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 1331, "vsz": 4378708, "rss": 6044, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:00.04", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1329, "vsz": 4341248, "rss": 8328, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:00.02", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/XPCServices/AlertNotificationService.xpc/Contents/MacOS/AlertNotificationService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1327, "vsz": 5082912, "rss": 82420, "tt": null, "stat": "S", "started": "12:11PM", "time": "3:10.95", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/Google Chrome Helper (GPU).app/Contents/MacOS/Google Chrome Helper (GPU) --type=gpu-process --field-trial-handle=1718379636,14433552182578334593,9769045283114204799,131072 --gpu-preferences=KAAAAAAAAAAgAAAAAAAAAAAAYAAAAAAAEAAAAAAAAAAAAAAAAAAAAOgAAAAcAAAA4AAAAAAAAADoAAAAAAAAAPAAAAAAAAAA+AAAAAAAAAAAAQAAAAAAAAgBAAAAAAAAEAEAAAAAAAAYAQAAAAAAACABAAAAAAAAKAEAAAAAAAAwAQAAAAAAADgBAAAAAAAAQAEAAAAAAABIAQAAAAAAAFABAAAAAAAAWAEAAAAAAABgAQAAAAAAAGgBAAAAAAAAcAEAAAAAAAB4AQAAAAAAAIABAAAAAAAAiAEAAAAAAACQAQAAAAAAAJgBAAAAAAAAoAEAAAAAAACoAQAAAAAAALABAAAAAAAAuAEAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAABgAAABAAAAAAAAAAAAAAAAcAAAAQAAAAAAAAAAAAAAAIAAAAEAAAAAAAAAAAAAAACgAAABAAAAAAAAAAAAAAAAsAAAAQAAAAAAAAAAAAAAANAAAAEAAAAAAAAAABAAAAAAAAABAAAAAAAAAAAQAAAAYAAAAQAAAAAAAAAAEAAAAHAAAAEAAAAAAAAAABAAAACAAAABAAAAAAAAAAAQAAAAoAAAAQAAAAAAAAAAEAAAALAAAAEAAAAAAAAAABAAAADQAAABAAAAAAAAAABAAAAAAAAAAQAAAAAAAAAAQAAAAGAAAAEAAAAAAAAAAEAAAABwAAABAAAAAAAAAABAAAAAgAAAAQAAAAAAAAAAQAAAAKAAAAEAAAAAAAAAAEAAAACwAAABAAAAAAAAAABAAAAA0AAAAQAAAAAAAAAAYAAAAAAAAAEAAAAAAAAAAGAAAABgAAABAAAAAAAAAABgAAAAcAAAAQAAAAAAAAAAYAAAAIAAAAEAAAAAAAAAAGAAAACgAAABAAAAAAAAAABgAAAAsAAAAQAAAAAAAAAAYAAAANAAAA --service-request-channel-token=2377945323510246983", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 1324, "vsz": 4326416, "rss": 8812, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.02", "command": "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/79.0.3945.79/Helpers/chrome_crashpad_handler --monitor-self-annotation=ptype=crashpad-handler --database=/Users/kbrazil/Library/Application Support/Google/Chrome/Crashpad --metrics-dir=/Users/kbrazil/Library/Application Support/Google/Chrome --url=https://clients2.google.com/cr/report --annotation=channel= --annotation=plat=OS X --annotation=prod=Chrome_Mac --annotation=ver=79.0.3945.79 --handshake-fd=8", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1321, "vsz": 5179472, "rss": 191236, "tt": null, "stat": "S", "started": "12:11PM", "time": "3:51.66", "command": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome", "cpu_percent": 0.0, "mem_percent": 1.1}, {"user": "kbrazil", "pid": 1302, "vsz": 106614828, "rss": 82516, "tt": null, "stat": "Ss", "started": "12:11PM", "time": "0:02.60", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "_spotlight", "pid": 1205, "vsz": 4350956, "rss": 1456, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.10", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1123, "vsz": 4381656, "rss": 7128, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.32", "command": "/System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/XPCServices/AssetCacheLocatorService.xpc/Contents/MacOS/AssetCacheLocatorService -a", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_spotlight", "pid": 1121, "vsz": 4380928, "rss": 8772, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.89", "command": "/usr/libexec/trustd --agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1103, "vsz": 4342256, "rss": 9368, "tt": null, "stat": "S", "started": "12:11PM", "time": "0:00.03", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1055, "vsz": 4380576, "rss": 12184, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/XPCServices/com.apple.CommerceKit.TransactionService.xpc/Contents/MacOS/com.apple.CommerceKit.TransactionService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1054, "vsz": 4404180, "rss": 20960, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.57", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Resources/LaterAgent.app/Contents/MacOS/LaterAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1051, "vsz": 4377564, "rss": 15308, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storelegacy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 1049, "vsz": 4342452, "rss": 9868, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/suhelperd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 1048, "vsz": 4525656, "rss": 39208, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.83", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 1047, "vsz": 4351004, "rss": 11404, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1045, "vsz": 4880144, "rss": 10584, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.10", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1042, "vsz": 4425016, "rss": 11232, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.64", "command": "com.docker.backend -addr fd:3", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1041, "vsz": 4522468, "rss": 20676, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.02", "command": "com.docker.driver.amd64-linux -addr fd:3 -debug", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1040, "vsz": 4399292, "rss": 21372, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.05", "command": "com.docker.vpnkit --ethernet fd:3 --diagnostics fd:4 --pcap fd:5 --vsock-path vms/0/connect --gateway-forwards /Users/kbrazil/Library/Group Containers/group.com.docker/gateway_forwards.json --host-names host.docker.internal,docker.for.mac.host.internal,docker.for.mac.localhost --listen-backlog 32 --mtu 1500 --allowed-bind-addresses 0.0.0.0 --http /Users/kbrazil/Library/Group Containers/group.com.docker/http_proxy.json --dhcp /Users/kbrazil/Library/Group Containers/group.com.docker/dhcp.json --port-max-idle-time 300 --max-connections 2000 --gateway-ip 192.168.65.1 --host-ip 192.168.65.2 --lowest-ip 192.168.65.3 --highest-ip 192.168.65.254 --log-destination asl --udpv4-forwards 123:127.0.0.1:58011 --gc-compact-interval 1800", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1039, "vsz": 4369156, "rss": 14612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:12.36", "command": "com.docker.osxfs serve --address fd:3 --connect vms/0/connect --control fd:4 --log-destination asl", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1038, "vsz": 5345632, "rss": 71528, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.26", "command": "/Applications/Microsoft Teams.app/Contents/Frameworks/Microsoft Teams Helper.app/Contents/MacOS/Microsoft Teams Helper --type=renderer --autoplay-policy=no-user-gesture-required --service-pipe-token=38B30189DB1EC0B3CF5C163749A0216E --lang=en-US --app-path=/Applications/Microsoft Teams.app/Contents/Resources/app.asar --node-integration=false --webview-tag=false --no-sandbox --preload=/Applications/Microsoft Teams.app/Contents/Resources/app.asar/lib/pluginhost/preload.js --background-color=#fff --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-compositor-image-animations --service-request-channel-token=38B30189DB1EC0B3CF5C163749A0216E --renderer-client-id=10 --msteams-process-type=pluginHost", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 1037, "vsz": 4482108, "rss": 12420, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.91", "command": "/Applications/Docker.app/Contents/MacOS/com.docker.supervisor -watchdog fd:0", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 1036, "vsz": 4350828, "rss": 5028, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/loginitemregisterd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1023, "vsz": 4381528, "rss": 7384, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.19", "command": "/usr/libexec/trustd --agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1022, "vsz": 4350176, "rss": 1204, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.11", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1017, "vsz": 4378884, "rss": 6784, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.12", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 1015, "vsz": 4381456, "rss": 8384, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.25", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 984, "vsz": 4377748, "rss": 15280, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.07", "command": "/usr/libexec/dmd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 973, "vsz": 4351028, "rss": 14048, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/findmydevice-user-agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 943, "vsz": 4914692, "rss": 18144, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.77", "command": "/Applications/FortiClient.app/Contents/Resources/runtime.helper/FortiClientAgent.app/Contents/Resources/runtime.helper/FctMiscAgent.app/Contents/MacOS/FctMiscAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 917, "vsz": 4341056, "rss": 7684, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.05", "command": "/Library/Application Support/Fortinet/FortiClient/bin/epctrl", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 914, "vsz": 4352988, "rss": 30092, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:08.03", "command": "/Library/Application Support/Fortinet/FortiClient/bin/ftgdagent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 910, "vsz": 4352944, "rss": 23268, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.30", "command": "/System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintUITool", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 907, "vsz": 6029632, "rss": 40220, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:04.41", "command": "/Applications/Docker.app/Contents/MacOS/Docker", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 906, "vsz": 4334384, "rss": 5560, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.76", "command": "/Library/Application Support/Fortinet/FortiClient/bin/fctservctl", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 893, "vsz": 4349940, "rss": 9260, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 892, "vsz": 4383248, "rss": 6772, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.22", "command": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 882, "vsz": 4936648, "rss": 34256, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:30.99", "command": "/Applications/FortiClient.app/Contents/Resources/runtime.helper/FortiClientAgent.app/Contents/MacOS/FortiClientAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 879, "vsz": 4351556, "rss": 10716, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -tw", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 877, "vsz": 4351120, "rss": 10972, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 876, "vsz": 4916624, "rss": 18828, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:25.04", "command": "/Applications/StatusClock.app/Contents/MacOS/StatusClock", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 875, "vsz": 4351000, "rss": 10612, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkahp.bundle/Contents/MacOS/ctkahp -d", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 873, "vsz": 4386880, "rss": 19176, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.65", "command": "/usr/libexec/adprivacyd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 872, "vsz": 4404124, "rss": 18876, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.64", "command": "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbagent.app/Contents/MacOS/nbagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 869, "vsz": 4378304, "rss": 19000, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.23", "command": "/System/Library/CoreServices/cloudpaird", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 868, "vsz": 4908268, "rss": 16476, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.61", "command": "/System/Library/CoreServices/AirPlayUIAgent.app/Contents/MacOS/AirPlayUIAgent --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 867, "vsz": 4412948, "rss": 19148, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.24", "command": "/Library/enSilo/enSiloCollectorTray.app/Contents/MacOS/enSiloCollectorTray", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 866, "vsz": 4462712, "rss": 31164, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.80", "command": "/Applications/Egnyte WebEdit.app/Contents/MacOS/Egnyte WebEdit", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 862, "vsz": 4378812, "rss": 18720, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.20", "command": "/System/Library/Image Capture/Support/icdd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 861, "vsz": 4428128, "rss": 21504, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.77", "command": "/Applications/Ivanti Agent.app/Contents/MacOS/Ivanti Agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 860, "vsz": 4377808, "rss": 16116, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.09", "command": "/usr/libexec/dmd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 858, "vsz": 4377852, "rss": 12768, "tt": null, "stat": "SN", "started": "12:10PM", "time": "0:00.83", "command": "/usr/local/jamf/bin/jamfAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 857, "vsz": 4352244, "rss": 10196, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.56", "command": "/Library/Application Support/LANDesk/bin/ldlockscreen", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 856, "vsz": 4453408, "rss": 39468, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.51", "command": "2BUA8C4S2C.com.agilebits.onepassword-osx-helper", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 854, "vsz": 4376432, "rss": 12844, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/CoreServices/SocialPushAgent.app/Contents/MacOS/SocialPushAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 851, "vsz": 4380240, "rss": 9240, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.40", "command": "/Library/Application Support/Fortinet/FortiClient/bin/CredentialStore", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 849, "vsz": 4377680, "rss": 25008, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.34", "command": "/System/Library/PrivateFrameworks/CoreSpeech.framework/corespeechd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 848, "vsz": 4380176, "rss": 9436, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.16", "command": "/System/Library/CoreServices/ScopedBookmarkAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 847, "vsz": 4382212, "rss": 8684, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/dprivacyd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_applepay", "pid": 846, "vsz": 4369436, "rss": 8552, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/usr/libexec/nfcd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 845, "vsz": 4382244, "rss": 18272, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/PhotoLibraryPrivate.framework/Versions/A/Support/photolibraryd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 844, "vsz": 4380560, "rss": 19700, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.20", "command": "/System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/Support/recentsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 843, "vsz": 4377816, "rss": 11104, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.20", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 841, "vsz": 4427448, "rss": 30984, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.52", "command": "/System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.apple.MediaLibraryService.xpc/Contents/MacOS/com.apple.MediaLibraryService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 835, "vsz": 4404688, "rss": 17872, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.70", "command": "/System/Library/CoreServices/CoreLocationAgent.app/Contents/MacOS/CoreLocationAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 830, "vsz": 4378556, "rss": 26096, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frameworks/CloudPhotosConfigurationXPC.framework/Versions/A/XPCServices/com.apple.CloudPhotosConfiguration.xpc/Contents/MacOS/com.apple.CloudPhotosConfiguration", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 829, "vsz": 4376612, "rss": 7424, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Support/com.apple.quicklook.ThumbnailsAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 828, "vsz": 4376860, "rss": 10424, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/system_installd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 827, "vsz": 4370136, "rss": 7236, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/usr/bin/sysdiagnose", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 825, "vsz": 4413016, "rss": 41828, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:38.19", "command": "/System/Library/PrivateFrameworks/PackageKit.framework/Resources/installd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 824, "vsz": 4431344, "rss": 35212, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.91", "command": "/System/Library/CoreServices/cloudphotosd.app/Contents/MacOS/cloudphotosd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_assetcache", "pid": 823, "vsz": 4380196, "rss": 13200, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/AssetCache/AssetCache", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 822, "vsz": 4377668, "rss": 17268, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.35", "command": "/System/Library/CoreServices/diagnostics_agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 820, "vsz": 4658908, "rss": 28960, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.59", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/corespotlightd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 819, "vsz": 4350040, "rss": 6612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/usr/libexec/assertiond", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 818, "vsz": 4378708, "rss": 9060, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.11", "command": "/System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_windowserver", "pid": 816, "vsz": 4852944, "rss": 17092, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 815, "vsz": 5392296, "rss": 68296, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.18", "command": "/Applications/Microsoft Teams.app/Contents/Frameworks/Microsoft Teams Helper.app/Contents/MacOS/Microsoft Teams Helper --type=renderer --autoplay-policy=no-user-gesture-required --service-pipe-token=BC8BFACA2B4147CC3080769FCC3B2805 --lang=en-US --app-path=/Applications/Microsoft Teams.app/Contents/Resources/app.asar --node-integration=false --webview-tag=false --no-sandbox --preload=/Applications/Microsoft Teams.app/Contents/Resources/app.asar/lib/renderer/notifications/preload_notifications.js --background-color=#fff --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --enable-compositor-image-animations --service-request-channel-token=BC8BFACA2B4147CC3080769FCC3B2805 --renderer-client-id=7 --msteams-process-type=notificationsManager", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 813, "vsz": 4379112, "rss": 9176, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.18", "command": "/System/Library/PrivateFrameworks/CacheDelete.framework/deleted", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 812, "vsz": 4362324, "rss": 7308, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 811, "vsz": 4481656, "rss": 35208, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.28", "command": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/reversetemplated", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 810, "vsz": 4707532, "rss": 55548, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:06.20", "command": "/Applications/Microsoft Teams.app/Contents/Frameworks/Microsoft Teams Helper.app/Contents/MacOS/Microsoft Teams Helper --type=gpu-process --gpu-preferences=KAAAAAAAAACAAAAAAQAAAAAAAAAAAGAAEAAAAAAAAAAAAAAAAAAAAGABAAArAAAAWAEAAAAAAABgAQAAAAAAAGgBAAAAAAAAcAEAAAAAAAB4AQAAAAAAAIABAAAAAAAAiAEAAAAAAACQAQAAAAAAAJgBAAAAAAAAoAEAAAAAAACoAQAAAAAAALABAAAAAAAAuAEAAAAAAADAAQAAAAAAAMgBAAAAAAAA0AEAAAAAAADYAQAAAAAAAOABAAAAAAAA6AEAAAAAAADwAQAAAAAAAPgBAAAAAAAAAAIAAAAAAAAIAgAAAAAAABACAAAAAAAAGAIAAAAAAAAgAgAAAAAAACgCAAAAAAAAMAIAAAAAAAA4AgAAAAAAAEACAAAAAAAASAIAAAAAAABQAgAAAAAAAFgCAAAAAAAAYAIAAAAAAABoAgAAAAAAAHACAAAAAAAAeAIAAAAAAACAAgAAAAAAAIgCAAAAAAAAkAIAAAAAAACYAgAAAAAAAKACAAAAAAAAqAIAAAAAAAAQAAAAAAAAAAAAAAAFAAAAEAAAAAAAAAAAAAAABwAAABAAAAAAAAAAAAAAAAsAAAAQAAAAAAAAAAAAAAAMAAAAEAAAAAAAAAAAAAAADQAAABAAAAAAAAAAAAAAAA8AAAAQAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAEgAAABAAAAAAAAAAAAAAABMAAAAQAAAAAAAAAAEAAAAFAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAsAAAAQAAAAAAAAAAEAAAAMAAAAEAAAAAAAAAABAAAADQAAABAAAAAAAAAAAQAAAA8AAAAQAAAAAAAAAAEAAAAQAAAAEAAAAAAAAAABAAAAEgAAABAAAAAAAAAAAQAAABMAAAAQAAAAAAAAAAMAAAAFAAAAEAAAAAAAAAADAAAABwAAABAAAAAAAAAAAwAAAAsAAAAQAAAAAAAAAAMAAAAMAAAAEAAAAAAAAAADAAAADQAAABAAAAAAAAAAAwAAAA8AAAAQAAAAAAAAAAMAAAAQAAAAEAAAAAAAAAADAAAAEgAAABAAAAAAAAAAAwAAABMAAAAQAAAAAAAAAAUAAAAFAAAAEAAAAAAAAAAFAAAABwAAABAAAAAAAAAABQAAAAsAAAAQAAAAAAAAAAUAAAANAAAAEAAAAAAAAAAFAAAADwAAABAAAAAAAAAABQAAABAAAAAQAAAAAAAAAAUAAAASAAAAEAAAAAAAAAAFAAAAEwAAABAAAAAAAAAABgAAAAUAAAAQAAAAAAAAAAYAAAAHAAAAEAAAAAAAAAAGAAAACwAAABAAAAAAAAAABgAAAA0AAAAQAAAAAAAAAAYAAAAPAAAAEAAAAAAAAAAGAAAAEAAAABAAAAAAAAAABgAAABIAAAAQAAAAAAAAAAYAAAATAAAA --service-request-channel-token=2F64ED018CA27B240033139A56401A5E", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 808, "vsz": 4376960, "rss": 11296, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.36", "command": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/XPCServices/ContainerMetadataExtractor.xpc/Contents/MacOS/ContainerMetadataExtractor", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 806, "vsz": 4442876, "rss": 9384, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.25", "command": "/System/Library/CoreServices/iconservicesagent runAsRoot", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 801, "vsz": 4558148, "rss": 79460, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.63", "command": "/System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/Support/suggestd", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 800, "vsz": 4350336, "rss": 5624, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/Frameworks/ColorSync.framework/Support/colorsync.useragent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 799, "vsz": 4409480, "rss": 28112, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.33", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 798, "vsz": 106607040, "rss": 74640, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.12", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 797, "vsz": 4379824, "rss": 17292, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storedownloadd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 795, "vsz": 4350332, "rss": 6060, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.79", "command": "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/XPCServices/com.apple.hiservices-xpcservice.xpc/Contents/MacOS/com.apple.hiservices-xpcservice", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 794, "vsz": 4391072, "rss": 21172, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.67", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeassetd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 788, "vsz": 4407348, "rss": 23464, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.73", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeuid.app/Contents/MacOS/storeuid", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 787, "vsz": 4377084, "rss": 10952, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.38", "command": "/System/Library/PrivateFrameworks/AmbientDisplay.framework/Versions/A/XPCServices/com.apple.AmbientDisplayAgent.xpc/Contents/MacOS/com.apple.AmbientDisplayAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 785, "vsz": 4870928, "rss": 16980, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 684, "vsz": 4378128, "rss": 10272, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/CoreServices/Menu Extras/SafeEjectGPUExtra.menu/Contents/XPCServices/SafeEjectGPUService.xpc/Contents/MacOS/SafeEjectGPUService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 683, "vsz": 28232664, "rss": 250400, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:27.37", "command": "/Applications/Slack.app/Contents/Frameworks/Slack Helper (Renderer).app/Contents/MacOS/Slack Helper (Renderer) --type=renderer --autoplay-policy=no-user-gesture-required --force-color-profile=srgb --field-trial-handle=1718379636,17527104952902636742,6135933977793504545,131072 --disable-features=LayoutNG,SpareRendererForSitePerProcess --lang=en-US --standard-schemes=slack-resources,slack-sounds,slack-webapp-dev --secure-schemes=slack-resources,slack-sounds,slack-webapp-dev --bypasscsp-schemes=slack-resources,slack-sounds,slack-webapp-dev --cors-schemes=slack-resources,slack-sounds,slack-webapp-dev --fetch-schemes=slack-resources,slack-sounds,slack-webapp-dev --service-worker-schemes=slack-resources,slack-sounds,slack-webapp-dev --app-path=/Applications/Slack.app/Contents/Resources/app.asar --no-sandbox --no-zygote --preload=/Applications/Slack.app/Contents/Resources/app.asar/dist/main-preload-entry-point.bundle.js --background-color=#FFFFFF --num-raster-threads=4 --enable-zero-copy --enable-gpu-memory-buffer-compositor-resources --enable-main-frame-before-activation --service-request-channel-token=4709976318857047711 --renderer-client-id=4 --no-v8-untrusted-code-mitigations --enable-node-leakage-in-renderers {\"preloadEnvironment\":{\"resourcePath\":\"/Applications/Slack.app/Contents/Resources/app.asar\",\"appVersion\":\"4.2.0\",\"sessionId\":\"MzI5ZGQ3YzQtMmJiYi01MjBlLWI0MDMtMjk4ZTdjMDZhMzFhXzE1NzYxODE0MjE2NzQ=\",\"uuid\":\"329dd7c4-2bbb-520e-b403-298e7c06a31a\",\"releaseChannel\":\"prod\",\"teamId\":\"app\",\"windowType\":\"main\"},\"crashReporterOpts\":{\"productName\":\"Slack\",\"companyName\":\"Slack Technologies\",\"uploadToServer\":true,\"submitURL\":\"https://slack.com/apps/breakpad?instanceUid=329dd7c4-2bbb-520e-b403-298e7c06a31a\",\"extra\":{\"instanceUid\":\"329dd7c4-2bbb-520e-b403-298e7c06a31a\",\"sessionId\":\"MzI5ZGQ3YzQtMmJiYi01MjBlLWI0MDMtMjk4ZTdjMDZhMzFhXzE1NzYxODE0MjE2NzQ=\"}},\"perfTimer\":{\"mainPid\":570,\"BOOT\":[30,764974150],\"numTeamsAtLaunch\":2,\"SHELL\":[31,372801123],\"APP_READY\":[31,452558714],\"APP_CREATED\":[31,653389287],\"MAIN_WINDOW_CREATING\":[31,676990880]},\"identifier\":\"slack_preload_metadata_arguments\"}", "cpu_percent": 0.0, "mem_percent": 1.5}, {"user": "kbrazil", "pid": 680, "vsz": 4830488, "rss": 8988, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.01", "command": "SafeEjectGPUAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 676, "vsz": 4377324, "rss": 9024, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/usr/libexec/videosubscriptionsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 671, "vsz": 4344800, "rss": 9204, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/Applications/Slack.app/Contents/Frameworks/Electron Framework.framework/Resources/crashpad_handler --no-rate-limit --no-upload-gzip --database=/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/Slack Crashes --metrics-dir=/var/folders/vr/4gybj0rs1_51r0sy8d5qv3jm0000gn/T/Slack Crashes --url=https://slack.com/apps/breakpad?instanceUid=329dd7c4-2bbb-520e-b403-298e7c06a31a&channel=prod --handshake-fd=45", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 667, "vsz": 4378708, "rss": 8388, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/System/Library/Frameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 665, "vsz": 4381012, "rss": 14124, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/keyboardservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 664, "vsz": 4349696, "rss": 4828, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 662, "vsz": 4668968, "rss": 44600, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.20", "command": "/Applications/Slack.app/Contents/Frameworks/Slack Helper (GPU).app/Contents/MacOS/Slack Helper (GPU) --type=gpu-process --field-trial-handle=1718379636,17527104952902636742,6135933977793504545,131072 --disable-features=LayoutNG,SpareRendererForSitePerProcess --gpu-preferences=IAAAAAAAAAAgAAAAAAAAAAAAYAAAAAAACAAAAAAAAAAIAQAAIAAAAAABAAAAAAAACAEAAAAAAAAQAQAAAAAAABgBAAAAAAAAIAEAAAAAAAAoAQAAAAAAADABAAAAAAAAOAEAAAAAAABAAQAAAAAAAEgBAAAAAAAAUAEAAAAAAABYAQAAAAAAAGABAAAAAAAAaAEAAAAAAABwAQAAAAAAAHgBAAAAAAAAgAEAAAAAAACIAQAAAAAAAJABAAAAAAAAmAEAAAAAAACgAQAAAAAAAKgBAAAAAAAAsAEAAAAAAAC4AQAAAAAAAMABAAAAAAAAyAEAAAAAAADQAQAAAAAAANgBAAAAAAAA4AEAAAAAAADoAQAAAAAAAPABAAAAAAAA+AEAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAABgAAABAAAAAAAAAAAAAAAAcAAAAQAAAAAAAAAAAAAAAIAAAAEAAAAAAAAAAAAAAACgAAABAAAAAAAAAAAAAAAAsAAAAQAAAAAAAAAAAAAAANAAAAEAAAAAAAAAAAAAAADgAAABAAAAAAAAAAAQAAAAAAAAAQAAAAAAAAAAEAAAAGAAAAEAAAAAAAAAABAAAABwAAABAAAAAAAAAAAQAAAAgAAAAQAAAAAAAAAAEAAAAKAAAAEAAAAAAAAAABAAAACwAAABAAAAAAAAAAAQAAAA0AAAAQAAAAAAAAAAEAAAAOAAAAEAAAAAAAAAAEAAAAAAAAABAAAAAAAAAABAAAAAYAAAAQAAAAAAAAAAQAAAAHAAAAEAAAAAAAAAAEAAAACAAAABAAAAAAAAAABAAAAAoAAAAQAAAAAAAAAAQAAAALAAAAEAAAAAAAAAAEAAAADQAAABAAAAAAAAAABAAAAA4AAAAQAAAAAAAAAAYAAAAAAAAAEAAAAAAAAAAGAAAABgAAABAAAAAAAAAABgAAAAcAAAAQAAAAAAAAAAYAAAAIAAAAEAAAAAAAAAAGAAAACgAAABAAAAAAAAAABgAAAAsAAAAQAAAAAAAAAAYAAAANAAAAEAAAAAAAAAAGAAAADgAAAA== --service-request-channel-token=17526684532162750856", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 661, "vsz": 4342728, "rss": 5728, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/spindump_agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 659, "vsz": 4808808, "rss": 123400, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:14.00", "command": "/System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "root", "pid": 658, "vsz": 4397068, "rss": 25752, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.01", "command": "/usr/sbin/spindump", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_gamecontrollerd", "pid": 642, "vsz": 4350400, "rss": 9932, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.66", "command": "/usr/libexec/gamecontrollerd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 640, "vsz": 4381520, "rss": 8548, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.39", "command": "/System/Library/CoreServices/pbs", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 632, "vsz": 4377376, "rss": 12260, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.82", "command": "/System/Library/PrivateFrameworks/FileProvider.framework/Support/fileproviderd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 631, "vsz": 4382512, "rss": 16596, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.36", "command": "/usr/libexec/knowledge-agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 627, "vsz": 4380048, "rss": 22356, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.46", "command": "/usr/libexec/findmydeviced", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 617, "vsz": 4383672, "rss": 17012, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.21", "command": "/System/Library/PrivateFrameworks/ContactsDonation.framework/Versions/A/Support/contactsdonationagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 608, "vsz": 4383852, "rss": 27232, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.52", "command": "/System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/XPCServices/com.apple.WeatherKitService.xpc/Contents/MacOS/com.apple.WeatherKitService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 607, "vsz": 4384120, "rss": 15492, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.26", "command": "/System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistoryPluginHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 606, "vsz": 4349720, "rss": 5564, "tt": "s000", "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "login -pfl kbrazil /bin/bash -c exec -la bash /bin/bash", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 605, "vsz": 4333464, "rss": 9132, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/CharacterPicker.framework/Versions/A/XPCServices/com.apple.CharacterPicker.FileService.xpc/Contents/MacOS/com.apple.CharacterPicker.FileService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 604, "vsz": 4383496, "rss": 19992, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.67", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.Networking.xpc/Contents/MacOS/com.apple.WebKit.Networking", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 603, "vsz": 89347532, "rss": 17772, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.67", "command": "/System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 601, "vsz": 4910916, "rss": 32480, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.74", "command": "/System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra.xpc/Contents/MacOS/com.apple.dock.extra", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 600, "vsz": 4880144, "rss": 18124, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.15", "command": "/System/Library/Frameworks/Metal.framework/Versions/A/XPCServices/MTLCompilerService.xpc/Contents/MacOS/MTLCompilerService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 599, "vsz": 5091508, "rss": 26004, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.30", "command": "/System/Library/Input Methods/EmojiFunctionRowIM.app/Contents/PlugIns/EmojiFunctionRowIM_Extension.appex/Contents/MacOS/EmojiFunctionRowIM_Extension", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 597, "vsz": 4901400, "rss": 15444, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.99", "command": "/System/Library/Input Methods/PressAndHold.app/Contents/PlugIns/PAH_Extension.appex/Contents/MacOS/PAH_Extension", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 596, "vsz": 4385744, "rss": 14876, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.55", "command": "/System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/com.apple.geod.xpc/Contents/MacOS/com.apple.geod", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 595, "vsz": 4390188, "rss": 22924, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.97", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 594, "vsz": 4376888, "rss": 13284, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.55", "command": "/System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/XPCServices/WiFiProxy.xpc/Contents/MacOS/WiFiProxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 593, "vsz": 4380168, "rss": 13432, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.51", "command": "/System/Library/Frameworks/InputMethodKit.framework/Resources/imklaunchagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 592, "vsz": 4350728, "rss": 6612, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/usr/sbin/filecoordinationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 585, "vsz": 4387424, "rss": 23416, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.45", "command": "/System/Library/PrivateFrameworks/CoreParsec.framework/parsecd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 583, "vsz": 4349972, "rss": 9296, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/CoreFollowUp.framework/Versions/A/Support/followupd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 582, "vsz": 4976452, "rss": 57784, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.14", "command": "/System/Library/CoreServices/Spotlight.app/Contents/MacOS/Spotlight", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 581, "vsz": 4376388, "rss": 6608, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CMFSyncAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 580, "vsz": 4388628, "rss": 10196, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.76", "command": "/usr/sbin/systemsoundserverd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 576, "vsz": 5097960, "rss": 125460, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:22.64", "command": "/System/Library/CoreServices/Finder.app/Contents/MacOS/Finder", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kbrazil", "pid": 575, "vsz": 4947692, "rss": 48880, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.67", "command": "/System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 574, "vsz": 4351560, "rss": 17760, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.08", "command": "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/storeaccountd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 573, "vsz": 5011644, "rss": 48280, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:17.55", "command": "/System/Library/CoreServices/Dock.app/Contents/MacOS/Dock", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 572, "vsz": 4381696, "rss": 18568, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.47", "command": "/usr/libexec/pkd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 570, "vsz": 5444488, "rss": 106312, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:21.99", "command": "/Applications/Slack.app/Contents/MacOS/Slack -psn_0_127007", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "_fpsd", "pid": 569, "vsz": 4354012, "rss": 8388, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.14", "command": "/System/Library/PrivateFrameworks/CoreADI.framework/adid", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 567, "vsz": 5001940, "rss": 69900, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:04.34", "command": "/Applications/Contacts.app/Contents/MacOS/Contacts -psn_0_122910", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 566, "vsz": 5564348, "rss": 185784, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:17.14", "command": "/Applications/Messages.app/Contents/MacOS/Messages -psn_0_118813", "cpu_percent": 0.0, "mem_percent": 1.1}, {"user": "kbrazil", "pid": 565, "vsz": 4379596, "rss": 21048, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.64", "command": "/System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/bird", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 564, "vsz": 4385348, "rss": 25344, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.33", "command": "/System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Support/assistantd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 563, "vsz": 4379864, "rss": 6348, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.32", "command": "/usr/libexec/swcd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 561, "vsz": 5166204, "rss": 100748, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:07.59", "command": "/Applications/Notes.app/Contents/MacOS/Notes -psn_0_114716", "cpu_percent": 0.0, "mem_percent": 0.6}, {"user": "kbrazil", "pid": 559, "vsz": 4378448, "rss": 18652, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/Resources/familycircled", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 558, "vsz": 5027332, "rss": 83612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.50", "command": "/Applications/Reminders.app/Contents/MacOS/Reminders -psn_0_106522", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 557, "vsz": 4377880, "rss": 12512, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.15", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 555, "vsz": 4388844, "rss": 26608, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.39", "command": "/usr/libexec/fmfd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 554, "vsz": 4349736, "rss": 5680, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoteagent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 553, "vsz": 4988888, "rss": 75964, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.94", "command": "/Applications/Calendar.app/Contents/MacOS/Calendar -psn_0_98328", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "kbrazil", "pid": 552, "vsz": 4387004, "rss": 39564, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.59", "command": "/System/Library/PrivateFrameworks/CalendarNotification.framework/Versions/A/XPCServices/CalNCService.xpc/Contents/MacOS/CalNCService", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 551, "vsz": 4387468, "rss": 14204, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.92", "command": "/usr/libexec/nsurlstoraged", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 549, "vsz": 4378576, "rss": 10748, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.57", "command": "/System/Library/PrivateFrameworks/UserActivity.framework/Agents/useractivityd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 548, "vsz": 6316120, "rss": 115788, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:37.83", "command": "/Applications/Sourcetree.app/Contents/MacOS/Sourcetree -psn_0_86037", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kbrazil", "pid": 547, "vsz": 4393608, "rss": 43064, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.48", "command": "/usr/libexec/sharingd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 546, "vsz": 4439908, "rss": 123700, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:15.02", "command": "/System/Library/PrivateFrameworks/MessagesKit.framework/Resources/soagent.app/Contents/MacOS/soagent", "cpu_percent": 0.0, "mem_percent": 0.7}, {"user": "kbrazil", "pid": 545, "vsz": 4377880, "rss": 13000, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.18", "command": "/System/Library/PrivateFrameworks/IMFoundation.framework/XPCServices/IMRemoteURLConnectionAgent.xpc/Contents/MacOS/IMRemoteURLConnectionAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 543, "vsz": 5163276, "rss": 81292, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.70", "command": "/System/Library/CoreServices/NotificationCenter.app/Contents/MacOS/NotificationCenter", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 542, "vsz": 4349756, "rss": 5832, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/CoreServices/CrashReporterSupportHelper server-init", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 541, "vsz": 4379596, "rss": 12232, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:03.76", "command": "/System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Support/fontd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 540, "vsz": 4408432, "rss": 14504, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.87", "command": "/System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 537, "vsz": 4445456, "rss": 62588, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.62", "command": "/System/Library/PrivateFrameworks/CalendarAgent.framework/Executables/CalendarAgent", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "kbrazil", "pid": 536, "vsz": 4342124, "rss": 5516, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/CoreServices/APFSUserAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 535, "vsz": 4378332, "rss": 11004, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.11", "command": "/usr/libexec/networkserviceproxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 534, "vsz": 4938220, "rss": 38492, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.87", "command": "/System/Library/CoreServices/ControlStrip.app/Contents/MacOS/ControlStrip", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 533, "vsz": 4381904, "rss": 24136, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.30", "command": "/usr/sbin/usernoted", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 532, "vsz": 4386616, "rss": 35908, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.03", "command": "/usr/libexec/routined LAUNCHED_BY_LAUNCHD", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 531, "vsz": 4379788, "rss": 10132, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.45", "command": "/System/Library/CoreServices/sharedfilelistd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 530, "vsz": 5866640, "rss": 207544, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:40.74", "command": "/Applications/Mail.app/Contents/MacOS/Mail -psn_0_69649", "cpu_percent": 0.0, "mem_percent": 1.2}, {"user": "kbrazil", "pid": 529, "vsz": 4384616, "rss": 11584, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.46", "command": "/System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/Support/akd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 528, "vsz": 4378268, "rss": 19776, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.75", "command": "/usr/libexec/rapportd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 527, "vsz": 4377812, "rss": 7316, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/usr/sbin/wirelessproxd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 526, "vsz": 4380252, "rss": 13144, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.99", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 525, "vsz": 4423320, "rss": 19040, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:29.59", "command": "/System/Library/CoreServices/iconservicesagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 524, "vsz": 4349888, "rss": 19360, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.96", "command": "/System/Library/Frameworks/AddressBook.framework/Executables/ContactsAccountsService", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 523, "vsz": 4434932, "rss": 30768, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.51", "command": "/System/Library/PrivateFrameworks/IMDPersistence.framework/XPCServices/IMDPersistenceAgent.xpc/Contents/MacOS/IMDPersistenceAgent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 522, "vsz": 4385832, "rss": 29108, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.70", "command": "/System/Library/PrivateFrameworks/IMCore.framework/imagent.app/Contents/MacOS/imagent", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 521, "vsz": 4377276, "rss": 11664, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:02.50", "command": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 520, "vsz": 4455356, "rss": 44588, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.06", "command": "/System/Library/CoreServices/talagent", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 519, "vsz": 4392312, "rss": 28916, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.77", "command": "/System/Library/PrivateFrameworks/IDS.framework/identityservicesd.app/Contents/MacOS/identityservicesd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 518, "vsz": 4351228, "rss": 8672, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/Frameworks/Security.framework/Versions/A/Resources/CloudKeychainProxy.bundle/Contents/MacOS/CloudKeychainProxy", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 517, "vsz": 4531964, "rss": 56468, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:09.12", "command": "/System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "kbrazil", "pid": 515, "vsz": 4426108, "rss": 52332, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:13.00", "command": "/System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 514, "vsz": 4377460, "rss": 12404, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.11", "command": "/usr/sbin/WirelessRadioManagerd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 513, "vsz": 4391696, "rss": 19664, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.11", "command": "/usr/libexec/nsurlsessiond", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 512, "vsz": 4386144, "rss": 12588, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.19", "command": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 511, "vsz": 4350816, "rss": 6764, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.26", "command": "/usr/libexec/pboard", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 509, "vsz": 4398324, "rss": 36328, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.90", "command": "/System/Library/PrivateFrameworks/CloudKitDaemon.framework/Support/cloudd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 508, "vsz": 4378420, "rss": 8852, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.19", "command": "/System/Library/CoreServices/backgroundtaskmanagementagent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 507, "vsz": 4396992, "rss": 24736, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:05.95", "command": "/usr/libexec/secd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 506, "vsz": 4406800, "rss": 25052, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:13.16", "command": "/usr/libexec/trustd --agent", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 505, "vsz": 4387720, "rss": 14936, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.60", "command": "/usr/libexec/lsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 503, "vsz": 4391752, "rss": 32332, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.43", "command": "/System/Library/Frameworks/CoreTelephony.framework/Support/CommCenter -L", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "kbrazil", "pid": 502, "vsz": 4382492, "rss": 12936, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.69", "command": "/usr/sbin/universalaccessd launchd -s", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 501, "vsz": 4350956, "rss": 6232, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.89", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 499, "vsz": 4379684, "rss": 36572, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:04.20", "command": "/usr/libexec/UserEventAgent (Aqua)", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 498, "vsz": 4335004, "rss": 5888, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/securityd_service", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 497, "vsz": 4376528, "rss": 5120, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/biokitaggdd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 496, "vsz": 4350696, "rss": 4052, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:10.88", "command": "/usr/sbin/cfprefsd agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 495, "vsz": 4377868, "rss": 13672, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.23", "command": "/usr/libexec/biometrickitd --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "kbrazil", "pid": 494, "vsz": 4360160, "rss": 9976, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 493, "vsz": 4379804, "rss": 10952, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.24", "command": "/System/Library/PrivateFrameworks/FamilyControls.framework/Resources/parentalcontrolsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 492, "vsz": 4377524, "rss": 12428, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.13", "command": "/System/Library/Frameworks/LocalAuthentication.framework/Support/coreauthd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 486, "vsz": 4353276, "rss": 8300, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.70", "command": "/System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/XPCServices/com.apple.PerformanceAnalysis.animationperfd.xpc/Contents/MacOS/com.apple.PerformanceAnalysis.animationperfd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 484, "vsz": 4342320, "rss": 4816, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.01", "command": "/System/Library/Frameworks/GSS.framework/Helpers/GSSCred", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 479, "vsz": 4350412, "rss": 6380, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/PrivateFrameworks/SystemAdministration.framework/XPCServices/writeconfig.xpc/Contents/MacOS/writeconfig", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 478, "vsz": 4342088, "rss": 828, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/XPCServices/com.apple.cmio.registerassistantservice.xpc/Contents/MacOS/com.apple.cmio.registerassistantservice", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 477, "vsz": 4342020, "rss": 5736, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/AccountPolicy.framework/XPCServices/com.apple.AccountPolicyHelper.xpc/Contents/MacOS/com.apple.AccountPolicyHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 473, "vsz": 4377900, "rss": 6388, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.13", "command": "/System/Library/CoreServices/sharedfilelistd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 469, "vsz": 4378208, "rss": 6092, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.17", "command": "/usr/sbin/systemstats --logger-helper /private/var/db/systemstats", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 467, "vsz": 4350608, "rss": 10216, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/bootinstalld", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 466, "vsz": 4350176, "rss": 4852, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.90", "command": "/usr/libexec/sysmond", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 462, "vsz": 4350548, "rss": 6272, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/colorsyncd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 458, "vsz": 4350956, "rss": 2792, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:00.07", "command": "/usr/sbin/distnoted agent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 455, "vsz": 4349780, "rss": 6260, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/usr/libexec/colorsync.displayservices", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 454, "vsz": 4359372, "rss": 6244, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/CVMServer", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 453, "vsz": 4422052, "rss": 19352, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:19.77", "command": "/usr/libexec/TouchBarServer", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_netbios", "pid": 452, "vsz": 4351864, "rss": 9140, "tt": null, "stat": "SNs", "started": "12:10PM", "time": "0:00.19", "command": "/usr/sbin/netbiosd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 439, "vsz": 4378708, "rss": 9752, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.10", "command": "/usr/libexec/secinitd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_captiveagent", "pid": 437, "vsz": 4352040, "rss": 7752, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.09", "command": "/usr/libexec/captiveagent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 436, "vsz": 4377212, "rss": 10612, "tt": null, "stat": "S", "started": "12:10PM", "time": "0:01.94", "command": "/System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/XPCServices/ViewBridgeAuxiliary.xpc/Contents/MacOS/ViewBridgeAuxiliary", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 434, "vsz": 5359300, "rss": 227192, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "12:47.11", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Versions/A/Support/mds_stores", "cpu_percent": 0.0, "mem_percent": 1.4}, {"user": "root", "pid": 433, "vsz": 4382264, "rss": 14100, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.32", "command": "/System/Library/PrivateFrameworks/TCC.framework/Resources/tccd system", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 432, "vsz": 4325156, "rss": 9368, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/usr/libexec/thermald", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 431, "vsz": 4308980, "rss": 9108, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/AudioToolbox.framework/XPCServices/com.apple.audio.SandboxHelper.xpc/Contents/MacOS/com.apple.audio.SandboxHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 430, "vsz": 4327088, "rss": 8160, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/System/Library/Frameworks/AudioToolbox.framework/AudioComponentRegistrar -daemon", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 238, "vsz": 4326248, "rss": 5736, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.43", "command": "/usr/libexec/watchdogd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 231, "vsz": 4333528, "rss": 4284, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/smd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_analyticsd", "pid": 226, "vsz": 4377676, "rss": 7640, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.22", "command": "/System/Library/PrivateFrameworks/CoreAnalytics.framework/Support/analyticsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 219, "vsz": 4353608, "rss": 8452, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.21", "command": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/com.apple.CodeSigningHelper.xpc/Contents/MacOS/com.apple.CodeSigningHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_nsurlstoraged", "pid": 218, "vsz": 4333992, "rss": 7276, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/usr/libexec/nsurlstoraged --privileged", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 208, "vsz": 4344232, "rss": 6608, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.23", "command": "/System/Library/PrivateFrameworks/CoreSymbolication.framework/coresymbolicationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 206, "vsz": 4378040, "rss": 32244, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.85", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 205, "vsz": 4376512, "rss": 10420, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.14", "command": "/System/Library/CoreServices/SubmitDiagInfo server-init", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 204, "vsz": 4381436, "rss": 11328, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:11.52", "command": "/usr/libexec/ApplicationFirewall/socketfilterfw", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_softwareupdate", "pid": 203, "vsz": 4350340, "rss": 6212, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.06", "command": "/System/Library/PrivateFrameworks/BridgeOSSoftwareUpdate.framework/Support/bosUpdateProxy", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_cmiodalassistants", "pid": 202, "vsz": 4407184, "rss": 9580, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.13", "command": "/System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/Resources/VDCAssistant", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 201, "vsz": 4377604, "rss": 8744, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.08", "command": "/usr/libexec/usbd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 200, "vsz": 4390308, "rss": 18380, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:24.98", "command": "/usr/libexec/airportd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 199, "vsz": 4341540, "rss": 5932, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/usr/libexec/apfsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 198, "vsz": 4341584, "rss": 9656, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/CryptoTokenKit/com.apple.ifdreader.slotd/Contents/MacOS/com.apple.ifdreader", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 197, "vsz": 4324096, "rss": 4988, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.01", "command": "/usr/libexec/multiversed", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 195, "vsz": 4377600, "rss": 6824, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.57", "command": "/usr/sbin/mDNSResponderHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_mdnsresponder", "pid": 194, "vsz": 4379160, "rss": 9800, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:05.65", "command": "/usr/sbin/mDNSResponder", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_networkd", "pid": 193, "vsz": 4445724, "rss": 12528, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.46", "command": "/usr/libexec/symptomsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 190, "vsz": 4485936, "rss": 60600, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:19.02", "command": "/usr/libexec/lsd runAsRoot", "cpu_percent": 0.0, "mem_percent": 0.4}, {"user": "root", "pid": 189, "vsz": 4378276, "rss": 9560, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.60", "command": "/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Support/awdd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 188, "vsz": 4378384, "rss": 9384, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.39", "command": "/usr/libexec/nehelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 187, "vsz": 4377092, "rss": 7368, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.11", "command": "/System/Library/Frameworks/CoreAudio.framework/Versions/A/XPCServices/com.apple.audio.DriverHelper.xpc/Contents/MacOS/com.apple.audio.DriverHelper", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 186, "vsz": 4382916, "rss": 17364, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.63", "command": "/System/Library/PrivateFrameworks/CoreDuetContext.framework/Resources/contextstored", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_coreaudiod", "pid": 185, "vsz": 4395472, "rss": 28312, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:25.16", "command": "/usr/sbin/coreaudiod", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "_ctkd", "pid": 182, "vsz": 4343256, "rss": 9920, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/Frameworks/CryptoTokenKit.framework/ctkd -s", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_nsurlsessiond", "pid": 168, "vsz": 4386244, "rss": 18692, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.86", "command": "/usr/libexec/nsurlsessiond --privileged", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 166, "vsz": 4383064, "rss": 16204, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.40", "command": "/usr/libexec/mobileassetd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 159, "vsz": 4393864, "rss": 20384, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:38.79", "command": "/usr/libexec/trustd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 157, "vsz": 4350244, "rss": 8900, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/Frameworks/PCSC.framework/Versions/A/XPCServices/com.apple.ctkpcscd.xpc/Contents/MacOS/com.apple.ctkpcscd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 133, "vsz": 4394316, "rss": 11452, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:08.08", "command": "/System/Library/CoreServices/coreservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 127, "vsz": 4350224, "rss": 3880, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:09.33", "command": "/usr/sbin/cfprefsd daemon", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 125, "vsz": 4390992, "rss": 25616, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:12.30", "command": "/usr/libexec/syspolicyd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 124, "vsz": 4350296, "rss": 5160, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "aslmanager", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 123, "vsz": 4380688, "rss": 11612, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.38", "command": "/System/Library/Frameworks/Security.framework/Versions/A/XPCServices/authd.xpc/Contents/MacOS/authd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_distnote", "pid": 121, "vsz": 4350956, "rss": 3552, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.09", "command": "/usr/sbin/distnoted daemon", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 119, "vsz": 4384264, "rss": 13624, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.21", "command": "/usr/libexec/amfid", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 118, "vsz": 4333888, "rss": 6380, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.54", "command": "/usr/libexec/taskgated", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 116, "vsz": 4300784, "rss": 2292, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.22", "command": "/usr/sbin/notifyd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 115, "vsz": 4378012, "rss": 13284, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.60", "command": "/usr/libexec/AirPlayXPCHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 114, "vsz": 4379576, "rss": 14924, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.72", "command": "/usr/libexec/corebrightnessd --launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 113, "vsz": 4394556, "rss": 45396, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.54", "command": "/usr/libexec/sandboxd", "cpu_percent": 0.0, "mem_percent": 0.3}, {"user": "root", "pid": 110, "vsz": 4381320, "rss": 10772, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.30", "command": "/usr/sbin/bluetoothd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 108, "vsz": 4354196, "rss": 6548, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.21", "command": "/Library/Application Support/LANDesk/bin/lddispatch -p ipc:///Library/Application Support/LANDesk/tmp/socket/sys -s", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 107, "vsz": 4317140, "rss": 4824, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.01", "command": "/usr/sbin/KernelEventAgent", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 106, "vsz": 4378980, "rss": 5368, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.11", "command": "/System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Support/revisiond", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 105, "vsz": 4349848, "rss": 6400, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.07", "command": "/System/Library/CoreServices/logind", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 104, "vsz": 4980336, "rss": 40300, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.02", "command": "/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 103, "vsz": 4350036, "rss": 5588, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/Library/Tanium/TaniumClient/TaniumClient -d", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 101, "vsz": 4377748, "rss": 11904, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.30", "command": "/usr/libexec/PerfPowerServices", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 99, "vsz": 4402096, "rss": 20148, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.32", "command": "/Library/Application Support/LANDesk/bin/IVMetrics.app/Contents/MacOS/IVMetrics --monitor", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 97, "vsz": 4382008, "rss": 13756, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.68", "command": "/usr/libexec/dasd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_displaypolicyd", "pid": 96, "vsz": 4352920, "rss": 10628, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.08", "command": "/usr/libexec/displaypolicyd -k 1", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 95, "vsz": 4342100, "rss": 5456, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "autofsd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 94, "vsz": 4383340, "rss": 15224, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.61", "command": "/Library/Application Support/LANDesk/bin/ldscheduler", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 92, "vsz": 4369340, "rss": 8376, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.05", "command": "/Library/Application Support/LANDesk/bin/ldwatch", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_locationd", "pid": 91, "vsz": 4388832, "rss": 16756, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.47", "command": "/usr/libexec/locationd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_usbmuxd", "pid": 89, "vsz": 4377220, "rss": 6116, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.30", "command": "/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/usbmuxd -launchd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 88, "vsz": 4382596, "rss": 15592, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:07.13", "command": "/usr/sbin/securityd -i", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 87, "vsz": 4362160, "rss": 10212, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:04.24", "command": "/Library/Application Support/LANDesk/bin/ldtmc", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_timed", "pid": 85, "vsz": 4376816, "rss": 7152, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.33", "command": "/usr/libexec/timed", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 84, "vsz": 4380380, "rss": 12440, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:05.12", "command": "/System/Library/CoreServices/launchservicesd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 83, "vsz": 4350540, "rss": 4068, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/Noticeboard.framework/Versions/A/Resources/nbstated", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 82, "vsz": 4391948, "rss": 7132, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.04", "command": "/Library/PrivilegedHelperTools/com.docker.vmnetd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 81, "vsz": 4382876, "rss": 22668, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.51", "command": "/System/Library/PrivateFrameworks/ApplePushService.framework/apsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 80, "vsz": 4357072, "rss": 8548, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.88", "command": "/Library/Application Support/LANDesk/bin/ldremote", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 76, "vsz": 4384748, "rss": 20528, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.04", "command": "/usr/libexec/coreduetd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 75, "vsz": 4377452, "rss": 30052, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.74", "command": "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper -launchd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 71, "vsz": 4376396, "rss": 7496, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:01.66", "command": "/usr/libexec/diskarbitrationd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "_iconservices", "pid": 70, "vsz": 4351356, "rss": 4792, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.03", "command": "/System/Library/CoreServices/iconservicesd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 69, "vsz": 4384136, "rss": 9832, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.94", "command": "/Library/Application Support/LANDesk/bin/IVRemoteControl.app/Contents/MacOS/ivremote", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 68, "vsz": 4578216, "rss": 80268, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "1:38.14", "command": "/System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds", "cpu_percent": 0.0, "mem_percent": 0.5}, {"user": "root", "pid": 62, "vsz": 4341688, "rss": 4920, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.02", "command": "/usr/libexec/keybagd -t 15", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 61, "vsz": 4456772, "rss": 28244, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:10.04", "command": "/usr/libexec/logd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 56, "vsz": 4384592, "rss": 20860, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:03.31", "command": "/Library/Application Support/BeyondTrust/pbmac/pbmacd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 55, "vsz": 4383344, "rss": 12924, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.57", "command": "/usr/libexec/configd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 53, "vsz": 4381976, "rss": 14184, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:05.66", "command": "/usr/sbin/systemstats --daemon", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "_appleevents", "pid": 52, "vsz": 4379980, "rss": 8812, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.27", "command": "/System/Library/CoreServices/appleeventsd --server", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 49, "vsz": 4379068, "rss": 24416, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.43", "command": "/System/Library/PrivateFrameworks/MediaRemote.framework/Support/mediaremoted", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 48, "vsz": 4388436, "rss": 25180, "tt": null, "stat": "SNs", "started": "12:10PM", "time": "0:01.89", "command": "/usr/local/jamf/bin/jamf launchDaemon -monitorUsage", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 46, "vsz": 5130616, "rss": 13252, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:53.59", "command": "/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Support/fseventsd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 45, "vsz": 4391256, "rss": 26976, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:06.00", "command": "/usr/libexec/kextd", "cpu_percent": 0.0, "mem_percent": 0.2}, {"user": "root", "pid": 44, "vsz": 4324820, "rss": 5224, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.42", "command": "/System/Library/PrivateFrameworks/Uninstall.framework/Resources/uninstalld", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 41, "vsz": 4379304, "rss": 19440, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:02.23", "command": "/usr/libexec/UserEventAgent (System)", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 40, "vsz": 4350620, "rss": 1168, "tt": null, "stat": "Ss", "started": "12:10PM", "time": "0:00.91", "command": "/usr/sbin/syslogd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 1, "vsz": 4373320, "rss": 21308, "tt": null, "stat": "Ss", "started": "12:09PM", "time": "1:08.19", "command": "/sbin/launchd", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 69357, "vsz": 4268540, "rss": 1092, "tt": "s000", "stat": "R+", "started": "3:49PM", "time": "0:00.00", "command": "ps axu", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 1043, "vsz": 0, "rss": 0, "tt": null, "stat": "Z", "started": "12:10PM", "time": "0:00.00", "command": "(uname)", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 69327, "vsz": 4333636, "rss": 6556, "tt": null, "stat": "Ss", "started": "3:49PM", "time": "0:00.02", "command": "/System/Library/PrivateFrameworks/Heimdal.framework/Helpers/kcm --launchd", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 68539, "vsz": 4374360, "rss": 4264, "tt": null, "stat": "Ss", "started": "3:44PM", "time": "0:00.35", "command": "/Library/Tanium/TaniumClient/Tools/Detect3/TaniumDetectEngine", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "kbrazil", "pid": 68384, "vsz": 4378164, "rss": 16744, "tt": null, "stat": "S", "started": "3:44PM", "time": "0:00.09", "command": "/System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/XPCServices/com.apple.iCloudHelper.xpc/Contents/MacOS/com.apple.iCloudHelper", "cpu_percent": 0.0, "mem_percent": 0.1}, {"user": "root", "pid": 68118, "vsz": 4368780, "rss": 3424, "tt": null, "stat": "S", "started": "3:43PM", "time": "0:00.06", "command": "/Library/Application Support/Fortinet/FortiClient/bin//scanunit -p 54091 -s /Library/Application Support/Fortinet/FortiClient/data/ -a", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 68113, "vsz": 4310960, "rss": 6076, "tt": null, "stat": "Ss", "started": "3:43PM", "time": "0:00.04", "command": "/Library/Application Support/Fortinet/FortiClient/bin/fmon -a -s /Library/Application Support/Fortinet/FortiClient/data/ -o /Library/Application Support/Fortinet/FortiClient/Logs/ --unit /Library/Application Support/Fortinet/FortiClient/bin/", "cpu_percent": 0.0, "mem_percent": 0.0}, {"user": "root", "pid": 67481, "vsz": 4534112, "rss": 21328, "tt": null, "stat": "U