Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

x/tools/gopls: causes vscode-go hangs - mac hard reboot mac is the only option #40835

Closed
chandradeepak opened this issue Aug 16, 2020 · 10 comments
Labels
FrozenDueToAge gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository. WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.
Milestone

Comments

@chandradeepak
Copy link

Please direct general questions to:

Please review the documentation before filing an issue.
Helpful pages include:

I disabled all extensions except go lang for vscode and still got the issue.

Please answer these questions before submitting your issue. Thanks!

What version of Go, VS Code & VS Code Go extension are you using?

  • Run go version to get version of Go
    go version go1.14 darwin/amd64
  • Run code -v or code-insiders -v to get version of VS Code or VS Code Insiders
    1.47.3
    91899dcef7b8110878ea59626991a18c8a6a1b3e
    x64
  • Check your installed extensions to get the version of the VS Code Go extension
  • Run go env to get the go development environment details
    GO111MODULE=""
    GOARCH="amd64"
    GOBIN=""
    GOCACHE="/Users/myuser/Library/Caches/go-build"
    GOENV="/Users/myuser/Library/Application Support/go/env"
    GOEXE=""
    GOFLAGS=""
    GOHOSTARCH="amd64"
    GOHOSTOS="darwin"
    GOINSECURE=""
    GONOPROXY="github.com,go.googlesource.com,gopkg.in,localhost,go.uber.org"
    GOOS="darwin"
    GOPATH="/Users/myuser/workspace/go/"
    GOPRIVATE="myenterpiserserverrepos"
    GOPROXY="https://proxy.golang.org,direct"
    GOROOT="/usr/local/Cellar/go/1.14/libexec"
    GOSUMDB="sum.golang.org"
    GOTMPDIR=""
    GOTOOLDIR="/usr/local/Cellar/go/1.14/libexec/pkg/tool/darwin_amd64"
    GCCGO="gccgo"
    AR="ar"
    CC="clang"
    CXX="clang++"
    CGO_ENABLED="1"
    CGO_CFLAGS="-g -O2"
    CGO_CPPFLAGS=""
    CGO_CXXFLAGS="-g -O2"
    CGO_FFLAGS="-g -O2"
    CGO_LDFLAGS="-g -O2"
    PKG_CONFIG="pkg-config"
    GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/53/hjtfgcyx565bfnxtj1d2s3340000gn/T/go-build630458320=/tmp/go-build -gno-record-gcc-switches -fno-common"

Share the Go related settings you have added/edited

Run Preferences: Open Settings (JSON) command to open your settings.json file.
Share all the settings with the go. or ["go"] or gopls prefixes.

{
"window.zoomLevel": 0,
"explorer.openEditors.visible": 0,
"editor.fontSize": 18,
"files.autoSave": "off",
"editor.minimap.enabled": false,
"editor.scrollBeyondLastLine": false,
"editor.renderIndentGuides": true,
"vsicons.dontShowNewVersionMessage": true,
"terminal.integrated.copyOnSelection": true,
"workbench.activityBar.visible": true,
"editor.matchBrackets": "always",
"editor.suggestSelection": "first",
"workbench.iconTheme": "vscode-icons",
"files.autoSaveDelay": 5000,
"java.semanticHighlighting.enabled": true,
"files.exclude": {
"/.classpath": true,
"
/.project": true,
"/.settings": true,
"
/.factorypath": true
},
"java.requirements.JDK11Warning": false,
"editor.codeActionsOnSave":{},
"extensions.autoCheckUpdates": false,
"editor.tokenColorCustomizations": null,
"update.mode": "manual",
"extensions.autoUpdate": false,
"go.formatTool": "goimports",
"go.languageServerFlags": [
"serve",
"-rpc.trace",
"--debug=localhost:6060",
"-logfile=/Users/chandrakasiraju/Downloads/gopls.log"
],
"go.useLanguageServer": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
"editor.snippetSuggestions": "none",
},
"[go.mod]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
},
},
"gopls": {
"usePlaceholders": true,
"staticcheck": false,
}
}

Describe the bug

vscode freezes the mac.

Steps to reproduce the behavior:

when ever i try editing a file, especially if that file is big or if i replace whole content of a file , or if i change package name or rename a variable or add a new package which brings new dependency the whole vscode hangs. I can't even move my mouse. i can not get out of vscode window and then kill vscode to restart. the only way is to force restart mac. this happened so many times in my mac. To make sure it is not a linting problem i even tried to disables file.autosave to false. I think it has some thing to do with gopls or language server. I tried using atom editor for this issue. when i tried enabling gopls there as well it made my mac hang. This happens once in a while when code file is big , you try to import a new dependency etc.

  1. open a project preferrably a big project using iTerm in mac using the command line option code .
  2. now copy a dir which contains 5 or more go files
  3. rename the dir to newdir or something.
  4. go the newdir using vscode editor navigation bar and click on the go files and try changing their package name to newdir
  5. first time when this got reproduced it hanged when i did this in my project
  6. (after this i rebooted it)
  7. tried to repeat same. next time it didn't come immediately. this time i changed package name. it went through
  8. now i deleted one file at a time .
  9. i saw mac freezed again
  10. after this i rebooted mac
  11. now tried to do same . changing package name , delete file didn't reproduce this time.
  12. tried deleting whole folder.
  13. mac hanged again. hard reboot .
  14. in between in this multiple attempts i tried renaming fields once. i saw a crash in gopls(server) output which i am pasting in next comment.
  15. the toughest thing is can not capture view->output logs also since whole mac is hanged. but when i tried renaming gopls crashed that i was able to catpture below.
  16. this kind of things happened so many times on mac . i tried following the various issues logged for hanging but none of them solved this. this still hanges my mac occasionally.

Screenshots or recordings

If applicable, add screenshots or recordings to help explain your problem.
IMG_20200817_042155

@chandradeepak chandradeepak changed the title vscode-go hangs mac hard reboot mac is the only option vscode-go hangs - mac hard reboot mac is the only option Aug 16, 2020
@chandradeepak
Copy link
Author

i caught a crash for the renaming a field . but this didn't hang my mac it only crashed the gopls server. this is the output i see output i get when i see in view->outputs->gopls(server)
the other one is hard to capture since i can't even take a copy from vscode since it is hanged already. t

`[Info - 3:39:20 AM] 2020/08/17 03:39:20 go/packages.Load
snapshot=7
directory=/Users/chandrakasiraju/workspace/go/src/pathtoproject
query=[github.com/pathtoproject]
packages=1

[Info - 3:39:20 AM] 2020/08/17 03:39:20 go/packages.Load
snapshot=7
package_path="github.com/pathtoproject"
files=[/Users/chandrakasiraju/workspace/go/src/github.com/pathtoproject/authenticate.go /Users/chandrakasiraju/workspace/go/src/github.com/pathtoproject/seed.go]

panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x40 pc=0x13efbc4]

goroutine 13316 [running]:
golang.org/x/tools/internal/lsp/source.(*renamer).checkInPackageBlock(0xc00ed12d20, 0x1ac3e80, 0xc01195c0f0)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/source/rename_check.go:125 +0x424
golang.org/x/tools/internal/lsp/source.(*renamer).check(0xc00ed12d20, 0x1ac3e80, 0xc01195c0f0)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/source/rename_check.go:42 +0x39a
golang.org/x/tools/internal/lsp/source.Rename(0x1ab1980, 0xc008a10120, 0x1ac5020, 0xc005bec280, 0x1ab5700, 0xc00c2798c0, 0x4031000000000000, 0x4022000000000000, 0xc00c116bc2, 0x3, ...)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/source/rename.go:126 +0x631
golang.org/x/tools/internal/lsp.(*Server).rename(0xc0000bcf80, 0x1ab18c0, 0xc008d81e00, 0xc00b8481c0, 0x0, 0x0, 0xc00a457ce0)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/rename.go:19 +0x117
golang.org/x/tools/internal/lsp.(*Server).Rename(0xc0000bcf80, 0x1ab18c0, 0xc008d81e00, 0xc00b8481c0, 0xc00b8481c0, 0x0, 0x0)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/server_gen.go:148 +0x49
golang.org/x/tools/internal/lsp/protocol.serverDispatch(0x1ab18c0, 0xc008d81e00, 0x1acc3e0, 0xc0000bcf80, 0xc008a10000, 0x1ab1b00, 0xc008d81cc0, 0x0, 0x0, 0x1a9f300)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/protocol/tsserver.go:374 +0x1147
golang.org/x/tools/internal/lsp/protocol.ServerHandler.func1(0x1ab18c0, 0xc008d81e00, 0xc008a10000, 0x1ab1b00, 0xc008d81cc0, 0xbfc679b2db3c55f8, 0xa60c9743d)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/protocol/protocol.go:62 +0xc0
golang.org/x/tools/internal/lsp/lsprpc.handshaker.func1(0x1ab18c0, 0xc008d81e00, 0xc008a10000, 0x1ab1b00, 0xc008d81cc0, 0x0, 0x0)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/lsp/lsprpc/lsprpc.go:521 +0x417
golang.org/x/tools/internal/jsonrpc2.MustReplyHandler.func1(0x1ab18c0, 0xc008d81e00, 0xc00c9dbe60, 0x1ab1b00, 0xc008d81cc0, 0xc00c0ed540, 0x1990118)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/jsonrpc2/handler.go:35 +0xd3
golang.org/x/tools/internal/jsonrpc2.AsyncHandler.func1.2(0xc0128b8480, 0xc00410e2a0, 0xc0000ab870, 0x1ab18c0, 0xc008d81e00, 0xc00c9dbe60, 0x1ab1b00, 0xc008d81cc0)
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/jsonrpc2/handler.go:103 +0x86
created by golang.org/x/tools/internal/jsonrpc2.AsyncHandler.func1
/Users/chandrakasiraju/workspace/go/pkg/mod/golang.org/x/tools@v0.0.0-20200729181040-64cdafbe085c/internal/jsonrpc2/handler.go:100 +0x171
[Info - 3:39:23 AM] Connection to server got closed. Server will restart.
[Error - 3:39:23 AM] Request textDocument/rename failed.
Error: Connection got disposed.
at Object.dispose (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:13824:25)
at Object.dispose (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:10459:35)
at LanguageClient.handleConnectionClosed (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:12694:42)
at LanguageClient.handleConnectionClosed (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:70276:15)
at closeHandler (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:12681:18)
at CallbackList.invoke (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:24070:39)
at Emitter.fire (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:24129:36)
at closeHandler (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:13160:26)
at CallbackList.invoke (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:24070:39)
at Emitter.fire (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:24129:36)
at StreamMessageReader.fireClose (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:28049:27)
at Socket. (/Users/chandrakasiraju/.vscode/extensions/golang.go-0.16.1/dist/goMain.js:28089:46)
at Socket.emit (events.js:208:15)
at Pipe. (net.js:588:12)
[Info - 3:39:23 AM] 2020/08/17 03:39:23 Build info

`

the output of gopls.log which i gave in setting doesn't have any crash logs. i see logs like

`[Trace - 03:47:21.719 AM] Sending request 'textDocument/codeAction - (21)'.
Params: {"textDocument":{"uri":"file:///Users/chandrakasiraju/workspace/go/src/pathtoproject/authenticate.go"},"range":{"start":{"line":17,"character":9},"end":{"line":17,"character":9}},"context":{"diagnostics":[]}}

[Trace - 03:47:21.719 AM] Received response 'textDocument/codeAction - (21)' in 0ms.
Result: null

[Trace - 03:50:40.071 AM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2020/08/17 03:50:40 background imports cache refresh starting\n"}

[Trace - 03:50:40.461 AM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2020/08/17 03:50:40 background refresh finished after 389.893368ms\n"}`

@gopherbot
Copy link

Change https://golang.org/cl/248797 mentions this issue: internal/lsp/source: fix nil pointer in rename_check

@stamblerre
Copy link
Contributor

stamblerre commented Aug 17, 2020

Do you mind providing a full gopls log when you see the issue that causes you to reboot your computer? Instructions for capturing logs can be found here. To avoid losing the logs if your computer hangs, you can specify the -logfile flag, which will write a log to disk.

Even if you can't get the logs when your Mac hangs, they may still be useful (if something else is misconfigured in your workspace, that might be causing the issue). Also, if you know of an open-source project in which you can reproduce the issue, that would be the most helpful.

I've mailed a change to fix the nil pointer you encountered.

@stamblerre stamblerre transferred this issue from golang/vscode-go Aug 17, 2020
@stamblerre stamblerre changed the title vscode-go hangs - mac hard reboot mac is the only option x/tools/gopls: causes vscode-go hangs - mac hard reboot mac is the only option Aug 17, 2020
@gopherbot gopherbot added Tools This label describes issues relating to any tools in the x/tools repository. gopls Issues related to the Go language server, gopls. labels Aug 17, 2020
@gopherbot gopherbot added this to the Unreleased milestone Aug 17, 2020
@stamblerre stamblerre modified the milestones: Unreleased, gopls/v.0.5.0 Aug 17, 2020
@stamblerre stamblerre added the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Aug 17, 2020
@chandradeepak
Copy link
Author

chandradeepak commented Aug 17, 2020

@stamblerre thank you for getting back to me. I was able to reproduce it with https://github.com/terraform-providers/terraform-provider-aws

gopls.log

  1. at first i copied the aws directory and made a copy
  2. rename the new dir name to aws2
  3. try changing the package name to aws2 in some files
  4. at this stage I have seen some instances of background process popup in my code editor. but this didn't produce the hang
  5. now delete the vendor dir . boom it hangs again
  6. i am attaching the log i was able to capture. It happened at like 1.38 PM i guess. at 1.41 i restarted the mac.
  7. hope the helps

see the below screenshot. once it hangs we can not even move mouse or use keyboard.

IMG_20200817_133920

@heschi
Copy link
Contributor

heschi commented Aug 18, 2020

The symptoms you describe sound like your computer is running out of memory, and Terraform is a fairly large project. When you're coding, please keep an eye on Activity Monitor to see how much memory you have free.

If that's the case, installing gopls at master may help. Please try that. If you still have problems, please upload a memory debug zip. These are automatically written to the temporary directory (/tmp for Unixes) with names like gopls.1234-5GiB-withnames.zip. If you are uncomfortable sharing the package names of your code, you can share the -nonames zip instead.

@chandradeepak
Copy link
Author

chandradeepak commented Aug 18, 2020

@heschik I had plenty of memory on mac. After I rebooted I haven't opened anything yet and I got like 16 GB of RAM. This was just an example i was showing. I had a small project even with that i was able to reproduce this error. But mac running out of memory is pretty hard to reboot every time it happens. How do I collect the memory dump. Since it is an open source project I can share the dumps.

@heschi
Copy link
Contributor

heschi commented Aug 18, 2020

If your machine isn't running out of memory, then I have no idea what gopls could be doing to crash the entire computer. Sorry.

Memory debug zips are automatically written to the temporary directory (/tmp for Unixes) with names like gopls.1234-5GiB-withnames.zip.

@chandradeepak
Copy link
Author

chandradeepak commented Aug 19, 2020

hi @heschik @stamblerre
is there a chance it is a kernel bug. i saw this today when it hanged in System reports of mac

gopls version
golang.org/x/tools/gopls master
golang.org/x/tools/gopls@(devel)

First time

Date/Time: 2020-08-19 10:01:53.178893 +1000 OS Version: Mac OS X 10.13.6 (Build 17G11023) Architecture: x86_64 Report Version: 19

Command: gopls
Path: /Users/USER/*/gopls
Version: ??? (???)
Parent: Code Helper (Renderer) [21211]
Responsible: iTerm2 [2683]
PID: 21222

Event: wakeups
Action taken: none
Wakeups: 45001 wakeups over the last 37 seconds (1210 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit: 45000
Limit duration: 300s
Wakeups caused: 45001
Duration: 37.18s
Steps: 10

Hardware model: MacBookPro14,3
Active cpus: 8

Fan speed: 2165 rpm

Powerstats for: gopls [21222]
UUID: ACC6AC7F-EAD9-340E-B2A8-AD26FE5B387B
Start time: 2020-08-19 10:02:04 +1000
End time: 2020-08-19 10:02:30 +1000
Parent: Code Helper (Renderer)
Responsible: iTerm2
Microstackshots: 10 samples (100%)
Primary state: 4 samples Non-Frontmost App, Kernel mode, Effective Thread QoS Default, Requested Thread QoS Default, Override Thread QoS User Interactive
User Activity: 10 samples Idle, 0 samples Active
Power Source: 0 samples on Battery, 10 samples on AC
6 ??? [0x1067a00]
2 ??? [0x106a3ff]
2 fdopendir$INODE64 + 97 (libsystem_c.dylib) [0x7fff54decaf8]
2 __getdirentries64 + 10 (libsystem_kernel.dylib) [0x7fff54ec224e]
2 close + 10 (libsystem_kernel.dylib) [0x7fff54ec34fa]
2 __close_nocancel + 10 (libsystem_kernel.dylib) [0x7fff54ec204e]
2
2 ??? [0x11e0796]
2 ??? [0x11e0013]
2 ??? [0x17771a7]
2 ??? [0x1202930]
2 ??? [0x11fbf1a]
2 ??? [0x176663d]
2 ??? [0x176023d]
2 ??? [0x1760f5e]
2 ??? [0x1725332]
2 ??? [0x170e2f5]
2 ??? [0x13ab0bf]
2 ??? [0x13ab25d]
2 ??? [0x139ecfb]
2 ??? [0x139fc8c]
2 ??? [0x13a0871]
2 ??? [0x13a428b]
2 ??? [0x12fdf6e]
2 ??? [0x12fe407]
2 ??? [0x12fe98e]
2 ??? [0x12fef19]
2 ??? [0x12ff800]
2 ??? [0x12e70bd]
2 ??? [0x12e6a94]
2 <User mode, Override Thread QoS Unspecified>
2 thread_start + 13 (libsystem_pthread.dylib) [0x7fff55089bf9]
2 _pthread_start + 377 (libsystem_pthread.dylib) [0x7fff5508a50d]
2 _pthread_body + 340 (libsystem_pthread.dylib) [0x7fff5508a661]
2 ??? [0x10019ec]
2 ??? [0x103aa46]
2 ??? [0x103ab23]
2 ??? [0x1042e58]
2 ??? [0x10433ef]
2 ??? [0x10435b2]
2 ??? [0x1055671]
2 ??? [0x1067a3d]
2 ??? [0x106a330]
2 __pthread_kill + 10 (libsystem_kernel.dylib) [0x7fff54ec2b66]
2

Binary Images:
0xbd3b000 - 0xbd85adf dyld (551.5) /usr/lib/dyld
0x7fff54dc1000 - 0x7fff54e4aff7 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib
0x7fff54ea6000 - 0x7fff54eccff7 libsystem_kernel.dylib (4570.71.69) <6659240B-7798-3AF5-8E0E-970369889449> /usr/lib/system/libsystem_kernel.dylib
0x7fff55087000 - 0x7fff55092fff libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib

Second time

Date/Time: 2020-08-19 09:26:43.370766 +1000 OS Version: Mac OS X 10.13.6 (Build 17G11023) Architecture: x86_64 Report Version: 19

Command: gopls
Path: /Users/USER/*/gopls
Version: ??? (???)
Parent: Code Helper (Renderer) [13579]
Responsible: iTerm2 [2683]
PID: 13590

Event: wakeups
Action taken: none
Wakeups: 45001 wakeups over the last 171 seconds (263 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit: 45000
Limit duration: 300s
Wakeups caused: 45001
Duration: 171.22s
Steps: 8

Hardware model: MacBookPro14,3
Active cpus: 8

Fan speed: 2160 rpm

Powerstats for: gopls [13590]
UUID: ACC6AC7F-EAD9-340E-B2A8-AD26FE5B387B
Start time: 2020-08-19 09:26:45 +1000
End time: 2020-08-19 09:29:30 +1000
Parent: Code Helper (Renderer)
Responsible: iTerm2
Microstackshots: 8 samples (100%)
Primary state: 7 samples Non-Frontmost App, Kernel mode, Effective Thread QoS Default, Requested Thread QoS Default, Override Thread QoS Unspecified
User Activity: 8 samples Idle, 0 samples Active
Power Source: 0 samples on Battery, 8 samples on AC
3 ??? [0x1067a00]
1 read + 10 (libsystem_kernel.dylib) [0x7fff54ec4142]
1 __openat + 10 (libsystem_kernel.dylib) [0x7fff54ec28c2]
1 ??? [0x106a35f]
1 readdir_r$INODE64 + 67 (libsystem_c.dylib) [0x7fff54ded57d]
1 __getdirentries64 + 10 (libsystem_kernel.dylib) [0x7fff54ec224e]
2 ??? [0x106619b]
2 ??? [0x103e5bd]
2 ??? [0x103e03c]
1 ??? [0x103d4fd]
1 ??? [0x103bee0]
1 ??? [0x100cde0]
1 ??? [0x10329b5]
1 ??? [0x1055f39]
1 ??? [0x1067a3d]
1 ??? [0x106a2c0]
1 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff54ec2a16]
1 ??? [0x103d21b]
1 ??? [0x103258e]
1 ??? [0x1055da9]
1 ??? [0x1067a3d]
1 kevent + 10 (libsystem_kernel.dylib) [0x7fff54ec3bea]
1 <Requested Thread QoS User Interactive, Override Thread QoS Default>
1 ??? [0x1702078]
1 ??? [0x1738eed]
1 ??? [0x1719bea]
1 ??? [0x1213f26]
1 ??? [0x12256c0]
1 ??? [0x122516d]
1 ??? [0x1224a26]
1 ??? [0x1226888]
1 ??? [0x1224304]
1 ??? [0x1217892]
1 ??? [0x1217492]
1 ??? [0x121ebd5]
1 ??? [0x121e7fa]
1 ??? [0x121e5a5]
1 ??? [0x121e0b4]
1 ??? [0x121d50f]
1 ??? [0x121d2bf]
1 _sigunaltstack + 24 (libsystem_platform.dylib) [0x7fff55080f40]
1 ??? [0x1066226]
1 ??? [0x103f6f0]
1 ??? [0x103c483]
1 ??? [0x103c073]
1 ??? [0x100ccd9]
1 ??? [0x1032b2c]
1 ??? [0x1055fd9]
1 ??? [0x1067a3d]
1 ??? [0x106a2fc]
1 __psynch_cvsignal + 10 (libsystem_kernel.dylib) [0x7fff54ec29fe]
1 thread_start + 13 (libsystem_pthread.dylib) [0x7fff55089bf9]
1 _pthread_start + 377 (libsystem_pthread.dylib) [0x7fff5508a50d]
1 _pthread_body + 340 (libsystem_pthread.dylib) [0x7fff5508a661]
1 ??? [0x10019ec]
1 ??? [0x103aa46]
1 ??? [0x103ab23]
1 ??? [0x1042dad]
1 ??? [0x1055961]
1 ??? [0x1067a3d]
1 ??? [0x106a0cb]
1 usleep + 53 (libsystem_c.dylib) [0x7fff54e3d618]
1 __semwait_signal + 10 (libsystem_kernel.dylib) [0x7fff54ec2d82]

Binary Images:
0xdaee000 - 0xdb38adf dyld (551.5) /usr/lib/dyld
0x7fff54dc1000 - 0x7fff54e4aff7 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib
0x7fff54ea6000 - 0x7fff54eccff7 libsystem_kernel.dylib (4570.71.69) <6659240B-7798-3AF5-8E0E-970369889449> /usr/lib/system/libsystem_kernel.dylib
0x7fff5507f000 - 0x7fff55086ff7 libsystem_platform.dylib (161.50.1) <6355EE2D-5456-3CA8-A227-B96E8F1E2AF8> /usr/lib/system/libsystem_platform.dylib
0x7fff55087000 - 0x7fff55092fff libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib

mds stores

Date/Time: 2020-08-19 10:13:06.322032 +1000
OS Version: Mac OS X 10.13.6 (Build 17G11023)
Architecture: x86_64
Report Version: 19

Command: mds
Path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Support/mds
Version: ??? (???)
Bundle Id: com.apple.Spotlight
PID: 70
Coalition ID: 61
Wall Time Alive: 230
Footprint: 0MB
Limit: 100
Process Flags: Active

Event: memory high watermark
Action taken: none -- this exception is advisory
Duration: 229.92s
Steps: 0

Hardware model: MacBookPro14,3
Active cpus: 8

Signature: app-specific tag 2,MALLOC_LARGE_REUSED,MALLOC_LARGE,MALLOC_TINY,MALLOC_SMALL
MallocStack Sig:

Section: footprint --summary

==========================================================================================
mds [70] (corpse): 64-bit Footprint: 128 MB (4096 bytes per page)

  Dirty     (Swapped)         Clean   Reclaimable       (Wired)    Regions    Category
    ---           ---           ---           ---           ---        ---    ---
  50 MB           0 B           0 B           0 B           0 B         42    app-specific tag 2
  20 MB           0 B           0 B        248 KB           0 B          2    MALLOC_LARGE_REUSED
  15 MB           0 B           0 B           0 B           0 B         24    MALLOC_LARGE
  13 MB           0 B           0 B        804 KB           0 B         39    MALLOC_TINY
  13 MB           0 B           0 B           0 B           0 B         24    MALLOC_SMALL
  12 MB           0 B           0 B         21 MB           0 B          4    MALLOC_LARGE_REUSABLE
1820 KB           0 B       9376 KB           0 B           0 B         76    untagged ("VM_ALLOCATE")
 864 KB           0 B           0 B           0 B           0 B         94    malloc metadata
 640 KB           0 B           0 B           0 B           0 B         98    app-specific tag 1
 528 KB           0 B           0 B           0 B           0 B         11    stack
 128 KB           0 B           0 B           0 B           0 B          1    libdispatch
  24 KB           0 B           0 B           0 B           0 B          1    Activity Tracing
 8192 B           0 B           0 B           0 B           0 B          1    os_alloc_once
1328 KB           0 B       8248 KB           0 B           0 B        965    Other
    ---           ---           ---           ---           ---        ---    ---
 128 MB           0 B         17 MB         22 MB           0 B       1382    TOTAL

Powerstats for: mds [70]
UUID: EE869F8B-86D2-34A3-AA20-8E0F5772A794
Start time: 2020-08-19 10:14:36 +1000
End time: 2020-08-19 10:16:56 +1000
Parent: launchd
Microstackshots: 16 samples
Primary state: 10 samples Non-Frontmost App, Kernel mode, Effective Thread QoS Background, Requested Thread QoS Background, Override Thread QoS Unspecified
User Activity: 0 samples Idle, 16 samples Active
Power Source: 0 samples on Battery, 16 samples on AC
10 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff7b06bbe9]
10 _pthread_wqthread + 980 (libsystem_pthread.dylib) [0x7fff7b06bfd2]
10 _dispatch_workloop_worker_thread + 880 (libdispatch.dylib) [0x7fff7ad33d21]
10 _dispatch_root_queue_drain_deferred_wlh + 332 (libdispatch.dylib) [0x7fff7ad2ff0d]
10 _dispatch_queue_invoke + 373 (libdispatch.dylib) [0x7fff7ad22166]
7 _dispatch_queue_serial_drain + 635 (libdispatch.dylib) [0x7fff7ad2f217]
7 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff7ad1adb8]
5 mds_dispatch_wrapper + 14 (SpotlightServerKit) [0x7fff75876038]
5 mds_dispatch_nocopy_wrapper + 92 (SpotlightServerKit) [0x7fff75875db8]
5 ??? (mds + 1005071) [0x10b26b60f]
5 ??? (mds + 360899) [0x10b1ce1c3]
3 ??? (mds + 354797) [0x10b1cc9ed]
3 ??? (mds + 470655) [0x10b1e8e7f]
3 MDPlistBytesCopyPlistAtIndexWithCallbacksAndAllocator + 952 (Metadata) [0x7fff5445e948]
3 copyObject + 2470 (Metadata) [0x7fff5445f596]
3 copyDictionary + 266 (Metadata) [0x7fff5446054a]
3 copyObject + 1433 (Metadata) [0x7fff5445f189]
3 copyString + 179 (Metadata) [0x7fff544b6ea3]
3 CFStringCreateWithBytes + 29 (CoreFoundation) [0x7fff52da2f3d]
1 __CFStringCreateImmutableFunnel3 + 2901 (CoreFoundation) [0x7fff52d95175]
1 __CFSearchStringROM + 99 (CoreFoundation) [0x7fff52d95663]
1
1 __CFStringCreateImmutableFunnel3 + 3073 (CoreFoundation) [0x7fff52d95221]
1 _CFRuntimeCreateInstance + 353 (CoreFoundation) [0x7fff52d92331]
1 _platform_bzero$VARIANT$Haswell + 41 (libsystem_platform.dylib) [0x7fff7b066c69]
1 __CFStringCreateImmutableFunnel3 + 660 (CoreFoundation) [0x7fff52d948b4]
1 __CFStringDecodeByteStream3 + 3620 (CoreFoundation) [0x7fff52dba084]
1 _platform_memmove$VARIANT$Haswell + 41 (libsystem_platform.dylib) [0x7fff7b065f49]
2 ??? (mds + 354385) [0x10b1cc851]
1 ??? (mds + 471497) [0x10b1e91c9]
1 MDPlistBytesAppendPlistBytes + 166 (Metadata) [0x7fff544b4b76]
1 _MDPlistBytesGrowCapacity + 401 (Metadata) [0x7fff5446d891]
1 _platform_memmove$VARIANT$Haswell + 41 (libsystem_platform.dylib) [0x7fff7b065f49]
1 ??? (mds + 471696) [0x10b1e9290]
1 _os_log_error_impl + 87 (libsystem_trace.dylib) [0x7fff7b090c1b]
1 _os_log_impl_flatten_and_send + 4909 (libsystem_trace.dylib) [0x7fff7b091f67]
1 _os_log_impl_stream + 301 (libsystem_trace.dylib) [0x7fff7b092c36]
1 _os_activity_stream_reflect + 534 (libsystem_trace.dylib) [0x7fff7b08625e]
1 dispatch_block_perform + 109 (libdispatch.dylib) [0x7fff7ad2d1e1]
1 _dispatch_block_invoke_direct + 317 (libdispatch.dylib) [0x7fff7ad2d33e]
1 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff7ad1adb8]
1 ___os_activity_stream_reflect_block_invoke + 29 (libsystem_trace.dylib) [0x7fff7b08675e]
1 xpc_pipe_simpleroutine + 44 (libxpc.dylib) [0x7fff7b0ab1d6]
1 _xpc_pipe_simpleroutine + 79 (libxpc.dylib) [0x7fff7b0ab250]
1 _xpc_send_serializer + 99 (libxpc.dylib) [0x7fff7b0ab366]
1 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff7ae9b1fa]
1 _Block_release + 111 (libsystem_blocks.dylib) [0x7fff7ada299d]
1 ??? (mds + 469762) [0x10b1e8b02]
1 _CFRelease + 284 (CoreFoundation) [0x7fff52eed89c]
1 __MDStoreOIDArrayFinalize + 19 (Metadata) [0x7fff5446068d]
1 defaultDeallocator_block_invoke + 32 (Metadata) [0x7fff544b8902]
1 __munmap + 10 (libsystem_kernel.dylib) [0x7fff7aea478a]
1 mds_dispatch_cancelable_wrapper + 14 (SpotlightServerKit) [0x7fff75875ff3]
1 mds_dispatch_nocopy_cancelable_wrapper + 125 (SpotlightServerKit) [0x7fff75875c5e]
1 ??? (mds + 317000) [0x10b1c3648]
1 ??? (mds + 1420980) [0x10b2d0eb4]
1 ??? (mds + 1421152) [0x10b2d0f60]
1 _CFRuntimeCreateInstance + 596 (CoreFoundation) [0x7fff52d92424]
1
3 _dispatch_queue_serial_drain + 222 (libdispatch.dylib) [0x7fff7ad2f07a]
3 _dispatch_queue_invoke + 373 (libdispatch.dylib) [0x7fff7ad22166]
3 _dispatch_queue_serial_drain + 635 (libdispatch.dylib) [0x7fff7ad2f217]
3 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff7ad1adb8]
3 _dispatch_block_async_invoke2 + 102 (libdispatch.dylib) [0x7fff7ad30e0e]
3 ??? (mds + 370079) [0x10b1d059f]
1 listxattr + 10 (libsystem_kernel.dylib) [0x7fff7aea5cc2]
1 <Effective Thread QoS Maintenance, Requested Thread QoS Maintenance>
1 ??? (mds + 600560) [0x10b2089f0]
1 CFURLCopyResourcePropertyForKey + 283 (CoreFoundation) [0x7fff52df91ab]
1 _FSURLCopyResourcePropertyForKeyInternal(__CFURL const*, __CFString const*, void*, void*, __CFError**, unsigned char) + 214 (CoreServicesInternal) [0x7fff668abbab]
1 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 312 (CoreServicesInternal) [0x7fff668ae39e]
1 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 598 (LaunchServices) [0x7fff542a3beb]
1 prepareLocalizedTypeDescriptionDictionaryValue(_LSOnDemandContext&, FSNode*, __FileCache*, __CFString const*, NSError* __autoreleasing*) + 72 (LaunchServices) [0x7fff543aac3c]
1 getAttributeValueForKey(_LSOnDemandContext&, FSNode*, __FileCache*, __CFString const*, objc_object* __autoreleasing*, NSError* __autoreleasing*) + 279 (LaunchServices) [0x7fff543ace1c]
1 _LSFindBundleAndCopyNodeAttributes + 189 (LaunchServices) [0x7fff542ab33d]
1 _LSCopyNodeAttributes + 298 (LaunchServices) [0x7fff542ab544]
1 _LSCopyNodeAttributeWithState(LSNodeAttributeStateCache*, __CFString const*) + 72 (LaunchServices) [0x7fff542a78e4]
1 _LSCopyNodeAttribute_DisplayKindLocalizationDictionary(LSNodeAttributeStateCache*) + 447 (LaunchServices) [0x7fff542b7aed]
1 _LSBundleCopyStringDictionaryForKey + 91 (LaunchServices) [0x7fff542b8728]
1 -[_LSStringLocalizer localizedStringDictionaryWithString:defaultValue:] + 458 (LaunchServices) [0x7fff543281e7]
1 -[_LSStringLocalizer(Private) localizedStringWithString:inBundle:localeCode:keep:] + 107 (LaunchServices) [0x7fff5432a009]
1 -[_LSStringLocalizer(Private) stringsFileContentInBundle:withLocaleCode:keep:] + 247 (LaunchServices) [0x7fff543295c1]
1 _LSLazyLoadObjectForKey + 420 (LaunchServices) [0x7fff542fb7df]
1 _dispatch_queue_barrier_sync_invoke_and_complete + 60 (libdispatch.dylib) [0x7fff7ad2e1e1]
1 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff7ad1adb8]
1 ___LSLazyLoadObjectForKey_block_invoke.76 + 56 (LaunchServices) [0x7fff542fbd4c]
1 __78-[_LSStringLocalizer(Private) stringsFileContentInBundle:withLocaleCode:keep:]_block_invoke + 311 (LaunchServices) [0x7fff54329877]
1 +[NSDictionary(NSDictionary) dictionaryWithContentsOfURL:] + 45 (Foundation) [0x7fff54f21809]
1 +[NSDictionary(NSDictionary) newWithContentsOf:immutable:] + 158 (Foundation) [0x7fff54f083e4]
1 +[NSPropertyListSerialization propertyListWithData:options:format:error:] + 94 (Foundation) [0x7fff54f0889b]
1 CFPropertyListCreateWithData + 80 (CoreFoundation) [0x7fff52db1da0]
1 _CFPropertyListCreateWithData + 190 (CoreFoundation) [0x7fff52db1f0e]
1 __CFTryParseBinaryPlist + 187 (CoreFoundation) [0x7fff52db264b]
1 __CFBinaryPlistCreateObjectFiltered + 7719 (CoreFoundation) [0x7fff52dcd907]
1 __CFBinaryPlistCreateObjectFiltered + 1798 (CoreFoundation) [0x7fff52dcc1e6]
1 CFStringCreateWithBytes + 29 (CoreFoundation) [0x7fff52da2f3d]
1 __CFStringCreateImmutableFunnel3 + 3073 (CoreFoundation) [0x7fff52d95221]
1 _CFRuntimeCreateInstance + 284 (CoreFoundation) [0x7fff52d922ec]
1 malloc_zone_malloc + 103 (libsystem_malloc.dylib) [0x7fff7aefd241]
1 szone_malloc_should_clear + 422 (libsystem_malloc.dylib) [0x7fff7aefd443]
1 tiny_malloc_from_free_list + 504 (libsystem_malloc.dylib) [0x7fff7aefe40f]
1 <User mode, Effective Thread QoS Maintenance, Requested Thread QoS Maintenance>
1 ??? (mds + 598174) [0x10b20809e]
1 CFURLCopyResourcePropertiesForKeys + 275 (CoreFoundation) [0x7fff52e264f3]
1 _FSURLCopyResourcePropertiesForKeysInternal(__CFURL const*, __CFArray const*, void*, __CFError**, unsigned char) + 1042 (CoreServicesInternal) [0x7fff668b6571]
1 prepareValuesForBitmap(__CFURL const*, __FileCache*, _FilePropertyBitmap*, __CFError**) + 312 (CoreServicesInternal) [0x7fff668ae39e]
1 LSPropertyProviderPrepareValues(__CFURL const*, __FileCache*, __CFString const* const*, void const**, long, void const*, __CFError**) + 598 (LaunchServices) [0x7fff542a3beb]
1 prepareLocalizedNameDictionaryValue(_LSOnDemandContext&, FSNode*, __FileCache*, __CFString const*, NSError* __autoreleasing*) + 80 (LaunchServices) [0x7fff543aa274]
1 +[_LSDisplayNameConstructor(ConstructForAnyFile) displayNameConstructorsWithContext:node:error:] + 823 (LaunchServices) [0x7fff542e0640]
1 FSNodeCopyChild + 314 (LaunchServices) [0x7fff542b9ae2]
1 invocation function for block in int FSNODE_BRIDGE_TO_CF<FSNodeStruct, NSString*, unsigned int>(FSNodeStruct*, objc_selector*, FSNodeStruct**, NSString*, unsigned int) + 37 (LaunchServices) [0x7fff542f4b38]
1 -[FSNode(RelatedNodes) childNodeWithRelativePath:flags:error:] + 193 (LaunchServices) [0x7fff542eeb47]
1 +[NSURL(NSURL) fileURLWithPath:isDirectory:] + 54 (Foundation) [0x7fff54f0cb6f]
1 -[NSURL(NSURL) initFileURLWithPath:isDirectory:] + 422 (Foundation) [0x7fff54f0cdc9]
1 _CFURLCreateWithFileSystemPath + 220 (CoreFoundation) [0x7fff52d9e26c]
1 POSIXPathToURLPath + 144 (CoreFoundation) [0x7fff52f10480]
1 CFStringGetFileSystemRepresentation + 11 (CoreFoundation) [0x7fff52da2b3b]
1 _CFStringGetFileSystemRepresentationWithErrorStatus + 560 (CoreFoundation) [0x7fff52f07690]
1 CFUniCharDecomposeWithErrorLocation + 1026 (CoreFoundation) [0x7fff52f13e42]
1 <User mode, Effective Thread QoS Maintenance, Requested Thread QoS Maintenance>
5 _pthread_workqueue_addthreads + 69 (libsystem_pthread.dylib) [0x7fff7b06bbdc]
1 thread_start + 13 (libsystem_pthread.dylib) [0x7fff7b06bbf9]
1 _pthread_start + 377 (libsystem_pthread.dylib) [0x7fff7b06c50d]
1 _pthread_body + 340 (libsystem_pthread.dylib) [0x7fff7b06c661]
1 ??? (mds + 21588) [0x10b17b454]
1 time + 53 (libsystem_c.dylib) [0x7fff7add1975]
1 DYLD-STUB$$__chmod_extended + 6 (libsystem_c.dylib) [0x7fff7ae251b4]
1 <User mode, Effective Thread QoS Unspecified, Requested Thread QoS Unspecified>

Binary Images:
0x10b176000 - 0x10b326ff7 mds (1191.7) /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Support/mds
0x7fff52d8f000 - 0x7fff53232fef com.apple.CoreFoundation 6.9 (1455.12) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff54296000 - 0x7fff54454ff7 com.apple.LaunchServices 822.37 (822.37) <6AA93307-220A-3417-BBC2-FE1C0DE0B652> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff54455000 - 0x7fff54505fff com.apple.Metadata 10.7.0 (1191.7) <3DD530A7-E104-3469-98BB-20449834B2FE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff54ef3000 - 0x7fff552baffb com.apple.Foundation 6.9 (1455.12) <3B5567E0-775C-36D2-8052-DA42CA319EEA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff668ab000 - 0x7fff668dcff3 com.apple.CoreServicesInternal 309.1 (309.1) <4ECD14EA-A493-3B84-A32F-CF928474A405> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff7586d000 - 0x7fff7587cfff com.apple.metadata.SpotlightServerKit 1.0 (1191.7) <4C46EA7F-5EEE-3355-A850-57347EC214AC> /System/Library/PrivateFrameworks/SpotlightServerKit.framework/Versions/A/SpotlightServerKit
0x7fff7ad19000 - 0x7fff7ad52ff7 libdispatch.dylib (913.60.3) /usr/lib/system/libdispatch.dylib
0x7fff7ada2000 - 0x7fff7ada2fff libsystem_blocks.dylib (67) <17303FDF-0D2D-3963-B05E-B4DF63052D47> /usr/lib/system/libsystem_blocks.dylib
0x7fff7ada3000 - 0x7fff7ae2cff7 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib
0x7fff7ae88000 - 0x7fff7aeaeff7 libsystem_kernel.dylib (4570.71.69) <6659240B-7798-3AF5-8E0E-970369889449> /usr/lib/system/libsystem_kernel.dylib
0x7fff7aefb000 - 0x7fff7af1aff7 libsystem_malloc.dylib (140.50.7) /usr/lib/system/libsystem_malloc.dylib
0x7fff7b061000 - 0x7fff7b068ff7 libsystem_platform.dylib (161.50.1) <6355EE2D-5456-3CA8-A227-B96E8F1E2AF8> /usr/lib/system/libsystem_platform.dylib
0x7fff7b069000 - 0x7fff7b074fff libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib
0x7fff7b083000 - 0x7fff7b097ff7 libsystem_trace.dylib (829.70.2) /usr/lib/system/libsystem_trace.dylib
0x7fff7b09f000 - 0x7fff7b0ccfff libxpc.dylib (1205.70.15) /usr/lib/system/libxpc.dylib

disk writes

Date/Time: 2021-05-08 00:00:00 +1000
OS Version: Mac OS X 10.13.6 (Build 17G11023)
Architecture: x86_64
Report Version: 19

Event: disk writes
Signature: com.apple.SystemStats.Daily.IO
Action taken: none
Start time: 2021-05-08 00:00:00 +1000
End time: 2021-05-09 00:00:00 +1000
Duration: 86400s
Steps: 2623 (10.5 MB/step)

Hardware model: MacBookPro14,3
Active cpus: 8

Binary Images:
1 <00F0D861-5764-3BEF-82FC-A8E88BA66857>
2 <013F5A40-E34E-3556-81F2-682C58A58CBD>
3 <051AC003-09E5-3BF7-BAE5-1106E6ED5E0D>
4 <0603592A-72B0-34C3-A09B-9338D48559DD>
5 com.apple.IMDPersistence 10.0 (1000) <0BACA926-2053-3869-8511-FC67C130A25B> /System/Library/PrivateFrameworks/IMDPersistence.framework/Versions/A/IMDPersistence
6 <0C52FC8B-CB03-3012-8668-650BA40695BD>
7 libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib
8 libstdc++.6.0.9.dylib (104.1) <0EA35E7E-B536-3628-B462-A4098805CEAC> /usr/lib/libstdc++.6.dylib
9 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib
10 <133B74CB-416E-321F-BC73-5670457063C2>
11 <140CBBAC-7893-3530-9013-BD031830B9A2>
12 com.apple.security 7.0 (58286.70.15) <1481D55E-75C7-304D-AA12-D18A5197E508> /System/Library/Frameworks/Security.framework/Versions/A/Security
13 <150AABEC-EC13-355E-9733-94A7574EA8B2>
14 <18D77B79-045A-368A-93C6-1A1293B18C22>
15 <1AB7FE16-449F-3B00-BB19-BC0F9190FEC3>
16 <1E437184-4B96-3015-B9F0-9D165FAA0E7B>
17 <1EF26612-E354-35EA-8257-00A62A8AACA5>
18 <2380897D-4F00-38F3-9885-4F560C262CEB>
19 <28F1B2EC-A854-39F7-BA4F-FBF961E4039A>
20 <2AF25FA9-6046-3DF5-9008-A72CB8181352>
21 com.apple.CFNetwork 902.5 (902.5) <2D37E75A-42FD-3CDE-BAE3-D4228EF813F0> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
22 <2FC41B76-C8FB-38BF-A832-DFDA9C02C0B2>
23 <3009E7C8-E159-3C45-ADC1-889BF630DB11>
24 <3650AB5E-26FD-3F83-83C8-7590AC5D5DF1>
25 com.apple.SiriCore 1.0 (1) <373BFB7C-6B5F-37A8-8E29-E8320DA56347> /System/Library/PrivateFrameworks/SiriCore.framework/Versions/A/SiriCore
26 <37CB4DFA-005D-3845-8EF3-68E13E083865>
27 com.apple.Foundation 6.9 (1455.12) <3B5567E0-775C-36D2-8052-DA42CA319EEA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
28 com.apple.Metadata 10.7.0 (1191.7) <3DD530A7-E104-3469-98BB-20449834B2FE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
29 <430A70DD-15C1-35FA-93F5-9E674245B5BE>
30 <4587A34C-6090-350F-92EB-5727FE3661EC>
31 <46D9319F-6D6C-3951-85C8-7911587A730A>
32 libdyld.dylib (551.5) <49BF9E96-8297-30CF-8AA6-128CC14054B2> /usr/lib/system/libdyld.dylib
33 com.apple.apd.Tourist 1.1 (1.0.52) <4B6367E4-59CF-3664-B0AD-098DE27458D2> /System/Library/PrivateFrameworks/Tourist.framework/Versions/A/Tourist
34 com.apple.metadata.SpotlightServerKit 1.0 (1191.7) <4C46EA7F-5EEE-3355-A850-57347EC214AC> /System/Library/PrivateFrameworks/SpotlightServerKit.framework/Versions/A/SpotlightServerKit
35 <4FADE3C3-AE8B-3CF3-BA1E-B9C3A0842CA8>
36 <59AB5E94-6215-35A2-B664-004A65423E9E>
37 <59C89709-9F15-3173-8B59-AAB058572746>
38 <602224DB-C61D-320F-9FA7-35E6A9D043A8>
39 <627AEB1E-CAD5-3F99-9144-AB34CB64D809>
40 libsystem_platform.dylib (161.50.1) <6355EE2D-5456-3CA8-A227-B96E8F1E2AF8> /usr/lib/system/libsystem_platform.dylib
41 <6454BB7B-604B-3DBF-A411-BFCB843922F2>
42 libsystem_kernel.dylib (4570.71.69) <6659240B-7798-3AF5-8E0E-970369889449> /usr/lib/system/libsystem_kernel.dylib
43 <67DD72F8-A08C-3E52-B6D7-DC775C394455>
44 com.apple.AE 735.2 (735.2) <690A6F47-1306-371F-B257-783D8F83EA9E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
45 <6B4AFBC2-AD14-3788-8BB5-F5CD50B38E98>
46 <6B682EF3-C158-3022-AE74-246DA59F580F>
47 <6D33AF6C-2C38-3269-A5E1-ACEF85B7F0C5>
48 <715B9E3F-42B2-3DD3-887B-E9DC77F0D019>
49 <7B31912C-68DF-33BD-B48C-DFBC8EAE0A71>
50 <7B834838-017C-3794-8A9C-9106C5D84CB8>
51 <7C996A92-4307-31E4-A4FC-D95D9CBF3645>
52 libc++.1.dylib (400.9) <7D3DACCC-3804-393C-ABC1-1A580FD00CB6> /usr/lib/libc++.1.dylib
53 com.apple.QuickLookFramework 5.0 (743.13) <8254FFF2-EE0D-323D-A6F3-BEB59615EE47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
54 <88E4DE3A-E2EE-3780-A1C1-92CD5C1B10CD>
55 <8DCE0EFC-B93D-35C2-80E1-F90D5A282E67>
56 <920DBC7A-D0A5-3506-8BD5-E77AD40C5511>
57 <95A3AB36-07CE-3E41-8F44-1359F6FFFA56>
58 com.apple.GeoServices 1.0 (1363.24.8.15.58) <9686AD86-FE07-3604-B91C-D372FF641E8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
59 <988356E5-0B57-35C0-A534-CAB9255C8865>
60 <9BB7D13A-A3D1-3A6F-BF57-641796CEF35A>
61
62 com.apple.SkyLight 1.600.0 /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
63
64
65
66
67
68
69
70
71
72
73 libdispatch.dylib (913.60.3) /usr/lib/system/libdispatch.dylib
74 com.apple.HIToolbox 2.1.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
75
76
77
78
79
80
81 com.apple.CoreSDB 10.0 (1000) /System/Library/PrivateFrameworks/CoreSDB.framework/Versions/A/CoreSDB
82
83
84 com.apple.CoreFoundation 6.9 (1455.12) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
85 com.apple.AppKit 6.9 (1561.61.100) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
86
87
88
89 libxpc.dylib (1205.70.15) /usr/lib/system/libxpc.dylib
90
91
92
93 libsqlite3.dylib /usr/lib/libsqlite3.dylib
94 com.apple.spotlight.index 10.7.0 (1191.7) /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex

Powerstats for: mds_stores
UUID: 20
Microstackshots: 1386 samples
Primary state: 379 samples state 0x15294
0 1386 7 + 11241
1 1386 7 + 12242
2 1386 73 + 109857
3 1386 73 + 93965
4 1386 73 + 37222
5 1386 73 + 90234
6 1380 73 + 37222
7 1380 73 + 90234
8 1380 73 + 37222
9 1380 73 + 90647
10 1380 73 + 7608
11 1377 73 + 97806
12 1377 94 + 99176
13 1377 94 + 102493
14 1004 94 + 492645
15 1004 94 + 608867
16 1004 94 + 453362
17 991 94 + 612536
18 991 94 + 454557
19 990 94 + 454930
20 584 94 + 467569
21 579 94 + 1368473
22 543 94 + 481175
23 540 94 + 1373410
24 102 40 + 20563
25 36 <state 0x14a90>
25 30 <state 0x14990>
25 22 <state 0x14a94>
24 84 40 + 20559
25 34 <state 0x14990>
25 21 <state 0x14a90>
25 16 <state 0x14a94>
24 61 40 + 20454
25 22 <state 0x14990>
25 19 <state 0x14a90>
25 8 <state 0x14a94>
24 50 40 + 20297
25 21 <state 0x14990>
25 10 <state 0x14a90>
25 6 <state 0x14a94>
24 37 40 + 20397
25 16 <state 0x14990>
25 10 <state 0x14a94>
25 6 <state 0x14a90>
24 33 40 + 20469
25 13 <state 0x14a90>
25 9 <state 0x14a94>
25 5 <state 0x14990>
24 33 40 + 20432
25 12 <state 0x14990>
25 9 <state 0x14a90>
25 2 <state 0x14a94>
24 29 40 + 20349
25 10 <state 0x14990>
25 9 <state 0x14a90>
25 2 <state 0x14a94>
24 21 40 + 20405
25 7 <state 0x14a94>
25 4 <state 0x14a90>
25 4 <state 0x14990>
24 19 40 + 20659
25 9 <state 0x14a90>
25 6 <state 0x14990>
25 2 <state 0x14a94>
24 16 40 + 20435
25 9 <state 0x14a90>
25 4 <state 0x14a94>
25 2 <state 0x14990>
24 13 40 + 20524
25 5 <state 0x14a90>
25 5 <state 0x14990>
25 1 <state 0x14a94>
24 11 40 + 20678
25 6 <state 0x14a90>
25 1 <state 0x14990>
25 1 <state 0x14a94>
24 11 40 + 20668
25 7 <state 0x14990>
25 2 <state 0x14a90>
25 2 <state 0x14a94>
24 7 40 + 20651
25 3 <state 0x14a94>
25 2 <state 0x14a90>
25 2 <state 0x14990>
24 6 40 + 20612
25 2 <state 0x14990>
25 2 <state 0x14a94>
24 4 40 + 20371
25 3 <state 0x14a90>
25 1 <state 0x14a94>
24 3 40 + 20608
25 2 <state 0x14990>
25 1 <state 0x14a90>
23 3 94 + 1373721
24 2 40 + 20454
25 1 <state 0x14a90>
25 1 <state 0x14a94>
24 1 40 + 20349
25 1 <state 0x14a94>
22 36 94 + 480947
23 34 94 + 1373410
24 28 40 + 20297
25 14 <state 0x14990>
25 5 <state 0x14a90>
25 3 <state 0x14a94>
24 4 40 + 20563
25 2 <state 0x14a90>
25 2 <state 0x14a94>
24 2 40 + 20559
25 1 <state 0x14a90>
23 2 94 + 1373456
24 2 40 + 20297
25 2 <state 0x14990>
21 5 94 + 1367829
22 5 94 + 481175
23 5 94 + 1373410
24 2 40 + 20397
24 1 40 + 20524
25 1 <state 0x14a90>
24 1 40 + 20454
25 1 <state 0x14990>
24 1 40 + 20469
25 1 <state 0x14990>
20 171 94 + 457856
21 171 94 + 1360881
22 171 94 + 1364851
23 171 42 + 123154
24 73 <state 0x14990>
24 42 <state 0x14a90>
24 21 <state 0x14a94>
24 2 <state 0x15290>
20 107 94 + 470522
21 107 94 + 1360881
22 107 94 + 1371215
23 68 94 + 924751
24 68 94 + 290104
25 48 94 + 290976
26 45 94 + 341546
27 41 94 + 341546
28 29 94 + 341546
29 14 94 + 341546
30 10 94 + 343068
31 10 94 + 448386
32 5 <state 0x14990>
32 2 <state 0x14a90>
32 2 <state 0x14a94>
30 2 94 + 341441
31 2 94 + 329556
32 2 <state 0x14a90>
30 2 94 + 341546
31 2 94 + 341546
32 2 94 + 341546
33 1 94 + 341546
34 1 94 + 342604
35 1 94 + 917152
36 1 <state 0x14a90>
33 1 94 + 343068
34 1 94 + 448386
35 1 <state 0x14a94>
29 12 94 + 343068
30 12 94 + 448386
31 6 <state 0x14a90>
31 4 <state 0x14990>
29 2 94 + 341500
30 2 94 + 343068
31 2 94 + 448386
29 1 94 + 344151
30 1 <state 0x14a90>
28 10 94 + 343068
29 10 94 + 448386
30 6 <state 0x14a94>
30 3 <state 0x14990>
28 2 94 + 344151
27 2 94 + 344151
28 1 <state 0x14a90>
27 1 94 + 341341
28 1 94 + 290773
29 1 94 + 448386
30 1 <state 0x14990>
27 1 94 + 343068
28 1 94 + 448386
29 1 <state 0x14990>
26 3 94 + 341341
27 2 94 + 290976
28 1 94 + 343068
29 1 94 + 448386
30 1 <state 0x14990>
28 1 94 + 341546
29 1 94 + 341546
30 1 94 + 341546
31 1 94 + 341546
32 1 94 + 343068
33 1 94 + 448386
27 1 94 + 290773
28 1 94 + 448386
29 1 <state 0x14a94>
25 20 94 + 290671
26 17 94 + 290976
27 14 94 + 341546
28 11 94 + 341546
29 9 94 + 341546
30 5 94 + 343068
31 5 94 + 448386
32 3 <state 0x14990>
32 2 <state 0x14a90>
30 2 94 + 341546
31 2 94 + 343068
32 2 94 + 448386
33 2 <state 0x14990>
30 2 94 + 341441
31 2 94 + 329556
32 1 <state 0x14a94>
29 2 94 + 341500
30 2 94 + 343068
31 2 94 + 448386
32 2 <state 0x14990>
28 3 94 + 343068
29 3 94 + 448386
30 2 <state 0x14a90>
30 1 <state 0x14a94>
27 2 94 + 341500
28 2 94 + 343068
29 2 94 + 448386
30 1 <state 0x14a90>
30 1 <state 0x14a94>
27 1 94 + 343068
28 1 94 + 448386
29 1 <state 0x14990>
26 2 94 + 290671
27 2 94 + 290773
28 2 94 + 448386
29 1 <state 0x14a90>
29 1 <state 0x14a94>
26 1 94 + 290773
27 1 94 + 448386
28 1 <state 0x15290>
23 39 94 + 924876
24 39 94 + 296650
25 22 94 + 1033451
26 8 <state 0x14990>
26 7 <state 0x14a90>
26 4 <state 0x14a94>
25 6 94 + 1033491
26 6 94 + 1033546
27 2 <state 0x14a90>
27 2 <state 0x14990>
27 1 <state 0x14a94>
25 5 94 + 1033546
26 2 <state 0x14990>
26 1 <state 0x14a90>
26 1 <state 0x14a94>
25 4 94 + 1033282
26 3 <state 0x14a90>
26 1 <state 0x14990>
25 2 94 + 1033575
20 63 94 + 468606
21 10 40 + 20397
22 4 <state 0x14990>
22 3 <state 0x14a90>
22 1 <state 0x14a94>
21 9 40 + 20563
22 4 <state 0x14990>
22 3 <state 0x14a90>
22 1 <state 0x14a94>
21 7 40 + 20432
22 4 <state 0x14990>
22 2 <state 0x14a94>
22 1 <state 0x14a90>
21 6 40 + 20297
22 3 <state 0x14a90>
22 3 <state 0x14990>
21 5 40 + 20559
22 2 <state 0x14a90>
22 2 <state 0x14a94>
22 1 <state 0x14990>
21 4 40 + 20349
22 3 <state 0x14a90>
22 1 <state 0x14990>
21 4 40 + 20651
22 2 <state 0x14990>
21 3 40 + 20454
22 2 <state 0x14a90>
21 3 40 + 20435
22 3 <state 0x14a90>
21 3 40 + 20405
22 2 <state 0x14a90>
22 1 <state 0x14a94>
21 3 40 + 20469
22 1 <state 0x14990>
22 1 <state 0x14a94>
21 2 40 + 20678
22 1 <state 0x14990>
22 1 <state 0x14a90>
21 2 40 + 20371
21 1 40 + 20659
21 1 40 + 20524
22 1 <state 0x14a94>
20 43 94 + 468639
21 43 94 + 1370604
22 19 <state 0x14990>
22 10 <state 0x14a90>
22 8 <state 0x14a94>
20 20 94 + 468719
21 20 94 + 1370604
22 7 <state 0x14990>
22 3 <state 0x14a90>
22 2 <state 0x14a94>
20 1 94 + 459887
21 1 <state 0x14990>
20 1 94 + 461788
21 1 94 + 327073
22 1 94 + 328949
23 1 94 + 39845
24 1 94 + 1383570
25 1 94 + 1146297
26 1 42 + 115054
27 1 <state 0x14a90>
19 1 94 + 455159
20 1 94 + 357186
21 1 94 + 1003663
22 1 94 + 1004669
23 1 94 + 383820
24 1 94 + 387575
25 1 42 + 123154
26 1 <state 0x14990>
17 11 94 + 615310
18 8 94 + 619070
19 8 94 + 1922620
20 8 94 + 1921148
21 8 94 + 1634310
22 8 94 + 1824541
23 8 94 + 1844473
24 8 94 + 1817163
25 8 94 + 2044205
26 8 94 + 2042808
27 8 94 + 1826023
28 8 94 + 276941
29 8 42 + 123154
30 4 <state 0x14990>
30 3 <state 0xcb90>
30 1 <state 0x8a90>
18 3 94 + 619321
19 3 94 + 1898781
20 3 94 + 1634310
21 3 94 + 1824541
22 3 94 + 1844473
23 3 94 + 1817163
24 3 94 + 2044205
25 3 94 + 2042808
26 3 94 + 1826023
27 3 94 + 276941
28 3 42 + 123154
29 1 <state 0x9290>
17 1 94 + 612981
18 1 94 + 618259
19 1 94 + 1624967
20 1 42 + 123154
21 1 <state 0x14990>
17 1 94 + 614949
18 1 94 + 354802
19 1 94 + 357186
20 1 94 + 1003663
21 1 94 + 1004715
22 1 94 + 398014
23 1 94 + 2026524
24 1 94 + 318116
25 1 42 + 123154
26 1 <state 0x9290>
14 164 94 + 283776
15 164 94 + 1007144
16 114 94 + 287469
17 109 94 + 1045446
18 109 94 + 1048495
19 109 42 + 123154
20 57 <state 0x5294>
20 12 <state 0x15290>
20 1 <state 0x9294>
17 3 94 + 1045493
18 3 42 + 123154
19 2 <state 0x9294>
19 1 <state 0x5294>
17 1 94 + 1045425
18 1 94 + 1048495
19 1 42 + 123154
20 1 <state 0x5294>
17 1 42 + 120970
16 50 94 + 286389
17 50 94 + 288471
18 24 94 + 930529
19 13 94 + 1121243
20 13 94 + 1118079
21 13 42 + 123154
19 11 94 + 1121884
18 15 94 + 929287
19 13 94 + 924876
20 4 94 + 298261
20 2 94 + 298374
20 2 94 + 298412
20 1 94 + 298215
20 1 94 + 297944
20 1 94 + 298425
20 1 94 + 298219
20 1 94 + 298370
19 2 94 + 924751
20 2 94 + 290104
21 2 94 + 290671
22 2 94 + 291285
23 2 94 + 296071
24 2 94 + 319761
25 2 94 + 321067
26 2 40 + 20297
18 11 94 + 931557
19 9 94 + 935632
19 2 94 + 935563
20 2 94 + 937487
21 2 42 + 123154
14 109 94 + 1533173
15 109 94 + 453362
16 109 94 + 612536
17 109 94 + 454557
18 109 94 + 454930
19 59 94 + 467569
20 55 94 + 1368473
21 55 94 + 481175
22 55 94 + 1373410
23 11 40 + 20559
23 10 40 + 20563
23 10 40 + 20454
23 5 40 + 20397
24 1 <state 0x15290>
23 4 40 + 20297
24 1 <state 0x15290>
23 4 40 + 20349
23 3 40 + 20678
24 1 <state 0x15290>
23 3 40 + 20469
24 1 <state 0x15290>
23 2 40 + 20405
23 1 40 + 20432
23 1 40 + 20659
23 1 40 + 20524
20 4 94 + 1367829
21 4 94 + 481175
22 4 94 + 1373410
23 2 40 + 20435
23 2 40 + 20469
19 17 94 + 457856
20 17 94 + 1360881
21 17 94 + 1364851
22 17 42 + 123154
23 2 <state 0x15290>
19 15 94 + 470522
20 15 94 + 1360881
21 15 94 + 1371215
22 12 94 + 924751
23 12 94 + 290104
24 7 94 + 290976
25 7 94 + 341546
26 4 94 + 341546
27 4 94 + 341546
28 2 94 + 343068
29 2 94 + 448386
28 1 94 + 341546
29 1 94 + 343068
30 1 94 + 448386
28 1 94 + 341500
29 1 94 + 343068
30 1 94 + 448386
26 1 94 + 344151
26 1 94 + 341341
27 1 94 + 290976
28 1 94 + 342604
29 1 94 + 917156
26 1 94 + 342604
27 1 94 + 917049
28 1 94 + 330222
29 1 94 + 328428
30 1 94 + 328949
31 1 94 + 39845
32 1 94 + 1383570
33 1 94 + 1146297
34 1 42 + 115054
24 5 94 + 290671
25 5 94 + 290976
26 3 94 + 341546
27 3 94 + 341546
28 2 94 + 341546
29 2 94 + 342604
30 2 94 + 917152
28 1 94 + 341500
29 1 94 + 343068
30 1 94 + 448386
31 1 <state 0x15290>
26 2 94 + 343068
27 2 94 + 448386
22 3 94 + 924876
23 3 94 + 296650
24 2 94 + 1033146
24 1 94 + 1033451
19 6 94 + 468606
20 2 40 + 20563
20 1 40 + 20469
20 1 40 + 20454
20 1 40 + 20397
20 1 40 + 20559
19 6 94 + 468719
20 6 94 + 1370604
19 5 94 + 468639
20 5 94 + 1370604
21 2 <state 0x15290>
19 1 94 + 457958
20 1 42 + 123154
21 1 <state 0x15290>
14 50 94 + 354802
15 27 94 + 357186
16 27 94 + 1003663
17 16 94 + 1004403
18 14 94 + 378531
19 13 94 + 1903574
20 13 94 + 380321
21 13 94 + 276941
22 13 42 + 123154
23 11 <state 0x9290>
23 2 <state 0x9294>
19 1 94 + 1903940
20 1 42 + 120970
21 1 <state 0x9294>
18 2 94 + 378750
19 2 42 + 123154
20 2 <state 0x9290>
17 11 94 + 1004669
18 11 94 + 383820
19 6 94 + 387530
20 6 42 + 123154
21 4 <state 0x9290>
21 2 <state 0x9294>
19 4 94 + 387292
20 4 94 + 389206
21 4 42 + 123154
22 4 <state 0x9290>
19 1 94 + 385896
20 1 94 + 389206
21 1 42 + 123154
22 1 <state 0x9290>
15 23 94 + 357116
16 20 94 + 1001494
17 20 94 + 358578
18 20 94 + 359255
19 20 94 + 286389
20 20 94 + 288471
21 12 94 + 931557
22 8 94 + 935563
23 8 94 + 937487
24 8 42 + 123154
25 7 <state 0x5294>
25 1 <state 0x9290>
22 2 94 + 935408
23 2 94 + 309774
24 2 42 + 123154
25 1 <state 0x9290>
25 1 <state 0x9294>
22 2 94 + 935632
23 2 <state 0x9290>
21 4 94 + 929287
22 2 94 + 924876
23 2 94 + 298261
24 1 <state 0x9290>
24 1 <state 0x9294>
22 2 94 + 924751
23 2 94 + 290104
24 2 94 + 290671
25 1 94 + 291285
26 1 94 + 295460
27 1 94 + 319761
28 1 94 + 321067
29 1 40 + 20297
30 1 <state 0x9290>
25 1 94 + 290976
26 1 94 + 341546
27 1 94 + 341407
28 1 94 + 295460
29 1 94 + 319761
30 1 94 + 321067
31 1 40 + 20297
32 1 <state 0x9290>
21 4 94 + 930529
22 3 94 + 1121243
23 3 94 + 1118079
24 3 42 + 123154
25 3 <state 0x9290>
22 1 94 + 1121884
23 1 <state 0x9290>
16 3 94 + 1001894
17 3 94 + 361126
18 3 94 + 1900478
19 3 94 + 1823259
20 3 94 + 1634310
21 3 94 + 1824541
22 3 94 + 1844473
23 2 94 + 1818797
24 2 94 + 2042808
25 2 94 + 1826023
26 2 94 + 276941
27 2 42 + 123154
28 2 <state 0x9294>
23 1 94 + 1817163
24 1 94 + 2044205
25 1 94 + 2042808
26 1 94 + 1826023
27 1 94 + 276941
28 1 42 + 123154
29 1 <state 0x9290>
14 30 94 + 285051
15 27 94 + 348406
16 27 94 + 354802
17 14 94 + 357186
18 14 94 + 1003663
19 9 94 + 1004669
20 9 94 + 383820
21 3 94 + 387292
22 3 94 + 389206
23 3 42 + 123154
24 3 <state 0x9294>
21 3 94 + 387530
22 3 42 + 123154
23 3 <state 0x9294>
21 2 94 + 385896
22 2 94 + 389206
23 2 42 + 123154
24 2 <state 0x9294>
21 1 94 + 387575
22 1 42 + 123154
23 1 <state 0x9294>
19 5 94 + 1004403
20 4 94 + 378531
21 4 94 + 1903574
22 4 94 + 380321
23 4 94 + 276941
24 4 42 + 123154
25 2 <state 0x9294>
25 2 <state 0x9290>
20 1 94 + 378750
21 1 42 + 123154
22 1 <state 0x9294>
17 11 94 + 357116
18 9 94 + 1001494
19 9 94 + 358578
20 9 94 + 359255
21 9 94 + 286389
22 9 94 + 288471
23 5 94 + 931557
24 2 94 + 935563
25 2 94 + 937487
26 2 42 + 123154
27 1 <state 0x5294>
24 2 94 + 935632
25 2 <state 0x9294>
24 1 94 + 935544
25 1 94 + 937487
26 1 42 + 123154
27 1 <state 0x9294>
23 4 94 + 930529
24 3 94 + 1121243
25 3 94 + 1118079
26 3 42 + 123154
27 2 <state 0x9294>
24 1 94 + 1121884
25 1 <state 0x9294>
18 2 94 + 1001894
19 2 94 + 361126
20 1 94 + 1900915
21 1 94 + 364670
22 1 94 + 276941
23 1 42 + 123154
24 1 <state 0x9290>
20 1 94 + 1900478
21 1 94 + 1823473
22 1 94 + 1826023
23 1 94 + 276941
24 1 42 + 123154
25 1 <state 0x9294>
17 2 94 + 357167
18 2 94 + 1002880
19 2 94 + 368552
20 2 94 + 595116
21 2 42 + 116930
22 2 <state 0x9294>
15 2 94 + 347876
16 2 94 + 349259
17 2 94 + 351289
18 2 94 + 352019
19 2 42 + 117906
20 2 <state 0x15290>
15 1 94 + 347397
16 1 94 + 207732
17 1 94 + 357186
18 1 94 + 1003663
19 1 94 + 1004669
20 1 94 + 383820
21 1 94 + 387575
22 1 94 + 1423735
23 1 94 + 276941
24 1 42 + 123154
25 1 <state 0x9290>
14 11 94 + 518039
15 11 94 + 354802
16 8 94 + 357186
17 8 94 + 1003663
18 5 94 + 1004403
19 5 94 + 378531
20 5 94 + 1903574
21 5 94 + 380321
22 5 94 + 276941
23 5 42 + 123154
24 5 <state 0x9294>
18 3 94 + 1004669
19 3 94 + 383820
20 1 94 + 385896
21 1 94 + 389206
22 1 42 + 123154
23 1 <state 0x9294>
20 1 94 + 387292
21 1 94 + 389206
22 1 42 + 123154
23 1 <state 0x9294>
20 1 94 + 387530
21 1 42 + 123154
22 1 <state 0x9294>
16 3 94 + 357116
17 3 94 + 1001494
18 3 94 + 358578
19 3 94 + 359255
20 2 94 + 286389
21 2 94 + 288471
22 1 94 + 930529
23 1 94 + 1121884
22 1 94 + 931557
23 1 94 + 935563
24 1 94 + 937487
25 1 42 + 123154
20 1 94 + 286786
21 1 94 + 313713
22 1 42 + 119226
23 1 <state 0x9290>
14 5 94 + 221292
15 5 94 + 237368
16 4 94 + 268527
17 4 94 + 1922620
18 4 94 + 1921148
19 4 94 + 1634310
20 4 94 + 1824541
21 4 94 + 1844473
22 4 94 + 1817163
23 4 94 + 2044205
24 4 94 + 2042808
25 4 94 + 1826023
26 4 94 + 276941
27 4 42 + 123154
28 3 <state 0x14994>
28 1 <state 0x14a94>
16 1 94 + 268416
17 1 94 + 1918037
18 1 94 + 1921148
19 1 94 + 1634310
20 1 94 + 1824541
21 1 94 + 1844473
22 1 94 + 1818797
23 1 94 + 2042808
24 1 94 + 1826023
25 1 94 + 276941
26 1 42 + 123154
14 2 94 + 492502
15 1 94 + 606866
16 1 94 + 662621
17 1 94 + 207497
18 1 94 + 209144
19 1 94 + 34194
20 1 40 + 23669
15 1 94 + 607059
16 1 94 + 354802
17 1 94 + 357167
18 1 94 + 1002880
19 1 94 + 368552
20 1 94 + 595116
21 1 42 + 116930
22 1 <state 0x9290>
14 1 94 + 491136
15 1 94 + 606176
16 1 94 + 354802
17 1 94 + 357186
18 1 94 + 1003663
19 1 94 + 1004669
20 1 94 + 383820
21 1 94 + 387671
22 1 94 + 211804
23 1 42 + 119202
24 1 <state 0x8a90>
14 1 94 + 355514
15 1 94 + 447237
16 1 42 + 120994
17 1 <state 0x9294>
11 3 94 + 99176
12 3 94 + 102493
13 3 94 + 798584
14 2 94 + 1898781
15 2 94 + 1634310
16 2 94 + 1824541
17 2 94 + 1844473
18 2 94 + 1817163
19 2 94 + 2044205
20 2 94 + 2042808
21 2 94 + 1826023
22 2 94 + 276941
23 2 42 + 123154
24 2 <state 0x14a94>
14 1 94 + 1898981
15 1 94 + 2042462
16 1 94 + 1899403
17 1 94 + 1826023
18 1 94 + 276941
19 1 42 + 123154
20 1 <state 0x14a94>
6 6 73 + 22898
7 6 73 + 90234
8 6 73 + 28770
9 6 73 + 28073
10 6 34 + 23944
11 6 34 + 25657
12 6 28 + 385482
13 6 20 + 92423
14 6 20 + 187079
15 6 20 + 136815
16 6 94 + 816510
17 6 94 + 816026
18 6 94 + 1384232
19 6 42 + 124666
20 5 <state 0x9290>

Powerstats for: Google Chrome
UUID: 29
Microstackshots: 526 samples
Primary state: 170 samples state 0x16d94
0 526 7 + 11257
1 526 7 + 13581
2 526 7 + 13921
3 526 19 + 50485831
4 365 19 + 50229837
5 365 19 + 50230610
6 365 19 + 50197595
7 365 19 + 50484573
8 187 19 + 50198695
9 187 19 + 50199943
10 187 19 + 50088879
11 78 19 + 24699570
12 78 19 + 24676686
13 78 19 + 24686558
14 78 19 + 24689321
15 78 19 + 24700344
16 78 19 + 24681888
17 78 19 + 23576907
18 78 19 + 70289431
19 78 19 + 70318786
20 77 19 + 70339682
21 67 19 + 70339863
22 67 19 + 70287226
23 67 42 + 124666
24 32 <state 0x16d90>
24 11 <state 0x16d96>
24 5 <state 0x16d92>
24 1 <state 0x16d9c>
21 10 19 + 70339825
22 10 19 + 70287226
23 10 42 + 124666
24 3 <state 0x16d90>
24 3 <state 0x16d96>
20 1 19 + 70339522
21 1 19 + 70339825
22 1 19 + 70287226
23 1 42 + 124666
11 53 19 + 50253913
12 53 19 + 50253395
13 41 19 + 54755559
14 41 19 + 54755411
15 39 19 + 56405120
16 39 19 + 56404900
17 39 42 + 124666
18 12 <state 0x16d90>
18 9 <state 0x16d92>
18 5 <state 0x16d96>
15 2 19 + 54754251
16 2 19 + 50461712
17 2 42 + 115054
18 2 <state 0x16d90>
13 9 19 + 21909223
14 9 19 + 21909041
15 9 19 + 21908618
16 9 19 + 21913187
17 9 19 + 70289431
18 9 19 + 70318786
19 9 19 + 70339522
20 8 19 + 70339825
21 8 19 + 70287226
22 8 42 + 124666
23 3 <state 0x16d96>
23 2 <state 0x16d92>
23 2 <state 0x16d90>
20 1 19 + 70339863
21 1 19 + 70287226
22 1 42 + 124666
13 1 19 + 9404295
14 1 19 + 9404158
15 1 19 + 56434911
16 1 42 + 123154
17 1 <state 0x16d92>
13 1 19 + 81338631
14 1 19 + 81338481
15 1 19 + 81340606
16 1 19 + 81301628
17 1 19 + 81330222
18 1 19 + 70289431
19 1 19 + 70318786
20 1 19 + 70339522
21 1 19 + 70339863
22 1 19 + 70287226
23 1 42 + 124666
24 1 <state 0x16d96>
13 1 19 + 54754903
14 1 19 + 54754705
15 1 19 + 54754406
16 1 19 + 54751661
17 1 19 + 49757601
18 1 42 + 116834
19 1 <state 0x16d90>
11 45 19 + 93625212
12 45 19 + 25442088
13 45 19 + 25436547
14 45 19 + 25438420
15 45 42 + 124666
16 16 <state 0x16d90>
16 9 <state 0x16d96>
16 4 <state 0x16d92>
11 6 19 + 85763977
12 5 19 + 85613292
13 5 19 + 85613673
14 5 19 + 85616013
15 5 42 + 123154
16 2 <state 0x16d96>
12 1 19 + 85613326
13 1 19 + 85614037
14 1 19 + 50461712
15 1 42 + 115054
16 1 <state 0x16d90>
11 3 19 + 51829822
12 3 19 + 14068609
13 3 19 + 14047393
14 3 42 + 123154
15 3 <state 0x16d96>
11 2 19 + 85765157
12 2 19 + 85614218
13 2 19 + 85613673
14 2 19 + 85616013
15 2 42 + 123154
8 144 19 + 50198685
9 144 19 + 50199975
10 144 19 + 50088879
11 69 19 + 50253913
12 69 19 + 50253395
13 56 19 + 55230903
14 53 19 + 55221364
15 53 42 + 123154
16 17 <state 0x16d90>
16 14 <state 0x16d96>
16 3 <state 0x16d92>
14 3 19 + 55221421
15 3 19 + 50463430
16 3 42 + 117906
17 2 <state 0x16d96>
13 12 19 + 2012839
14 12 19 + 2012686
15 12 19 + 85839552
16 11 19 + 85790073
17 11 19 + 73951241
18 11 19 + 73951114
19 11 19 + 73996337
20 8 19 + 74182366
21 8 19 + 74225773
22 7 19 + 74121663
23 7 19 + 74093152
24 7 42 + 123154
25 4 <state 0x16d90>
25 1 <state 0x16d92>
22 1 19 + 74121075
23 1 19 + 74122037
24 1 42 + 123154
20 3 19 + 74188492
21 3 19 + 74221998
22 3 19 + 74260884
23 3 19 + 74265150
24 3 19 + 74121075
25 2 19 + 74121999
26 2 42 + 123154
25 1 19 + 74122037
26 1 42 + 123154
16 1 19 + 85791087
17 1 19 + 73951241
18 1 19 + 73951114
19 1 19 + 73996337
20 1 19 + 74182366
21 1 19 + 74225773
22 1 19 + 74121075
23 1 19 + 74121999
24 1 42 + 123154
25 1 <state 0x16d90>
13 1 19 + 50084798
14 1 19 + 50082425
15 1 19 + 80246743
16 1 19 + 80246550
17 1 19 + 80248901
18 1 19 + 80174535
19 1 19 + 80168074
20 1 19 + 80175182
21 1 19 + 80186326
22 1 19 + 80327364
23 1 19 + 73951241
24 1 19 + 73951114
25 1 19 + 73996337
26 1 19 + 74175824
27 1 19 + 74223509
28 1 19 + 74262211
29 1 19 + 74121663
30 1 19 + 74093152
31 1 42 + 123154
32 1 <state 0x16d96>
11 45 19 + 16110169
12 45 19 + 49786694
13 45 19 + 49784188
14 23 19 + 49782916
15 23 42 + 124666
16 10 <state 0x16d90>
16 7 <state 0x16d96>
16 3 <state 0x16d92>
14 17 19 + 49782995
15 17 19 + 50463430
16 17 42 + 117906
17 8 <state 0x16d96>
17 5 <state 0x16d90>
17 1 <state 0x16d92>
14 3 19 + 49782828
15 3 19 + 50466991
16 3 19 + 50465992
17 3 9 + 260735
18 3 9 + 260089
19 3 42 + 116954
20 2 <state 0x16d96>
20 1 <state 0x16d92>
14 2 19 + 49782948
15 2 19 + 50461712
16 2 42 + 115054
17 1 <state 0x16d96>
17 1 <state 0x16d90>
11 9 19 + 50281501
12 9 19 + 85793906
13 9 19 + 73910334
14 9 19 + 73951241
15 9 19 + 73951114
16 9 19 + 73996337
17 9 19 + 74209993
18 9 19 + 74140088
19 3 19 + 73988516
20 3 19 + 74083281
21 3 42 + 123154
19 3 19 + 73988271
20 3 19 + 74121075
21 3 19 + 74121999
22 3 42 + 123154
23 3 <state 0x16d90>
19 2 19 + 73988805
20 2 42 + 120970
19 1 19 + 73987998
20 1 19 + 74082975
21 1 42 + 123154
22 1 <state 0x16d90>
11 7 19 + 18026890
12 7 19 + 18012639
13 7 19 + 18103693
14 7 19 + 17924687
15 4 19 + 18135146
16 2 19 + 18138690
17 2 19 + 18130206
18 2 19 + 18130824
19 2 19 + 17829009
20 2 19 + 1779989
21 2 19 + 17799066
22 2 19 + 50462579
23 2 42 + 119202
16 2 19 + 17758841
17 2 19 + 17758709
18 2 19 + 18162182
19 2 19 + 17948939
20 2 19 + 17787835
21 2 19 + 17788716
22 2 19 + 21933342
23 2 19 + 21881584
24 2 19 + 21876911
25 2 19 + 70289431
26 2 19 + 70318786
27 2 19 + 70339522
28 2 19 + 70339825
29 2 19 + 70287226
30 2 42 + 124666
31 1 <state 0x16d90>
15 3 19 + 18135358
16 3 19 + 18133655
17 2 19 + 17824477
18 2 19 + 17822297
19 2 19 + 21933342
20 2 19 + 21881584
21 2 19 + 21876911
22 2 19 + 70289431
23 2 19 + 70318786
24 2 19 + 70339522
25 2 19 + 70339825
26 2 19 + 70287226
27 2 42 + 124666
28 1 <state 0x16d96>
17 1 19 + 17824778
18 1 19 + 18138844
19 1 19 + 18133177
20 1 19 + 18130824
21 1 19 + 17828331
22 1 19 + 21933540
23 1 19 + 21904558
24 1 19 + 21882043
25 1 19 + 21876911
26 1 19 + 70289431
27 1 19 + 70318786
28 1 19 + 70339522
29 1 19 + 70339825
30 1 19 + 70287226
31 1 42 + 124666
11 3 19 + 8481219
12 3 19 + 80163269
13 3 19 + 73910334
14 3 19 + 73951241
15 3 19 + 73951114
16 3 19 + 73996337
17 3 19 + 74209993
18 3 19 + 74140088
19 2 19 + 73987998
20 2 19 + 74082944
21 2 42 + 120970
19 1 19 + 73988516
20 1 19 + 74083281
21 1 42 + 123154
22 1 <state 0x16d96>
11 3 19 + 21715434
12 3 19 + 21712567
13 3 19 + 21712725
14 2 19 + 21715198
15 2 19 + 21721770
16 2 19 + 70289431
17 2 19 + 70318786
18 2 19 + 70339522
19 2 19 + 70339825
20 2 19 + 70287226
21 2 42 + 124666
22 1 <state 0x16d92>
22 1 <state 0x16d90>
14 1 19 + 21857448
15 1 19 + 21721770
16 1 19 + 70289431
17 1 19 + 70318786
18 1 19 + 70339522
19 1 19 + 70339825
20 1 19 + 70287226
21 1 42 + 124666
22 1 <state 0x16d92>
11 2 19 + 15120619
12 1 19 + 14997432
13 1 19 + 73910334
14 1 19 + 73951241
15 1 19 + 73951114
16 1 19 + 73996337
17 1 19 + 74209993
18 1 19 + 74140088
19 1 19 + 73988516
20 1 19 + 74083281
21 1 42 + 123154
12 1 19 + 15127757
13 1 19 + 14997287
14 1 19 + 73951241
15 1 19 + 73951114
16 1 19 + 73996337
17 1 19 + 74188492
18 1 19 + 74221998
19 1 19 + 74260884
20 1 19 + 74265150
21 1 19 + 74121663
22 1 19 + 74093152
23 1 42 + 123154
24 1 <state 0x16d96>
11 2 19 + 23611336
12 2 19 + 23602472
13 2 19 + 23603057
14 2 42 + 124666
15 1 <state 0x16d92>
15 1 <state 0x16d96>
11 2 19 + 80139465
12 2 19 + 80137031
13 2 19 + 80136596
14 2 19 + 80131616
15 2 19 + 80327562
16 2 19 + 73951241
17 2 19 + 73951114
18 2 19 + 73996337
19 2 19 + 74188621
20 1 19 + 74225876
21 1 19 + 74263666
22 1 19 + 74275373
23 1 19 + 74255614
24 1 19 + 74121075
25 1 19 + 74122037
26 1 42 + 123154
27 1 <state 0x16d90>
20 1 19 + 74225773
21 1 19 + 74121075
22 1 19 + 74122037
23 1 42 + 123154
11 1 19 + 50282289
12 1 19 + 81441183
13 1 19 + 81477763
14 1 19 + 73910334
15 1 19 + 73951241
16 1 19 + 73951114
17 1 19 + 73996337
18 1 19 + 74209993
19 1 19 + 74140088
20 1 19 + 73988516
21 1 19 + 74083281
22 1 42 + 123154
23 1 <state 0x16d90>
11 1 19 + 51829822
12 1 19 + 51729841
13 1 19 + 51728143
14 1 19 + 51760516
15 1 19 + 51762446
16 1 19 + 51747446
17 1 19 + 51738598
18 1 19 + 9702866
19 1 19 + 17972050
20 1 19 + 18006802
21 1 19 + 18002231
22 1 19 + 18017589
23 1 19 + 21862341
24 1 19 + 21862124
25 1 19 + 70282074
26 1 19 + 70281188
27 1 19 + 70322211
28 1 19 + 70298675
29 1 19 + 70298392
30 1 19 + 70271274
31 1 19 + 70442262
32 1 19 + 50463430
33 1 42 + 117906
34 1 <state 0x16d90>
8 34 19 + 50198675
9 34 19 + 50199911
10 34 19 + 50088879
11 34 19 + 50253913
12 34 19 + 50253395
13 33 19 + 54829822
14 30 19 + 55239391
15 30 42 + 123154
16 7 <state 0x16d92>
16 6 <state 0x16d96>
16 5 <state 0x16d90>
14 2 19 + 55188890
15 2 19 + 55235761
16 2 19 + 55234995
17 2 19 + 55248976
18 2 19 + 55240354
19 2 19 + 49757601
20 2 42 + 116834
21 2 <state 0x16d92>
14 1 19 + 55189032
15 1 19 + 55246036
16 1 19 + 55246765
17 1 19 + 55197842
18 1 19 + 49758142
19 1 19 + 50456831
20 1 42 + 114766
21 1 <state 0x16d92>
13 1 19 + 70204583
14 1 19 + 70204446
15 1 19 + 70197767
16 1 19 + 70178685
17 1 19 + 70282074
18 1 19 + 70281188
19 1 19 + 70322429
20 1 19 + 70275804
21 1 19 + 70440839
22 1 19 + 49757601
23 1 42 + 116834
24 1 <state 0x16d96>
4 123 19 + 70288896
5 123 19 + 70277721
6 123 19 + 70277974
7 123 19 + 70309893
8 61 19 + 70310959
9 53 19 + 70313118
10 53 19 + 70416503
11 53 19 + 70416632
12 53 19 + 70416974
13 53 19 + 70417116
14 53 19 + 70287226
15 53 42 + 124666
16 18 <state 0x16d90>
16 12 <state 0x16d96>
16 5 <state 0x16d92>
9 3 19 + 70314205
10 3 19 + 7042995
11 3 19 + 70284715
12 3 42 + 124666
9 2 19 + 70312951
10 2 19 + 70315107
11 2 19 + 70275804
12 2 19 + 70440839
13 2 19 + 49757601
14 2 42 + 116834
9 2 19 + 70313448
10 2 19 + 70315685
11 2 19 + 7042995
12 2 19 + 70284715
13 2 42 + 124666
14 1 <state 0x16d90>
9 1 19 + 70313157
10 1 19 + 70315685
11 1 19 + 7042995
12 1 19 + 70284715
13 1 42 + 124666
8 40 19 + 70308013
9 37 19 + 70307256
10 37 19 + 70297678
11 37 19 + 70416503
12 37 19 + 70416632
13 37 19 + 70416974
14 37 19 + 70417116
15 37 19 + 70287226
16 37 42 + 124666
17 12 <state 0x16d90>
17 10 <state 0x16d96>
17 2 <state 0x16d92>
9 3 19 + 70307350
10 3 19 + 7042995
11 3 19 + 70284715
12 3 42 + 124666
13 1 <state 0x16d90>
13 1 <state 0x16d96>
8 10 19 + 70308209
9 9 19 + 70367389
10 9 19 + 70287651
11 9 19 + 50461712
12 9 42 + 115054
13 4 <state 0x16d90>
13 3 <state 0x16d96>
9 1 19 + 70367343
10 1 19 + 70339522
11 1 19 + 70339825
12 1 19 + 70287226
13 1 42 + 124666
8 9 19 + 70308395
9 7 19 + 70302536
10 7 19 + 70269421
11 7 19 + 70441179
12 7 19 + 50462579
13 7 42 + 119202
14 3 <state 0x16d90>
14 1 <state 0x16d92>
9 2 19 + 70301786
10 2 19 + 7042995
11 2 19 + 70284715
12 2 42 + 124666
13 1 <state 0x16d92>
8 3 19 + 70311073
9 3 19 + 70302536
10 3 19 + 70269421
11 3 19 + 70441179
12 3 19 + 50462579
13 3 42 + 119202
14 2 <state 0x16d96>
4 33 19 + 50265124
5 33 19 + 49984915
6 33 19 + 50156291
7 33 19 + 50598119
8 33 19 + 50154267
9 33 19 + 50154875
10 33 19 + 50088879
11 19 19 + 55075485
12 19 19 + 55059150
13 19 19 + 55057644
14 19 19 + 55059003
15 19 19 + 56434836
16 19 42 + 123154
17 10 <state 0x16d96>
17 6 <state 0x16d92>
17 1 <state 0x16d90>
11 12 19 + 55074177
12 12 19 + 55045480
13 12 19 + 55045916
14 12 19 + 55062406
15 12 19 + 55059003
16 12 19 + 56434836
17 12 42 + 123154
18 7 <state 0x16d96>
18 4 <state 0x16d92>
11 1 19 + 55074998
12 1 19 + 55006780
13 1 19 + 55008236
14 1 <state 0x16d96>
11 1 19 + 55075117
12 1 19 + 55008571
13 1 19 + 55059150
14 1 19 + 55057522
15 1 19 + 55051225
16 1 19 + 55039866
17 1 19 + 56433612
18 1 42 + 123154
4 3 19 + 50229693
5 3 19 + 50230610
6 3 19 + 50197595
7 3 19 + 50484573
8 3 19 + 50198695
9 3 19 + 50199943
10 3 19 + 50088879
11 2 19 + 94826460
12 2 19 + 73951241
13 2 19 + 73951114
14 2 19 + 73996337
15 1 19 + 74213047
16 1 19 + 74140088
17 1 19 + 73988805
18 1 42 + 120970
19 1 <state 0x16d96>
15 1 19 + 74175824
16 1 19 + 74223509
17 1 19 + 74262211
18 1 19 + 74121663
19 1 19 + 74093152
20 1 42 + 123154
21 1 <state 0x16d96>
11 1 19 + 94254259
12 1 19 + 94221167
13 1 19 + 70289395
14 1 19 + 70318166
15 1 19 + 70318839
16 1 19 + 70287651
17 1 19 + 50461712
18 1 42 + 115054
19 1 <state 0x16d9c>
4 2 19 + 50229885
5 2 19 + 50230610
6 2 19 + 50197595
7 2 19 + 50484573
8 2 19 + 50198685
9 2 19 + 50199975
10 2 19 + 50088879
11 2 19 + 81031144
12 2 19 + 81314026
13 2 19 + 81321808
14 2 19 + 84690354
15 2 19 + 84690296
16 2 19 + 84795473
17 2 19 + 81006705
18 2 19 + 73910334
19 2 19 + 73951241
20 2 19 + 73951114
21 2 19 + 73996337
22 2 19 + 74209993
23 2 19 + 74140088
24 2 19 + 73987998
25 2 19 + 74082847
26 2 42 + 120970

Powerstats for: Google Chrome He
UUID: 47
Microstackshots: 120 samples
Primary state: 76 samples state 0x16d94
0 119 7 + 11257
1 119 7 + 13581
2 119 7 + 13921
3 119 19 + 50485831
4 69 19 + 50265124
5 69 19 + 49984915
6 69 19 + 50156291
7 69 19 + 50598119
8 69 19 + 50154267
9 69 19 + 50154875
10 69 19 + 50088879
11 59 19 + 55075485
12 59 19 + 55059150
13 59 19 + 55057644
14 57 19 + 55059003
15 57 19 + 56434836
16 57 42 + 123154
17 20 <state 0x16d90>
14 2 19 + 55058683
15 2 19 + 55060122
16 1 19 + 55049532
17 1 19 + 55015695
18 1 19 + 49757601
19 1 42 + 116834
16 1 19 + 55049468
17 1 19 + 55039165
18 1 19 + 55039505
19 1 19 + 55041295
20 1 42 + 120994
21 1 <state 0x16d90>
11 9 19 + 55074177
12 9 19 + 55045480
13 9 19 + 55045916
14 5 19 + 55062406
15 5 19 + 55059003
16 5 19 + 56434836
17 5 42 + 123154
18 1 <state 0x16d90>
14 4 19 + 55059662
15 3 19 + 55061420
16 3 19 + 55014140
17 3 19 + 56433612
18 3 42 + 123154
15 1 19 + 55061434
16 1 19 + 55039866
17 1 19 + 56433612
18 1 42 + 123154
11 1 19 + 55074847
12 1 19 + 55006780
13 1 19 + 55007476
14 1 19 + 55014316
15 1 19 + 56433612
16 1 42 + 123154
17 1 <state 0x16d90>
4 35 19 + 50229837
5 35 19 + 50230610
6 35 19 + 50197595
7 35 19 + 50484573
8 35 19 + 50198685
9 35 19 + 50199975
10 35 19 + 50088879
11 17 19 + 75978616
12 17 19 + 73951241
13 17 19 + 73951114
14 17 19 + 73996337
15 17 19 + 74188492
16 17 19 + 74221998
17 17 19 + 74260884
18 17 19 + 74265150
19 12 19 + 74121075
20 10 19 + 74122037
21 10 42 + 123154
22 4 <state 0x16d90>
20 2 19 + 74122087
21 2 42 + 123154
19 5 19 + 74121663
20 5 19 + 74093152
21 5 42 + 123154
22 3 <state 0x16d90>
11 15 19 + 75979273
12 15 19 + 73910334
13 15 19 + 73951241
14 15 19 + 73951114
15 15 19 + 73996337
16 15 19 + 74209993
17 15 19 + 74140088
18 8 19 + 73987998
19 6 19 + 74082944
20 6 42 + 120970
21 5 <state 0x16d90>
19 2 19 + 74082975
20 2 42 + 123154
21 2 <state 0x16d90>
18 5 19 + 73988516
19 5 19 + 74083281
20 5 42 + 123154
21 1 <state 0x16d90>
18 2 19 + 73988805
19 2 42 + 120970
11 2 19 + 75978432
12 2 19 + 73951241
13 2 19 + 73951114
14 2 19 + 73996337
15 2 19 + 74188621
16 1 19 + 74225876
17 1 19 + 74263666
18 1 19 + 74270754
19 1 19 + 74121075
20 1 19 + 74122037
21 1 42 + 123154
16 1 19 + 74225773
17 1 19 + 74121663
18 1 19 + 74093152
19 1 42 + 123154
20 1 <state 0x16d90>
11 1 19 + 75978953
12 1 19 + 73951241
13 1 19 + 73951114
14 1 19 + 73996337
15 1 19 + 74175824
16 1 19 + 74223509
17 1 19 + 74262211
18 1 19 + 74121075
19 1 19 + 74122037
20 1 42 + 123154
4 15 19 + 50229693
5 15 19 + 50230610
6 15 19 + 50197595
7 15 19 + 50484573
8 13 19 + 50198685
9 13 19 + 50199975
10 13 19 + 50088879
11 13 19 + 16110169
12 13 19 + 49786694
13 13 19 + 49784188
14 7 19 + 49782916
15 7 42 + 124666
16 2 <state 0x16d90>
14 6 19 + 49782995
15 6 19 + 50463430
16 6 42 + 117906
8 2 19 + 50198675
9 2 19 + 50199911
10 2 19 + 50088879
11 2 19 + 55114448
12 2 19 + 50462866
13 2 42 + 119202
14 2 <state 0x16d90>
0 1 32 + 4117
1 1 47 + 6191
2 1 19 + 13867
3 1 19 + 44286964
4 1 19 + 87916536
5 1 19 + 44289449
6 1 19 + 41969589
7 1 19 + 49984915
8 1 19 + 50156291
9 1 19 + 49831465
10 1 19 + 50154267
11 1 19 + 50154875
12 1 19 + 50088879
13 1 19 + 51829822
14 1 19 + 51729841
15 1 19 + 51728143
16 1 19 + 51760516
17 1 19 + 51762446
18 1 19 + 51738552
19 1 19 + 42072566
20 1 19 + 23590708
21 1 19 + 42070077
22 1 19 + 83667168
23 1 19 + 83672074
24 1 19 + 83674085
25 1 42 + 124666
26 1 <state 0x17c94>

Powerstats for: TaniumClient
UUID: 51
Microstackshots: 115 samples
Primary state: 36 samples state 0x15b94
0 60 7 + 11257
1 60 7 + 13581
2 60 7 + 13921
3 53 51 + 2477194
4 53 51 + 171398
5 30 51 + 148233
6 30 51 + 2706001
7 28 51 + 2700923
8 28 8 + 49201
9 28 8 + 49989
10 28 8 + 52008
11 28 8 + 52473
12 28 42 + 124666
13 15 <state 0x16394>
13 13 <state 0x16390>
7 2 51 + 2700654
8 2 51 + 164703
9 2 8 + 57383
10 2 8 + 57445
11 2 8 + 49543
12 2 8 + 258816
13 2 42 + 116906
14 2 <state 0x16394>
5 23 51 + 147196
6 12 51 + 2767642
7 12 8 + 155187
8 12 8 + 55699
9 12 42 + 124690
10 8 <state 0x16390>
10 4 <state 0x16394>
6 11 51 + 2767173
7 10 51 + 2861883
8 5 51 + 2869320
9 5 51 + 2879435
10 3 51 + 2863986
11 2 51 + 2495396
12 2 51 + 2480074
13 2 51 + 2494984
14 2 8 + 152628
15 2 8 + 131405
16 2 8 + 55699
17 2 42 + 124690
18 2 <state 0x16390>
11 1 51 + 2495439
12 1 51 + 2480074
13 1 51 + 2494984
14 1 8 + 152628
15 1 8 + 131405
16 1 8 + 55699
17 1 42 + 124690
18 1 <state 0x16394>
10 1 51 + 2864062
11 1 51 + 2898619
12 1 8 + 151218
13 1 8 + 129607
14 1 8 + 55699
15 1 42 + 124690
16 1 <state 0x16390>
10 1 51 + 2864081
11 1 8 + 155187
12 1 8 + 55699
13 1 42 + 124690
14 1 <state 0x16394>
8 2 51 + 2869416
9 1 51 + 2896507
10 1 51 + 2507259
11 1 8 + 155187
12 1 8 + 55699
13 1 42 + 124690
14 1 <state 0x16394>
9 1 51 + 2896476
10 1 51 + 2891599
11 1 51 + 2856568
12 1 8 + 155187
13 1 8 + 55699
14 1 42 + 124690
15 1 <state 0x16394>
8 2 51 + 2869282
9 1 51 + 2889656
10 1 8 + 151218
11 1 8 + 129607
12 1 8 + 55699
13 1 42 + 124690
14 1 <state 0x16390>
9 1 51 + 2889618
10 1 51 + 2495231
11 1 51 + 2494984
12 1 8 + 152628
13 1 8 + 131405
14 1 8 + 55699
15 1 42 + 124690
16 1 <state 0x16394>
8 1 51 + 2869382
9 1 51 + 2507243
10 1 51 + 2495396
11 1 51 + 2480074
12 1 51 + 2494984
13 1 8 + 152628
14 1 8 + 131405
15 1 8 + 55699
16 1 42 + 124690
17 1 <state 0x16390>
7 1 51 + 2861852
8 1 51 + 2856568
9 1 8 + 155187
10 1 8 + 55699
11 1 42 + 124690
12 1 <state 0x16390>
3 7 51 + 2474724
4 7 51 + 2397484
5 7 51 + 3028251
6 7 51 + 2991409
7 7 51 + 3061823
8 7 51 + 3076487
9 7 51 + 3117166
10 7 51 + 3098852
11 6 51 + 3110158
12 2 51 + 3397890
13 2 8 + 153990
14 2 8 + 153892
15 2 8 + 55699
16 2 42 + 124690
17 1 <state 0x16390>
17 1 <state 0x16394>
12 2 51 + 3397905
13 2 8 + 49330
14 2 8 + 258094
15 2 42 + 114766
16 1 <state 0x16390>
16 1 <state 0x16394>
12 2 51 + 3397803
13 2 51 + 164703
14 2 8 + 57383
15 2 8 + 57445
16 2 8 + 49543
17 2 8 + 258816
18 2 42 + 116906
19 2 <state 0x16394>
11 1 51 + 3110175
12 1 42 + 114718
13 1 <state 0x16390>
0 55 51 + 7476
1 55 51 + 161001
2 55 51 + 25688
3 54 51 + 76304
4 54 51 + 3474631
5 54 51 + 2397484
6 54 51 + 1917673
7 54 51 + 1918315
8 54 51 + 3501603
9 32 51 + 3442870
10 15 51 + 154987
11 10 51 + 126827
12 10 51 + 206771
13 6 42 + 124666
13 2 42 + 116834
13 2 42 + 120058
11 3 51 + 126974
12 3 51 + 2521136
13 3 51 + 2520397
14 3 9 + 245975
15 3 9 + 246717
16 3 42 + 119482
11 2 51 + 127081
12 2 51 + 163324
13 2 51 + 196010
14 2 51 + 1193470
15 2 9 + 273863
16 2 42 + 119202
17 1 <state 0x15b90>
10 11 51 + 154955
11 8 51 + 126827
12 8 51 + 206771
13 3 42 + 124666
14 2 <state 0x15b90>
13 3 42 + 120058
13 2 42 + 116834
14 1 <state 0x15b90>
11 3 51 + 126974
12 3 51 + 2521136
13 3 51 + 2520397
14 3 9 + 245975
15 3 9 + 246717
16 3 42 + 119482
17 2 <state 0x15b90>
10 5 51 + 155065
11 3 51 + 99851
12 2 51 + 2520397
13 2 9 + 245975
14 2 9 + 246717
15 2 42 + 119482
12 1 51 + 2520083
13 1 9 + 251334
14 1 9 + 256193
15 1 9 + 246717
16 1 42 + 119482
17 1 <state 0x15b90>
11 2 51 + 99696
12 2 51 + 206771
13 2 42 + 124666
14 1 <state 0x15b90>
10 1 51 + 152034
11 1 51 + 99958
12 1 51 + 163324
13 1 51 + 196010
14 1 51 + 1193470
15 1 9 + 273863
16 1 42 + 119202
9 11 51 + 3444131
10 11 51 + 149332
11 5 51 + 126827
12 5 51 + 206771
13 2 42 + 116834
14 2 <state 0x15b90>
13 2 42 + 124666
13 1 42 + 120058
11 3 51 + 127081
12 3 51 + 163324
13 3 51 + 196010
14 3 51 + 1193470
15 3 9 + 273863
16 3 42 + 119202
11 2 51 + 127204
12 2 51 + 206019
13 2 51 + 1193384
14 2 42 + 117906
15 1 <state 0x15b90>
11 1 51 + 126974
12 1 51 + 2521136
13 1 51 + 2520412
14 1 9 + 273863
15 1 42 + 119202
9 11 51 + 3435758
10 11 51 + 2996269
11 11 51 + 2997076
12 11 51 + 3038143
13 11 8 + 155187
14 11 8 + 55699
15 11 42 + 124690
16 7 <state 0x15b90>
3 1 51 + 38619
4 1 51 + 92135
5 1 51 + 99696
6 1 51 + 206771
7 1 42 + 116834
8 1 <state 0x15b90>

Powerstats for: kvoop
UUID: 31
Microstackshots: 89 samples
Primary state: 89 samples state 0x15b94
0 89 32 + 4117
1 89 31 + 34912
2 51 31 + 23690
3 51 90 + 22343
4 49 11 + 119543
5 49 11 + 123822
6 29 11 + 110953
7 29 82 + 139427
8 29 42 + 124666
6 20 11 + 110821
7 20 11 + 107608
8 20 11 + 103416
9 20 82 + 139427
10 20 42 + 124666
4 1 11 + 119559
5 1 42 + 120058
4 1 79 + 8705
5 1 82 + 139427
6 1 42 + 124666
2 38 31 + 12837
3 36 42 + 124666
3 2 80 + 34841
4 2 42 + 116834

Powerstats for: Teams
UUID: 23
Microstackshots: 80 samples
Primary state: 47 samples state 0x16d94
0 60 7 + 11257
1 60 7 + 13581
2 60 7 + 13921
3 60 68 + 31957415
4 44 68 + 31611556
5 44 68 + 31612121
6 44 68 + 31613802
7 44 68 + 31932705
8 44 68 + 31638507
9 44 68 + 31198539
10 40 68 + 31723113
11 40 68 + 31683283
12 38 68 + 33703518
13 37 68 + 34076794
14 37 42 + 123154
13 1 68 + 34029195
14 1 68 + 34072731
15 1 68 + 34073043
16 1 68 + 34087392
17 1 68 + 34077766
18 1 42 + 116834
12 1 68 + 383383
13 1 68 + 383266
14 1 68 + 38494912
15 1 68 + 38450855
16 1 68 + 46977278
17 1 68 + 46977009
18 1 68 + 47024728
19 1 68 + 47193320
20 1 68 + 47259626
21 1 68 + 47154185
22 1 68 + 47125136
23 1 42 + 123154
24 1 <state 0x16d96>
12 1 68 + 34068630
13 1 68 + 34059197
14 1 68 + 31912221
15 1 42 + 117906
16 1 <state 0x16d90>
10 3 68 + 31729752
11 3 68 + 38453554
12 3 68 + 46961249
13 3 68 + 46977307
14 3 68 + 46977115
15 3 68 + 47024728
16 3 68 + 47244505
17 3 68 + 47173276
18 2 68 + 47016976
19 2 68 + 47153594
20 2 68 + 47154534
21 2 42 + 123154
22 2 <state 0x16d90>
18 1 68 + 47016649
19 1 68 + 47114597
20 1 42 + 123154
10 1 68 + 38498138
11 1 68 + 38497521
12 1 68 + 11684718
13 1 68 + 11838883
14 1 68 + 11791708
15 1 68 + 11982165
16 1 68 + 11932413
17 1 68 + 11933198
18 1 68 + 11794571
19 1 68 + 11949356
20 1 68 + 11942875
21 1 68 + 33011667
22 1 68 + 33040712
23 1 68 + 33064716
24 1 68 + 33064905
25 1 68 + 33009288
26 1 42 + 124666
27 1 <state 0x16d96>
4 12 68 + 33011184
5 12 68 + 33001049
6 12 68 + 33001418
7 12 68 + 33032103
8 12 68 + 33033180
9 9 68 + 33035294
10 9 68 + 33135885
11 9 68 + 33136021
12 9 68 + 33136373
13 9 68 + 33136510
14 9 68 + 33009288
15 9 42 + 124666
16 2 <state 0x16d90>
16 1 <state 0x16d92>
16 1 <state 0x16d96>
9 2 68 + 33035329
10 2 68 + 33037354
11 2 68 + 33137544
12 2 68 + 33136373
13 2 68 + 33136510
14 2 68 + 33009288
15 2 42 + 124666
16 2 <state 0x16d92>
9 1 68 + 33034258
10 1 68 + 33148687
11 1 68 + 33005621
12 1 42 + 124666
13 1 <state 0x1ed96>
4 2 68 + 31689245
5 2 68 + 31444997
6 1 68 + 31956292
7 1 68 + 31307713
8 1 68 + 31306143
9 1 68 + 31198539
10 1 68 + 31729752
11 1 68 + 33857529
12 1 68 + 33857728
13 1 68 + 35645280
14 1 42 + 123154
15 1 <state 0x16d90>
6 1 68 + 31956372
7 1 68 + 31307352
8 1 68 + 31306143
9 1 68 + 31198539
10 1 68 + 33925708
11 1 68 + 33909246
12 1 68 + 33907429
13 1 68 + 33909093
14 1 68 + 35646469
15 1 42 + 123154
4 2 68 + 31611412
5 2 68 + 31612121
6 2 68 + 31613802
7 2 68 + 31932705
8 2 68 + 31638507
9 2 68 + 31198539
10 2 68 + 46942961
11 2 68 + 46961249
12 2 68 + 46977307
13 2 68 + 46977115
14 2 68 + 47024728
15 2 68 + 47244505
16 2 68 + 47173276
17 2 68 + 47016615
18 2 68 + 47114214
19 2 42 + 120970
0 16 7 + 11241
1 16 7 + 12649
2 16 73 + 14165
3 16 73 + 14761
4 13 73 + 50995
5 13 73 + 85633
6 13 73 + 7608
7 13 27 + 225564
8 13 73 + 82401
9 13 73 + 82750
10 13 73 + 7608
11 13 73 + 82750
12 13 73 + 7608
13 13 27 + 241934
14 13 27 + 248929
15 13 27 + 249343
16 13 21 + 1997425
17 13 26 + 197516
18 13 26 + 196023
19 13 26 + 213696
20 13 26 + 56022
21 13 26 + 58298
22 13 26 + 59693
23 13 26 + 61002
24 13 26 + 155653
25 13 26 + 173735
26 7 26 + 476334
27 7 26 + 490529
28 7 26 + 493136
29 7 26 + 380591
30 7 54 + 32786
31 7 54 + 33704
32 7 12 + 1923760
33 7 12 + 1925799
34 7 12 + 2004014
35 7 12 + 1756723
36 7 12 + 1751814
37 7 12 + 1748646
38 7 12 + 2480027
39 7 12 + 102957
40 7 12 + 103239
41 5 12 + 54807
42 5 12 + 1648202
43 3 12 + 1642158
44 3 42 + 123154
45 2 <state 0x16494>
45 1 <state 0x16490>
43 1 12 + 1642722
44 1 42 + 123154
45 1 <state 0x16492>
43 1 12 + 1642375
44 1 42 + 123154
45 1 <state 0x16490>
41 1 12 + 54779
42 1 12 + 1647934
43 1 42 + 123154
44 1 <state 0x16490>
41 1 12 + 54982
42 1 12 + 1633887
43 1 42 + 120970
44 1 <state 0x16494>
26 6 26 + 476367
27 6 26 + 477440
28 4 26 + 491662
29 4 26 + 493136
30 4 26 + 380591
31 4 54 + 32786
32 4 54 + 33704
33 4 12 + 1923760
34 4 12 + 1925799
35 4 12 + 2004014
36 4 12 + 1756723
37 4 12 + 1751814
38 4 12 + 1748646
39 4 12 + 2480027
40 4 12 + 102957
41 4 12 + 103239
42 4 12 + 54807
43 4 12 + 1648202
44 2 12 + 1642158
45 2 42 + 123154
46 1 <state 0x16494>
46 1 <state 0x16492>
44 1 12 + 1642594
45 1 42 + 123154
46 1 <state 0x16490>
44 1 12 + 1642375
45 1 42 + 123154
46 1 <state 0x16494>
28 2 26 + 491079
29 2 26 + 493136
30 2 26 + 380591
31 2 54 + 32786
32 2 54 + 33704
33 2 12 + 1923760
34 2 12 + 1925799
35 2 12 + 2004014
36 2 12 + 1756723
37 2 12 + 1751814
38 2 12 + 1748646
39 2 12 + 2480027
40 2 12 + 102957
41 2 12 + 103239
42 2 12 + 54807
43 2 12 + 1648202
44 1 12 + 1642375
45 1 42 + 123154
46 1 <state 0x16492>
44 1 12 + 1642722
45 1 42 + 123154
46 1 <state 0x16490>
4 3 73 + 60613
5 3 73 + 7608
6 3 73 + 38394
7 3 54 + 22766
8 3 26 + 48756
9 3 26 + 124752
10 3 26 + 187415
11 3 26 + 188082
12 3 26 + 187757
13 3 26 + 128809
14 3 26 + 129909
15 3 26 + 130552
16 3 26 + 152251
17 3 26 + 160187
18 3 26 + 161283
19 3 26 + 486985
20 3 26 + 494608
21 3 26 + 381686
22 3 54 + 32786
23 3 54 + 33704
24 3 12 + 1923760
25 3 12 + 1925799
26 3 12 + 2004014
27 3 12 + 1756723
28 3 12 + 1751814
29 3 12 + 1748646
30 3 12 + 2480027
31 3 12 + 102957
32 3 12 + 103239
33 3 12 + 54807
34 3 12 + 1648202
35 1 12 + 1642158
36 1 42 + 123154
37 1 <state 0x17690>
35 1 12 + 1642722
36 1 42 + 123154
37 1 <state 0x17690>
35 1 12 + 1642375
36 1 42 + 123154
37 1 <state 0x17690>
0 4 32 + 4117
1 4 23 + 3902
2 4 68 + 10976
3 4 68 + 29771172
4 4 68 + 49417037
5 4 68 + 29775096
6 4 68 + 10011144
7 4 68 + 10035938
8 4 68 + 10026416
9 4 68 + 10026947
10 4 68 + 31444997
11 4 68 + 31977534
12 4 68 + 31982428
13 4 85 + 223309
14 4 85 + 8224308
15 4 85 + 268859
16 4 74 + 194692
17 4 74 + 195334
18 4 74 + 195990
19 4 84 + 544659
20 4 84 + 546605
21 4 84 + 549552
22 4 84 + 1433164
23 4 84 + 669777
24 4 68 + 31978783
25 4 68 + 31993530
26 4 68 + 31980538
27 4 68 + 31307352
28 4 68 + 31306143
29 4 68 + 31198539
30 4 68 + 30903739
31 4 68 + 8274451
32 4 68 + 82730743
33 4 68 + 82417571
34 4 68 + 81469374
35 4 68 + 81654511
36 4 68 + 24765685
37 4 68 + 20725256
38 4 68 + 20725969
39 4 67 + 54055041267041
40 4 68 + 26811363
41 4 67 + 54055042079234
42 4 67 + 54055041399721
43 2 67 + 54055041279654
44 1 67 + 54055041279654
45 1 67 + 54055041279654
46 1 67 + 54055041279654
47 1 67 + 54055041811178
48 1 68 + 26804684
49 1 68 + 27108305
50 1 67 + 54055041279654
51 1 68 + 26987028
52 1 67 + 54055041279654
53 1 67 + 54055041279654
54 1 67 + 54055041279654
55 1 67 + 54055041811178
56 1 68 + 26804684
57 1 68 + 27108305
58 1 67 + 54055041279654
59 1 68 + 26987028
60 1 67 + 54055041279654
61 1 67 + 54055041279654
62 1 67 + 54055041431999
63 1 67 + 54055041429377
64 1 68 + 81879875
65 1 68 + 82759502
66 1 68 + 82751722
67 1 68 + 82760135
68 1 42 + 123154
69 1 <state 0x17f90>
44 1 67 + 54055041519538
45 1 67 + 54055041279654
46 1 67 + 54055041279654
47 1 67 + 54055041811178
48 1 68 + 26804684
49 1 68 + 27108305
50 1 67 + 54055041279654
51 1 68 + 26987028
52 1 67 + 54055041279654
53 1 67 + 54055041279654
54 1 67 + 54055041279654
55 1 67 + 54055041811178
56 1 68 + 26804684
57 1 68 + 27108305
58 1 67 + 54055041279654
59 1 68 + 26987028
60 1 67 + 54055041279654
61 1 67 + 54055041279654
62 1 67 + 54055041431999
63 1 67 + 54055041429377
64 1 68 + 81879875
65 1 68 + 82759502
66 1 68 + 82751722
67 1 68 + 82760135
68 1 42 + 123154
69 1 <state 0x17f96>
43 2 67 + 54055041452879
44 2 67 + 54055041279654
45 2 67 + 54055041430816
46 2 68 + 26795302
47 2 67 + 54055041279654
48 2 67 + 54055041279654
49 2 68 + 27386990
50 2 68 + 17655034
51 2 68 + 17657581
52 2 68 + 17880536
53 2 68 + 81853035
54 2 68 + 82756631
55 2 42 + 116834
56 2 <state 0x17f96>

Powerstats for: Skype for Busine
UUID: 64
Microstackshots: 71 samples
Primary state: 25 samples state 0x17f90
0 60 32 + 4117
1 60 64 + 25929
2 60 85 + 23098
3 60 85 + 223309
4 60 85 + 8224308
5 50 85 + 268859
6 50 74 + 194692
7 48 74 + 195334
8 48 74 + 195990
9 48 84 + 544659
10 43 84 + 546605
11 40 84 + 549552
12 40 84 + 1433164
13 40 84 + 669777
14 40 45 + 6566532
15 26 45 + 5759378
16 26 45 + 5743594
17 26 45 + 6369054
18 26 45 + 6325940
19 26 45 + 6498543
20 15 45 + 6496671
21 15 45 + 6410117
22 15 93 + 310350
23 9 93 + 358155
24 5 93 + 487901
25 5 93 + 490128
26 3 93 + 615420
27 3 93 + 489003
28 3 93 + 825866
29 3 93 + 512242
30 3 42 + 121714
31 2 <state 0x17fb4>
26 2 93 + 616905
27 2 93 + 489003
28 2 93 + 825866
29 2 93 + 512242
30 2 42 + 121714
24 2 93 + 487960
25 2 93 + 500229
26 2 93 + 489003
27 2 93 + 825866
28 2 93 + 512242
29 2 42 + 121714
30 2 <state 0x17fb4>
24 2 93 + 487861
25 2 93 + 489003
26 2 93 + 825866
27 2 93 + 512242
28 2 42 + 121714
29 1 <state 0x17f94>
23 6 93 + 334102
24 5 93 + 505623
25 5 93 + 541811
26 5 93 + 489003
27 5 93 + 825866
28 5 93 + 512242
29 5 42 + 121714
30 2 <state 0x17fb0>
30 1 <state 0x17fb4>
24 1 93 + 506962
25 1 93 + 508310
26 1 93 + 489003
27 1 93 + 825866
28 1 93 + 512242
29 1 42 + 121714
20 11 45 + 6496900
21 11 45 + 6408308
22 11 93 + 48717
23 11 93 + 310350
24 11 93 + 383753
25 11 93 + 171933
26 11 93 + 416383
27 9 93 + 510501
28 9 93 + 560882
29 9 93 + 512242
30 9 42 + 121714
31 4 <state 0x17fb0>
31 1 <state 0x17f94>
27 2 93 + 510467
28 1 93 + 560381
29 1 93 + 512242
30 1 42 + 121714
31 1 <state 0x17fb0>
28 1 93 + 560350
29 1 42 + 120970
30 1 <state 0x17f94>
15 10 45 + 5760614
16 10 45 + 5892183
17 10 45 + 5759022
18 8 45 + 5800877
19 7 45 + 3493713
20 7 45 + 3742804
21 4 45 + 3786125
22 4 45 + 6371804
23 4 45 + 6372258
24 4 45 + 6381925
25 4 45 + 6498543
26 3 45 + 6496900
27 3 45 + 6408308
28 3 93 + 48717
29 3 93 + 310350
30 3 93 + 383753
31 3 93 + 171933
32 3 93 + 416383
33 3 93 + 510501
34 3 93 + 560882
35 3 93 + 512242
36 3 42 + 121714
37 2 <state 0x17f94>
26 1 45 + 6496671
27 1 45 + 6410117
28 1 93 + 310350
29 1 93 + 358155
30 1 93 + 487901
31 1 93 + 490128
32 1 93 + 615420
33 1 93 + 489003
34 1 93 + 825866
35 1 93 + 512242
36 1 42 + 121714
37 1 <state 0x17f94>
21 1 45 + 3786105
22 1 45 + 6369054
23 1 45 + 6325940
24 1 45 + 6498543
25 1 45 + 6496671
26 1 45 + 6410117
27 1 93 + 310350
28 1 93 + 358155
29 1 93 + 487901
30 1 93 + 490128
31 1 93 + 617055
32 1 93 + 489003
33 1 93 + 825866
34 1 93 + 512242
35 1 42 + 121714
21 1 45 + 3786066
22 1 45 + 6369559
23 1 45 + 6324914
24 1 45 + 6498543
25 1 45 + 6496671
26 1 45 + 6410117
27 1 93 + 310350
28 1 93 + 358155
29 1 93 + 487861
30 1 93 + 489003
31 1 93 + 825866
32 1 93 + 512242
33 1 42 + 121714
34 1 <state 0x17fb0>
21 1 45 + 3786040
22 1 45 + 6370340
23 1 45 + 6498543
24 1 45 + 6496671
25 1 45 + 6410117
26 1 93 + 310350
27 1 93 + 358155
28 1 93 + 487960
29 1 93 + 496324
30 1 93 + 489003
31 1 93 + 825866
32 1 93 + 512242
33 1 42 + 121714
19 1 45 + 5851810
20 1 45 + 6369054
21 1 45 + 6325940
22 1 45 + 6498543
23 1 45 + 6496900
24 1 45 + 6408308
25 1 93 + 48717
26 1 93 + 310350
27 1 93 + 383753
28 1 93 + 171933
29 1 93 + 416383
30 1 93 + 510501
31 1 93 + 560882
32 1 93 + 512242
33 1 42 + 121714
18 2 45 + 5800887
19 2 45 + 3493713
20 1 45 + 3267500
21 1 45 + 3268638
22 1 45 + 6371804
23 1 45 + 6372258
24 1 45 + 6381925
25 1 45 + 6498543
26 1 45 + 6496900
27 1 45 + 6408308
28 1 93 + 48717
29 1 93 + 310350
30 1 93 + 383753
31 1 93 + 171933
32 1 93 + 416383
33 1 93 + 510501
34 1 93 + 560882
35 1 93 + 512242
36 1 42 + 121714
20 1 45 + 3966374
21 1 45 + 6369896
22 1 45 + 6498543
23 1 45 + 6496671
24 1 45 + 6410117
25 1 93 + 310350
26 1 93 + 358155
27 1 93 + 487901
28 1 93 + 490128
29 1 93 + 616905
30 1 93 + 489003
31 1 93 + 825866
32 1 93 + 512242
33 1 42 + 121714
34 1 <state 0x17fb0>
15 2 45 + 5759562
16 2 45 + 6369315
17 2 45 + 6325940
18 2 45 + 6498543
19 2 45 + 6496671
20 2 45 + 6410117
21 2 93 + 310350
22 1 93 + 334102
23 1 93 + 505623
24 1 93 + 541811
25 1 93 + 489003
26 1 93 + 825866
27 1 93 + 512242
28 1 42 + 121714
22 1 93 + 358155
23 1 93 + 487960
24 1 93 + 500229
25 1 93 + 489003
26 1 93 + 825866
27 1 93 + 512242
28 1 42 + 121714
29 1 <state 0x17fb4>
15 1 45 + 5759809
16 1 45 + 6369054
17 1 45 + 6325940
18 1 45 + 6498543
19 1 45 + 6496671
20 1 45 + 6410117
21 1 93 + 310350
22 1 93 + 334102
23 1 93 + 505623
24 1 93 + 541811
25 1 93 + 489003
26 1 93 + 825866
27 1 93 + 512242
28 1 42 + 121714
29 1 <state 0x17fb0>
15 1 45 + 5759902
16 1 45 + 6369054
17 1 45 + 6325940
18 1 45 + 6498543
19 1 45 + 6496900
20 1 45 + 6408308
21 1 93 + 48717
22 1 93 + 310350
23 1 93 + 383753
24 1 93 + 171933
25 1 93 + 416383
26 1 93 + 510501
27 1 93 + 560882
28 1 93 + 512242
29 1 42 + 121714
30 1 <state 0x17f94>
11 3 84 + 549644
12 3 84 + 1433164
13 3 84 + 669777
14 3 45 + 6566532
15 2 45 + 3121322
16 2 78 + 477743
17 2 78 + 477330
18 2 78 + 626457
19 2 78 + 611900
20 2 78 + 623961
21 2 78 + 623993
22 2 78 + 619516
23 2 78 + 626441
24 2 78 + 611900
25 2 78 + 627513
26 2 78 + 627785
27 2 78 + 619481
28 2 78 + 625129
29 2 78 + 596081
30 2 78 + 2150201
31 2 78 + 2140785
32 2 78 + 339468
33 2 78 + 2141008
34 2 78 + 2141085
35 2 78 + 2126092
36 2 78 + 2117856
37 2 78 + 2117919
38 2 45 + 3117940
39 2 45 + 3801774
40 1 45 + 3791656
41 1 45 + 6371804
42 1 45 + 6372258
43 1 45 + 6381925
44 1 45 + 6498543
45 1 45 + 6496671
46 1 45 + 6410117
47 1 93 + 310350
48 1 93 + 334102
49 1 93 + 505623
50 1 93 + 541811
51 1 93 + 489003
52 1 93 + 825866
53 1 93 + 512242
54 1 42 + 121714
40 1 45 + 3791633
41 1 45 + 6369559
42 1 45 + 6324914
43 1 45 + 6498543
44 1 45 + 6496671
45 1 45 + 6410117
46 1 93 + 310350
47 1 93 + 358155
48 1 93 + 487861
49 1 93 + 489674
50 1 93 + 557505
51 1 93 + 512242
52 1 42 + 121714
53 1 <state 0x17f94>
15 1 45 + 5449885
16 1 45 + 6472131
17 1 45 + 3121322
18 1 78 + 477743
19 1 78 + 477330
20 1 78 + 626457
21 1 78 + 611900
22 1 78 + 623961
23 1 78 + 623993
24 1 78 + 619516
25 1 78 + 626441
26 1 78 + 611900
27 1 78 + 627513
28 1 78 + 627785
29 1 78 + 619481
30 1 78 + 625129
31 1 78 + 596081
32 1 78 + 2150201
33 1 78 + 2140785
34 1 78 + 339468
35 1 78 + 2141008
36 1 78 + 2141085
37 1 78 + 2126092
38 1 78 + 2117856
39 1 78 + 2117919
40 1 45 + 3117940
41 1 45 + 3801774
42 1 45 + 3791262
43 1 45 + 6370340
44 1 45 + 6498543
45 1 45 + 6496900
46 1 45 + 6408308
47 1 93 + 48717
48 1 93 + 310350
49 1 93 + 383753
50 1 93 + 171933
51 1 93 + 416383
52 1 93 + 510501
53 1 93 + 560882
54 1 93 + 512242
55 1 42 + 121714
10 4 84 + 548440
11 4 84 + 549011
12 4 84 + 669372
13 4 85 + 10759107
14 4 27 + 28807
15 4 84 + 358455
16 4 84 + 362240
17 4 84 + 633121
18 4 84 + 633834
19 4 84 + 634140
20 4 64 + 1949754
21 3 64 + 1957202
22 3 27 + 411315
23 3 27 + 29669
24 3 27 + 1545489
25 3 78 + 449909
26 3 78 + 457430
27 3 45 + 6570967
28 3 45 + 6472131
29 3 45 + 3325429
30 2 45 + 3325860
31 2 45 + 6501166
32 2 45 + 6498543
33 2 45 + 6496900
34 2 45 + 6408308
35 2 93 + 48717
36 2 93 + 310350
37 2 93 + 383753
38 2 93 + 171933
39 2 93 + 416383
40 2 93 + 510849
41 2 93 + 489003
42 2 93 + 825866
43 2 93 + 512242
44 2 42 + 121714
45 2 <state 0x17fb4>
30 1 45 + 3325635
31 1 45 + 3734575
32 1 45 + 6408308
33 1 93 + 48717
34 1 93 + 310350
35 1 93 + 383753
36 1 93 + 171933
37 1 93 + 416383
38 1 93 + 510501
39 1 93 + 560882
40 1 93 + 512242
41 1 42 + 121714
42 1 <state 0x17fbc>
21 1 64 + 1957423
22 1 27 + 411315
23 1 27 + 29669
24 1 27 + 1545489
25 1 78 + 449909
26 1 78 + 457430
27 1 45 + 6570967
28 1 45 + 6472131
29 1 45 + 3325440
30 1 45 + 3326353
31 1 45 + 6570967
32 1 45 + 6472131
33 1 45 + 3970409
34 1 45 + 3971964
35 1 45 + 5857936
36 1 45 + 6472131
37 1 45 + 5425548
38 1 45 + 6498543
39 1 45 + 6496900
40 1 45 + 6408308
41 1 93 + 48717
42 1 93 + 310350
43 1 93 + 383753
44 1 93 + 171933
45 1 93 + 416383
46 1 93 + 510467
47 1 93 + 560381
48 1 93 + 512242
49 1 42 + 121714
10 1 84 + 547898
11 1 84 + 801433
12 1 73 + 54165
13 1 73 + 7608
14 1 73 + 38394
15 1 62 + 2450562
16 1 62 + 71398
17 1 62 + 55356
18 1 85 + 10757863
19 1 27 + 28807
20 1 84 + 358455
21 1 84 + 362240
22 1 84 + 633121
23 1 84 + 633834
24 1 84 + 634140
25 1 64 + 1950298
26 1 64 + 1957202
27 1 27 + 411315
28 1 27 + 29669
29 1 27 + 1545489
30 1 78 + 449909
31 1 78 + 457430
32 1 45 + 6570967
33 1 45 + 6472131
34 1 45 + 3325429
35 1 45 + 3325860
36 1 45 + 6570967
37 1 45 + 6472131
38 1 45 + 4654451
39 1 45 + 5376046
40 1 45 + 6369896
41 1 45 + 6498543
42 1 45 + 6496671
43 1 45 + 6410117
44 1 93 + 310350
45 1 93 + 358155
46 1 93 + 487861
47 1 93 + 489674
48 1 93 + 557505
49 1 93 + 512242
50 1 42 + 121714
51 1 <state 0x17f94>
7 2 74 + 195087
8 2 74 + 195990
9 2 84 + 544659
10 1 84 + 547898
11 1 84 + 801433
12 1 73 + 54165
13 1 73 + 7608
14 1 73 + 38394
15 1 62 + 2450562
16 1 62 + 71398
17 1 62 + 55356
18 1 85 + 10757863
19 1 27 + 28807
20 1 84 + 358455
21 1 84 + 362240
22 1 84 + 633121
23 1 84 + 633834
24 1 84 + 634140
25 1 64 + 1950298
26 1 64 + 1957202
27 1 27 + 411315
28 1 27 + 29669
29 1 27 + 1545489
30 1 78 + 449909
31 1 78 + 457430
32 1 45 + 6570967
33 1 45 + 6472131
34 1 45 + 4654451
35 1 45 + 5376071
36 1 45 + 6369559
37 1 45 + 6324914
38 1 45 + 6498543
39 1 45 + 6496900
40 1 45 + 6408308
41 1 93 + 48717
42 1 93 + 310350
43 1 93 + 383753
44 1 93 + 171933
45 1 93 + 416383
46 1 93 + 510501
47 1 93 + 560882
48 1 93 + 512242
49 1 42 + 121714
50 1 <state 0x17f94>
10 1 84 + 547739
11 1 84 + 583114
12 1 84 + 584391
13 1 84 + 585300
14 1 45 + 3488680
15 1 45 + 3569635
16 1 45 + 6371804
17 1 45 + 6372258
18 1 45 + 6381925
19 1 45 + 6498543
20 1 45 + 6496900
21 1 45 + 6408308
22 1 93 + 48717
23 1 93 + 310350
24 1 93 + 383753
25 1 93 + 171933
26 1 93 + 416383
27 1 93 + 510501
28 1 93 + 560882
29 1 93 + 512242
30 1 42 + 121714
5 9 85 + 271279
6 9 74 + 118561
7 9 74 + 31821
8 9 74 + 36151
9 9 74 + 276843
10 9 74 + 31427
11 9 74 + 31821
12 9 74 + 35076
13 9 85 + 6142049
14 9 64 + 437759
15 9 64 + 438684
16 9 64 + 436063
17 9 78 + 451336
18 9 45 + 3121615
19 9 45 + 6498543
20 6 45 + 6496900
21 6 45 + 6408308
22 6 93 + 48717
23 6 93 + 310350
24 6 93 + 383753
25 6 93 + 171933
26 6 93 + 416383
27 3 93 + 510501
28 3 93 + 560882
29 3 93 + 512242
30 3 42 + 121714
31 3 <state 0x17f94>
27 2 93 + 510467
28 2 93 + 560350
29 2 42 + 120970
30 2 <state 0x17f94>
27 1 93 + 510849
28 1 93 + 489003
29 1 93 + 825866
30 1 93 + 512242
31 1 42 + 121714
32 1 <state 0x17f94>
20 3 45 + 6496671
21 3 45 + 6410117
22 3 93 + 310350
23 2 93 + 358155
24 2 93 + 487861
25 1 93 + 489634
26 1 93 + 36667
27 1 93 + 785859
28 1 42 + 115634
25 1 93 + 489003
26 1 93 + 825866
27 1 93 + 512242
28 1 42 + 121714
23 1 93 + 334102
24 1 93 + 506962
25 1 93 + 508310
26 1 93 + 489003
27 1 93 + 825866
28 1 93 + 512242
29 1 42 + 121714
5 1 85 + 269562
6 1 74 + 259232
7 1 44 + 38557
8 1 44 + 38831
9 1 44 + 40712
10 1 27 + 302514
11 1 27 + 302900
12 1 85 + 288433
13 1 85 + 289403
14 1 85 + 1523279
15 1 85 + 1524230
16 1 27 + 28807
17 1 84 + 358455
18 1 84 + 362240
19 1 84 + 633121
20 1 84 + 633834
21 1 84 + 634140
22 1 64 + 1948588
23 1 64 + 1943026
24 1 78 + 2512869
25 1 78 + 2531776
26 1 78 + 877525
27 1 78 + 864106
28 1 78 + 862991
29 1 27 + 108913
30 1 27 + 113388
31 1 27 + 246425
32 1 78 + 860696
33 1 78 + 873069
34 1 78 + 2534732
35 1 78 + 2512720
36 1 78 + 1834491
37 1 78 + 2312800
38 1 45 + 3062329
39 1 45 + 4677230
40 1 45 + 4582858
41 1 45 + 4573589
42 1 45 + 4987350
43 1 45 + 6369559
44 1 45 + 6324914
45 1 45 + 6498543
46 1 45 + 6496900
47 1 45 + 6408308
48 1 93 + 48717
49 1 93 + 310350
50 1 93 + 383753
51 1 93 + 171933
52 1 93 + 416383
53 1 93 + 510467
54 1 93 + 560381
55 1 93 + 512242
56 1 42 + 121714
0 11 7 + 11241
1 11 7 + 12649
2 11 73 + 14165
3 11 73 + 14761
4 9 73 + 50995
5 9 73 + 85633
6 9 73 + 7608
7 9 27 + 225564
8 9 73 + 82401
9 9 73 + 82750
10 9 73 + 7608
11 9 73 + 82750
12 9 73 + 7608
13 9 27 + 241934
14 9 27 + 248929
15 9 27 + 249343
16 9 21 + 1997425
17 9 38 + 334314
18 9 38 + 331507
19 9 38 + 361725
20 9 38 + 93445
21 9 38 + 97508
22 9 38 + 100565
23 9 38 + 102101
24 9 38 + 265424
25 9 38 + 294852
26 7 38 + 632928
27 7 38 + 633882
28 4 38 + 647541
29 4 38 + 648952
30 4 38 + 538317
31 4 38 + 156612
32 4 78 + 2375458
33 4 78 + 2390346
34 4 12 + 1923760
35 4 12 + 1925799
36 4 12 + 2004014
37 4 12 + 1756723
38 4 12 + 1751814
39 4 12 + 1748646
40 4 12 + 2480027
41 4 12 + 102957
42 4 12 + 103239
43 4 12 + 54807
44 4 12 + 1648202
45 2 12 + 1642158
46 2 42 + 123154
47 1 <state 0x164b4>
47 1 <state 0x16490>
45 2 12 + 1642722
46 2 42 + 123154
47 2 <state 0x164b0>
28 3 38 + 646958
29 3 38 + 648952
30 3 38 + 538317
31 3 38 + 156612
32 3 78 + 2375458
33 3 78 + 2390346
34 3 12 + 1923760
35 3 12 + 1925799
36 3 12 + 2004014
37 3 12 + 1756723
38 3 12 + 1751814
39 3 12 + 1748646
40 3 12 + 2480027
41 3 12 + 102957
42 3 12 + 103239
43 3 12 + 54807
44 3 12 + 1648202
45 2 12 + 1642158
46 2 42 + 123154
47 1 <state 0x16490>
47 1 <state 0x164b4>
45 1 12 + 1642722
46 1 42 + 123154
47 1 <state 0x16494>
26 2 38 + 632895
27 2 38 + 646413
28 2 38 + 648952
29 2 38 + 538317
30 2 38 + 156612
31 2 78 + 2375458
32 2 78 + 2390346
33 2 12 + 1923760
34 2 12 + 1925799
35 2 12 + 2004014
36 2 12 + 1756723
37 2 12 + 1751814
38 2 12 + 1748646
39 2 12 + 2480027
40 2 12 + 102957
41 2 12 + 103239
42 2 12 + 54807
43 2 12 + 1648202
44 2 12 + 1642158
45 2 42 + 123154
46 1 <state 0x164b4>
46 1 <state 0x164b0>
4 2 73 + 60613
5 2 73 + 7608
6 2 73 + 171414
7 2 42 + 119482
8 1 <state 0x176b4>
8 1 <state 0x17690>

Powerstats for: git
UUID: 18
Microstackshots: 69 samples
Primary state: 69 samples state 0x17c94
0 69 32 + 4117
1 69 18 + 500340
2 69 18 + 4464
3 69 18 + 5532
4 69 18 + 7551
5 27 18 + 208073
6 27 18 + 213989
7 27 18 + 214364
8 27 18 + 1390174
9 27 18 + 1387007
10 27 42 + 124666
5 18 18 + 96262
6 18 18 + 1352299
7 18 18 + 773332
8 18 18 + 774416
9 18 18 + 1272760
10 18 18 + 1387007
11 18 42 + 124666
5 16 18 + 403566
6 16 18 + 404990
7 16 18 + 1352299
8 16 18 + 773332
9 15 18 + 774416
10 15 18 + 1272760
11 15 18 + 1387007
12 15 42 + 124666
9 1 42 + 120058
5 3 18 + 210705
6 3 18 + 672373
7 3 18 + 671660
8 3 42 + 124666
5 2 18 + 211875
6 2 18 + 967939
7 2 18 + 672373
8 2 18 + 671660
9 2 42 + 124666
5 2 18 + 210786
6 2 18 + 671510
7 2 18 + 671660
8 2 42 + 124666
5 1 18 + 467499
6 1 18 + 469892
7 1 18 + 1232393
8 1 18 + 1233403
9 1 18 + 1387007
10 1 42 + 124666

Powerstats for: go
UUID: 65
Microstackshots: 59 samples
Primary state: 56 samples state 0x16494
0 58 ???
1 51 42 + 124666
2 3 <state 0x17c94>
1 3 ???
2 2 42 + 117906
2 1 42 + 115054
1 2 42 + 116834
1 2 42 + 122242
0 1 ???
1 1 42 + 124666

Powerstats for: mongod
UUID: 87
Microstackshots: 25 samples
Primary state: 16 samples state 0x16394
0 25 7 + 11257
1 25 7 + 13581
2 25 7 + 13921
3 25 87 + 5220541
4 25 87 + 5219156
5 25 87 + 5236695
6 25 87 + 5254482
7 7 87 + 5251675
8 7 42 + 116906
9 3 <state 0x16390>
7 7 87 + 5251769
8 7 52 + 69862
9 7 52 + 41619
10 7 87 + 4497763
11 7 9 + 257438
12 7 9 + 256193
13 7 9 + 246717
14 7 42 + 119482
15 2 <state 0x16390>
7 5 87 + 5252153
8 5 42 + 114766
9 2 <state 0x16390>
7 5 87 + 5252265
8 5 87 + 32097067
9 5 42 + 117906
10 1 <state 0x16390>
7 1 87 + 5252139
8 1 87 + 4496345
9 1 9 + 246548
10 1 9 + 246717
11 1 42 + 119482
12 1 <state 0x16390>

Powerstats for: Microsoft Outloo
UUID: 3
Microstackshots: 21 samples
Primary state: 4 samples state 0x17692
0 21 7 + 11241
1 15 7 + 12242
2 15 73 + 109857
3 15 73 + 93965
4 15 73 + 37222
5 13 73 + 90647
6 13 73 + 7608
7 13 73 + 38394
8 11 41 + 89420
9 11 35 + 1726774
10 11 35 + 1724444
11 10 3 + 8381184
12 10 3 + 7159035
13 7 3 + 7163937
14 5 3 + 11856022
15 5 3 + 11702464
16 5 3 + 7448157
17 5 3 + 8344472
18 3 3 + 8345024
19 2 35 + 453496
20 2 35 + 455942
21 2 35 + 2095909
22 2 35 + 1909304
23 2 35 + 2101287
24 2 35 + 2100960
25 2 35 + 106939
26 2 35 + 2597433
27 2 35 + 2110722
28 2 42 + 124666
29 1 <state 0x17690>
29 1 <state 0x176b4>
19 1 35 + 453508
20 1 35 + 2100960
21 1 35 + 106939
22 1 35 + 2597433
23 1 35 + 2110722
24 1 42 + 124666
25 1 <state 0x17696>
18 1 3 + 8344913
19 1 3 + 6596558
20 1 35 + 84674
21 1 35 + 1488316
22 1 35 + 1489124
23 1 35 + 2435848
24 1 35 + 2584483
25 1 35 + 2462130
26 1 35 + 2532909
27 1 93 + 48717
28 1 93 + 310350
29 1 93 + 383753
30 1 93 + 171933
31 1 93 + 416383
32 1 93 + 509280
33 1 93 + 816709
34 1 93 + 512242
35 1 42 + 121714
36 1 <state 0x176b4>
18 1 3 + 8345195
19 1 35 + 36292
20 1 35 + 1435275
21 1 35 + 2436251
22 1 35 + 2587390
23 1 35 + 2809910
24 1 93 + 310350
25 1 93 + 385809
26 1 93 + 171933
27 1 93 + 416383
28 1 93 + 509280
29 1 93 + 816709
30 1 93 + 512242
31 1 42 + 121714
32 1 <state 0x176b4>
14 1 3 + 12338757
15 1 3 + 11702464
16 1 3 + 5101142
17 1 3 + 10883637
18 1 3 + 10884024
19 1 3 + 10887166
20 1 35 + 36100
21 1 35 + 2442935
22 1 35 + 2462130
23 1 35 + 2532909
24 1 93 + 48717
25 1 93 + 310350
26 1 93 + 383753
27 1 93 + 171933
28 1 93 + 416383
29 1 93 + 509280
30 1 93 + 816709
31 1 93 + 512242
32 1 42 + 121714
33 1 <state 0x176b0>
14 1 3 + 11855902
15 1 3 + 11702464
16 1 3 + 3025019
17 1 3 + 8344472
18 1 3 + 8345195
19 1 35 + 36100
20 1 35 + 2442748
21 1 35 + 2445732
22 1 35 + 2809910
23 1 93 + 310350
24 1 93 + 379366
25 1 35 + 2405339
26 1 35 + 2617857
27 1 35 + 2148616
28 1 27 + 162214
29 1 42 + 122266
30 1 <state 0x17694>
13 3 3 + 7163824
14 2 3 + 11864050
15 2 3 + 7450369
16 2 3 + 8887521
17 2 3 + 7448157
18 2 3 + 8344472
19 2 3 + 8345024
20 2 35 + 453496
21 2 35 + 456052
22 1 35 + 2095891
23 1 35 + 1909304
24 1 35 + 2101287
25 1 35 + 2100960
26 1 35 + 106939
27 1 35 + 2597433
28 1 35 + 2110722
29 1 42 + 124666
30 1 <state 0x17690>
22 1 35 + 2095909
23 1 35 + 1909304
24 1 35 + 2101287
25 1 35 + 2100960
26 1 35 + 106939
27 1 35 + 2597433
28 1 35 + 2110722
29 1 42 + 124666
30 1 <state 0x176b4>
14 1 3 + 11864014
15 1 3 + 7452593
16 1 3 + 10357315
17 1 3 + 12191466
18 1 35 + 116686
19 1 35 + 1537861
20 1 35 + 1543190
21 1 35 + 1073818
22 1 35 + 2180483
23 1 35 + 2180841
24 1 35 + 106939
25 1 35 + 2597433
26 1 35 + 2110722
27 1 42 + 124666
11 1 3 + 10850540
12 1 3 + 10849270
13 1 3 + 9561584
14 1 3 + 9942662
15 1 35 + 3193834
16 1 35 + 3189652
17 1 35 + 3225087
18 1 35 + 1964021
19 1 35 + 1961908
20 1 35 + 2044845
21 1 35 + 2031640
22 1 35 + 2031325
23 1 35 + 2032106
24 1 59 + 858148
25 1 59 + 822609
26 1 59 + 858878
27 1 59 + 859001
28 1 4 + 72376
29 1 4 + 71784
30 1 4 + 68804
31 1 4 + 46435
32 1 4 + 57099
33 1 4 + 57494
34 1 59 + 861038
35 1 35 + 1931001
36 1 3 + 2051145
37 1 3 + 2037940
38 1 2 + 288029
39 1 2 + 290749
40 1 2 + 1013581
41 1 2 + 301278
42 1 2 + 2195218
43 1 2 + 2195566
44 1 2 + 305805
45 1 2 + 307264
46 1 2 + 2183607
47 1 12 + 1923760
48 1 12 + 1925799
49 1 12 + 2004014
50 1 12 + 1756723
51 1 12 + 1751814
52 1 12 + 1748385
53 1 12 + 2480027
54 1 12 + 102957
55 1 12 + 103239
56 1 12 + 54807
57 1 12 + 1648202
58 1 12 + 1642158
59 1 42 + 123154
60 1 <state 0x1b6b4>
8 2 71 + 22346
9 2 84 + 469843
10 2 42 + 124666
11 1 <state 0x164b4>
5 2 73 + 90234
6 2 73 + 16513
7 2 73 + 85633
8 2 73 + 7608
9 1 41 + 44929
10 1 41 + 133745
11 1 41 + 18319
12 1 41 + 226616
13 1 93 + 310350
14 1 93 + 383753
15 1 93 + 171933
16 1 93 + 416383
17 1 93 + 510501
18 1 93 + 560882
19 1 93 + 512242
20 1 42 + 121714
21 1 <state 0x16490>
9 1 41 + 44897
10 1 41 + 131010
11 1 41 + 131185
12 1 41 + 132123
13 1 41 + 18319
14 1 41 + 226616
15 1 93 + 310350
16 1 93 + 358155
17 1 93 + 487960
18 1 93 + 500229
19 1 93 + 489003
20 1 93 + 825866
21 1 93 + 512242
22 1 42 + 121714
23 1 <state 0x164b4>
1 6 7 + 12649
2 6 73 + 14165
3 3 73 + 14761
4 2 73 + 50995
5 2 73 + 85760
6 2 73 + 7608
7 2 73 + 38394
8 2 41 + 89420
9 2 3 + 5322852
10 2 3 + 9712845
11 2 3 + 5484454
12 2 3 + 7547270
13 2 86 + 151708
14 2 92 + 92155
15 2 3 + 3615154
16 2 35 + 36100
17 2 35 + 2442807
18 2 35 + 2447371
19 2 35 + 2672177
20 2 35 + 2670771
21 2 35 + 2638055
22 2 35 + 2637682
23 2 35 + 2608404
24 2 35 + 2218678
25 2 35 + 2110722
26 2 42 + 124666
4 1 73 + 60613
5 1 73 + 7608
6 1 73 + 38394
7 1 41 + 89420
8 1 59 + 367962
9 1 59 + 368202
10 1 59 + 369769
11 1 2 + 520466
12 1 2 + 521032
13 1 2 + 532262
14 1 2 + 532768
15 1 2 + 282093
16 1 2 + 286917
17 1 2 + 288029
18 1 2 + 290749
19 1 2 + 1013581
20 1 2 + 300763
21 1 2 + 988494
22 1 2 + 1029261
23 1 2 + 4539461
24 1 2 + 4558779
25 1 12 + 1923760
26 1 12 + 1925799
27 1 12 + 2004014
28 1 12 + 1756723
29 1 12 + 1751814
30 1 12 + 1748646
31 1 12 + 2480027
32 1 12 + 102957
33 1 12 + 103239
34 1 12 + 54807
35 1 12 + 1648202
36 1 12 + 1642297
37 1 42 + 123154
38 1 <state 0x1b690>
3 3 73 + 15148
4 3 73 + 7608
5 3 73 + 38394
6 3 41 + 89420
7 1 3 + 11010364
8 1 1 + 114520
9 1 86 + 264096
10 1 3 + 2930171
11 1 3 + 6601910
12 1 3 + 6603246
13 1 35 + 36100
14 1 35 + 2442807
15 1 35 + 2447027
16 1 35 + 2671468
17 1 35 + 2670202
18 1 35 + 2637682
19 1 35 + 2608290
20 1 35 + 2107700
21 1 42 + 116834
22 1 <state 0x15b92>
7 1 3 + 11010222
8 1 3 + 11016056
9 1 86 + 151708
10 1 92 + 92155
11 1 3 + 3615154
12 1 35 + 36100
13 1 35 + 2442935
14 1 35 + 2462130
15 1 35 + 2532909
16 1 93 + 48717
17 1 93 + 310350
18 1 93 + 383753
19 1 93 + 171933
20 1 93 + 416383
21 1 93 + 509280
22 1 93 + 816709
23 1 93 + 512242
24 1 42 + 121714
25 1 <state 0x15b92>
7 1 3 + 11012074
8 1 86 + 151708
9 1 92 + 92155
10 1 3 + 3615154
11 1 35 + 36100
12 1 35 + 2442707
13 1 35 + 2444582
14 1 35 + 2153271
15 1 27 + 1360619
16 1 27 + 241934
17 1 27 + 492385
18 1 42 + 117906
19 1 <state 0x15b92>

Powerstats for: iTerm2
UUID: 61
Microstackshots: 12 samples
Primary state: 5 samples state 0x15292
0 12 7 + 11241
1 12 7 + 12242
2 12 73 + 109857
3 12 73 + 93965
4 12 73 + 37222
5 12 73 + 90647
6 12 73 + 7608
7 12 73 + 38394
8 12 85 + 10184472
9 12 85 + 10181330
10 7 85 + 10180792
11 7 42 + 124690
12 2 <state 0x15294>
12 1 <state 0x15290>
12 1 <state 0x15296>
10 5 85 + 10179882
11 5 42 + 124690
12 3 <state 0x15294>

Powerstats for: touristd
UUID: 66
Microstackshots: 6 samples
Primary state: 6 samples state 0x15290
0 6 7 + 11241
1 6 7 + 12242
2 6 73 + 109857
3 6 73 + 93965
4 6 73 + 37222
5 6 73 + 90234
6 6 73 + 121610
7 6 73 + 59692
8 6 89 + 42080
9 6 89 + 42229
10 6 89 + 61306
11 6 89 + 58004
12 6 66 + 11051
13 6 66 + 15925
14 6 33 + 20907
15 6 33 + 23507
16 6 33 + 27913
17 3 33 + 22709
18 3 33 + 17257
19 3 33 + 15191
20 3 33 + 18636
21 3 27 + 925778
22 3 27 + 458341
23 3 27 + 461030
24 3 27 + 461111
25 3 42 + 124666
17 2 33 + 22364
18 2 33 + 15191
19 2 33 + 18636
20 2 27 + 925778
21 2 27 + 458341
22 2 27 + 461030
23 2 27 + 461111
24 2 42 + 124666
17 1 33 + 21666
18 1 33 + 15191
19 1 33 + 18636
20 1 27 + 925778
21 1 27 + 458341
22 1 27 + 461030
23 1 27 + 461111
24 1 42 + 124666

Powerstats for: quicklookd
UUID: 72
Microstackshots: 5 samples
Primary state: 2 samples state 0x16290
0 5 7 + 11241
1 5 7 + 12242
2 5 73 + 109857
3 5 73 + 93965
4 5 73 + 37222
5 4 73 + 90234
6 4 73 + 16513
7 4 73 + 85633
8 4 73 + 7608
9 4 53 + 7169
10 4 72 + 158304
11 4 72 + 78908
12 4 72 + 107357
13 4 53 + 10421
14 4 73 + 86497
15 4 73 + 7608
16 4 53 + 7169
17 4 72 + 107423
18 2 72 + 79050
19 2 72 + 78020
20 2 42 + 116906
18 2 72 + 79217
19 2 72 + 219847
20 2 72 + 134050
21 2 27 + 925778
22 2 27 + 458341
23 2 27 + 461030
24 2 27 + 461111
25 2 42 + 124666
26 2 <state 0x16294>
5 1 73 + 90647
6 1 73 + 7608
7 1 73 + 38394
8 1 53 + 7169
9 1 53 + 75739
10 1 72 + 34212
11 1 72 + 164035
12 1 72 + 171498
13 1 72 + 168999
14 1 72 + 86247
15 1 72 + 107357
16 1 53 + 10421
17 1 73 + 86497
18 1 73 + 7608
19 1 53 + 7169
20 1 72 + 107423
21 1 72 + 86329
22 1 72 + 82900
23 1 72 + 90704
24 1 72 + 107804
25 1 93 + 48598
26 1 93 + 516526
27 1 93 + 50596
28 1 93 + 51386
29 1 93 + 56298
30 1 93 + 69121
31 1 93 + 116644
32 1 93 + 148612
33 1 93 + 149627
34 1 93 + 177497
35 1 93 + 179679
36 1 93 + 184216
37 1 93 + 186379
38 1 93 + 193890
39 1 <state 0x16494>

Powerstats for: Code Helper (Ren
UUID: 10
Microstackshots: 5 samples
Primary state: 4 samples state 0x16494
0 4 7 + 11257
1 4 7 + 13581
2 4 7 + 13921
3 4 6 + 92096890
4 3 42 + 124666
4 1 42 + 114766
0 1 32 + 4117
1 1 10 + 5029
2 1 6 + 12564
3 1 6 + 11754900
4 1 6 + 60859705
5 1 6 + 11757292
6 1 6 + 89782715
7 1 6 + 36214583
8 1 6 + 36392856
9 1 6 + 36770184
10 1 6 + 36774753
11 1 27 + 137030
12 1 84 + 544659
13 1 84 + 546605
14 1 84 + 549552
15 1 84 + 1433164
16 1 84 + 669777
17 1 6 + 36771775
18 1 6 + 35973978
19 1 6 + 36773459
20 1 6 + 36391607
21 1 6 + 36390372
22 1 6 + 36324818
23 1 6 + 71759461
24 1 6 + 71660085
25 1 6 + 71661686
26 1 6 + 71657903
27 1 6 + 64065517
28 1 6 + 64065197
29 1 6 + 63349808
30 1 6 + 21066451
31 1 6 + 23130622
32 1 6 + 23131797
33 1 6 + 32069688
34 1 6 + 32070234
35 1 6 + 32081025
36 1 6 + 32081025
37 1 6 + 32081025
38 1 6 + 32654473
39 1 6 + 32081025
40 1 6 + 32054169
41 1 6 + 32081025
42 1 6 + 32081025
43 1 6 + 32990875
44 1 6 + 32062781
45 1 6 + 32081025
46 1 6 + 32081025
47 1 6 + 32081025
48 1 6 + 32989696
49 1 6 + 32063072
50 1 6 + 32397910
51 1 6 + 32081025
52 1 6 + 32054169
53 1 6 + 32081025
54 1 6 + 32054169
55 1 6 + 32081025
56 1 6 + 32081025
57 1 6 + 32081025
58 1 6 + 32580825
59 1 6 + 22330274
60 1 6 + 22332775
61 1 6 + 22591564
62 1 6 + 91736065
63 1 42 + 114478
64 1 <state 0x17c94>

Powerstats for: mds
UUID: 88
Microstackshots: 4 samples
Primary state: 2 samples state 0x15290
0 4 7 + 11241
1 4 7 + 12242
2 4 73 + 109857
3 4 73 + 93965
4 4 73 + 37222
5 4 73 + 90234
6 4 73 + 22898
7 4 73 + 90234
8 4 73 + 28770
9 4 73 + 28073
10 4 34 + 23944
11 4 34 + 25657
12 4 28 + 385482
13 3 88 + 947075
14 3 42 + 124666
15 2 <state 0x15294>
13 1 88 + 174476
14 1 88 + 1389153
15 1 88 + 180092
16 1 88 + 1260852
17 1 88 + 197158
18 1 88 + 891548
19 1 88 + 869015
20 1 42 + 119226

Powerstats for: steam_osx
UUID: 56
Microstackshots: 4 samples
Primary state: 4 samples state 0x16490
0 4 7 + 11257
1 4 7 + 13581
2 4 7 + 13921
3 4 57 + 63191
4 4 57 + 46094
5 4 57 + 45885
6 4 57 + 47361
7 4 57 + 63321
8 2 69 + 13502207
9 2 42 + 124666
8 1 69 + 13502269
9 1 69 + 13489349
10 1 42 + 117906
8 1 69 + 13501968
9 1 42 + 124666

Powerstats for: Postman
UUID: 75
Microstackshots: 4 samples
Primary state: 3 samples state 0x16d96
0 4 7 + 11257
1 4 7 + 13581
2 4 7 + 13921
3 3 15 + 37562295
4 2 15 + 37253236
5 2 15 + 37253725
6 2 15 + 37224496
7 2 15 + 37519654
8 2 15 + 37225327
9 2 15 + 37226834
10 2 15 + 37139618
11 2 15 + 31071194
12 2 15 + 30718063
13 2 15 + 30729032
14 2 15 + 30673723
15 2 15 + 30675418
16 2 15 + 31005225
17 2 15 + 31005093
18 2 15 + 31270438
19 2 15 + 30688182
20 2 15 + 30564050
21 2 15 + 30566501
22 2 15 + 31096960
23 2 15 + 31106447
24 2 15 + 49948707
25 2 15 + 49977522
26 2 15 + 49999826
27 2 15 + 50000167
28 2 15 + 49946490
29 2 42 + 124666
4 1 15 + 49948224
5 1 15 + 49936137
6 1 15 + 49936390
7 1 15 + 49968917
8 1 15 + 49969988
9 1 15 + 49972126
10 1 15 + 50076951
11 1 15 + 50077080
12 1 15 + 50077422
13 1 15 + 50077564
14 1 15 + 49946490
15 1 42 + 124666
3 1 15 + 94386602
4 1 42 + 123154
5 1 <state 0x12496>

Powerstats for: Electron
UUID: 24
Microstackshots: 3 samples
Primary state: 2 samples state 0x17f96
0 2 32 + 4117
1 2 24 + 2528
2 2 6 + 12564
3 2 6 + 11754900
4 2 6 + 60859705
5 2 6 + 11757310
6 2 6 + 11758306
7 2 6 + 13079766
8 2 6 + 13096690
9 2 6 + 13091219
10 2 6 + 36214583
11 2 6 + 36392856
12 2 6 + 36770184
13 2 6 + 36775516
14 2 85 + 223309
15 2 85 + 8224308
16 2 85 + 268859
17 2 74 + 194692
18 2 74 + 195334
19 2 74 + 195990
20 2 84 + 544659
21 2 84 + 546605
22 2 84 + 549552
23 2 84 + 1433164
24 2 84 + 669777
25 2 6 + 36771775
26 2 6 + 35973978
27 2 6 + 36773459
28 2 6 + 36391607
29 2 6 + 36390372
30 2 6 + 36324818
31 2 6 + 39647598
32 2 6 + 39556506
33 2 6 + 39554339
34 2 6 + 39584580
35 2 6 + 39586494
36 2 6 + 39566265
37 2 6 + 35423692
38 2 6 + 509015
39 2 6 + 509459
40 2 6 + 566029
41 2 6 + 566327
42 2 6 + 1221455
43 2 6 + 90635537
44 2 6 + 90634957
45 2 6 + 90634052
46 2 6 + 23245641
47 2 6 + 23133304
48 2 6 + 23131437
49 2 6 + 32070072
50 2 6 + 32199098
51 2 6 + 32403090
52 2 6 + 32254800
53 2 6 + 32081025
54 2 6 + 32081025
55 2 6 + 32081025
56 2 6 + 32081025
57 2 6 + 32081025
58 2 6 + 32081025
59 2 6 + 32081025
60 2 6 + 32081025
61 2 6 + 32580825
62 2 6 + 22330274
63 2 6 + 22332775
64 2 6 + 22591564
65 2 6 + 91200211
66 2 6 + 92131571
67 2 42 + 124666
0 1 7 + 11257
1 1 7 + 13581
2 1 7 + 13921
3 1 6 + 92096890
4 1 36 + 91743
5 1 36 + 176782
6 1 36 + 447069
7 1 36 + 495174
8 1 36 + 365024
9 1 36 + 144762
10 1 42 + 116834
11 1 <state 0x16494>

Powerstats for: DesktopServicesH
UUID: 17
Microstackshots: 3 samples
Primary state: 3 samples state 0x15b94
0 3 7 + 11257
1 3 7 + 13581
2 3 7 + 13921
3 3 17 + 117023
4 3 17 + 117216
5 3 42 + 123154

Powerstats for: coresymbolicatio
UUID: 13
Microstackshots: 3 samples
Primary state: 3 samples state 0x16490
0 3 7 + 11241
1 3 7 + 12242
2 3 73 + 109857
3 3 73 + 93965
4 3 73 + 22898
5 3 73 + 90234
6 3 73 + 28770
7 3 73 + 28073
8 3 89 + 40725
9 3 89 + 46935
10 3 13 + 8211
11 3 42 + 123154

Powerstats for: eda_scan
UUID: 77
Microstackshots: 2 samples
Primary state: 2 samples state 0x15b94
0 2 32 + 4117
1 2 77 + 6280
2 2 77 + 7430
3 2 90 + 26803
4 2 90 + 29490
5 2 90 + 29712
6 2 82 + 76206
7 2 82 + 117496
8 2 9 + 260735
9 2 9 + 260089
10 2 42 + 116954

Powerstats for: Microsoft Word
UUID: 55
Microstackshots: 2 samples
Primary state: 1 samples state 0x1b696
0 2 7 + 11241
1 1 7 + 12649
2 1 73 + 14165
3 1 73 + 14761
4 1 73 + 60613
5 1 73 + 7608
6 1 73 + 38394
7 1 60 + 99521
8 1 49 + 531362
9 1 49 + 531593
10 1 49 + 532252
11 1 46 + 182774
12 1 46 + 184528
13 1 46 + 186174
14 1 46 + 292453
15 1 46 + 298603
16 1 46 + 371161
17 1 46 + 371631
18 1 46 + 372754
19 1 46 + 378835
20 1 46 + 380507
21 1 46 + 383241
22 1 46 + 396237
23 1 46 + 1287409
24 1 46 + 1286233
25 1 46 + 1283298
26 1 46 + 256580
27 1 46 + 257749
28 1 46 + 258976
29 1 46 + 264103
30 1 46 + 277733
31 1 46 + 277876
32 1 12 + 1923760
33 1 12 + 1925799
34 1 12 + 2004014
35 1 12 + 1756723
36 1 12 + 1751814
37 1 12 + 1748646
38 1 12 + 2480027
39 1 12 + 102957
40 1 12 + 103239
41 1 12 + 54807
42 1 12 + 1648202
43 1 12 + 1642375
44 1 42 + 123154
1 1 7 + 12242
2 1 73 + 109857
3 1 73 + 93965
4 1 73 + 37222
5 1 73 + 90234
6 1 73 + 16513
7 1 73 + 85633
8 1 73 + 7608
9 1 60 + 157387
10 1 93 + 310350
11 1 93 + 383753
12 1 93 + 171933
13 1 93 + 416383
14 1 93 + 510501
15 1 93 + 560882
16 1 93 + 512242
17 1 42 + 121714
18 1 <state 0x164b0>

Powerstats for: assistantd
UUID: 83
Microstackshots: 1 samples
Primary state: 1 samples state 0x15a90
0 1 7 + 11241
1 1 7 + 12242
2 1 73 + 109857
3 1 73 + 93965
4 1 73 + 37222
5 1 73 + 90647
6 1 73 + 7608
7 1 73 + 38394
8 1 83 + 591379
9 1 83 + 604154
10 1 25 + 267007
11 1 25 + 84198
12 1 25 + 79943
13 1 93 + 310350
14 1 93 + 334102
15 1 93 + 506962
16 1 93 + 508310
17 1 93 + 489003
18 1 93 + 825866
19 1 93 + 512242
20 1 42 + 121714

Powerstats for: IMDPersistenceAg
UUID: 37
Microstackshots: 1 samples
Primary state: 1 samples state 0x16490
0 1 7 + 11241
1 1 7 + 12242
2 1 73 + 109857
3 1 73 + 93965
4 1 73 + 37222
5 1 73 + 90647
6 1 73 + 7608
7 1 73 + 38394
8 1 81 + 75171
9 1 5 + 99139
10 1 5 + 681049
11 1 5 + 379794
12 1 5 + 367847
13 1 5 + 368769
14 1 81 + 51092
15 1 93 + 310350
16 1 93 + 385809
17 1 93 + 171933
18 1 93 + 416383
19 1 93 + 509280
20 1 93 + 816709
21 1 93 + 512242
22 1 42 + 121714

Powerstats for: dgdaemon
UUID: 70
Microstackshots: 1 samples
Primary state: 1 samples state 0x16394
0 1 7 + 11257
1 1 7 + 13581
2 1 7 + 13921
3 1 70 + 167447
4 1 70 + 154244
5 1 70 + 415458
6 1 70 + 412468
7 1 70 + 155344
8 1 70 + 482188
9 1 70 + 483268
10 1 70 + 483816
11 1 70 + 483986
12 1 70 + 481332
13 1 70 + 160533
14 1 42 + 124666

Powerstats for: parsecd
UUID: 39
Microstackshots: 1 samples
Primary state: 1 samples state 0x15b90
0 1 7 + 11241
1 1 7 + 12242
2 1 73 + 109857
3 1 73 + 93965
4 1 73 + 37222
5 1 73 + 90647
6 1 73 + 7608
7 1 73 + 38394
8 1 39 + 52549
9 1 39 + 50105
10 1 27 + 706821
11 1 27 + 461030
12 1 27 + 706957
13 1 42 + 124666

Powerstats for: com.apple.geod
UUID: 14
Microstackshots: 1 samples
Primary state: 1 samples state 0x16294
0 1 32 + 4117
1 1 14 + 117269
2 1 84 + 801379
3 1 84 + 544659
4 1 84 + 547898
5 1 84 + 801433
6 1 73 + 54165
7 1 73 + 7608
8 1 27 + 225564
9 1 73 + 82401
10 1 73 + 82750
11 1 73 + 7608
12 1 73 + 82750
13 1 73 + 7608
14 1 27 + 241934
15 1 27 + 248929
16 1 27 + 249343
17 1 58 + 3749003
18 1 58 + 3743178
19 1 27 + 458341
20 1 27 + 461030
21 1 27 + 461111
22 1 42 + 124666

Powerstats for: Microsoft Teams
UUID: 91
Microstackshots: 1 samples
Primary state: 1 samples state 0x15b90
0 1 7 + 11241
1 1 7 + 12649
2 1 73 + 14165
3 1 73 + 15148
4 1 73 + 7608
5 1 73 + 38394
6 1 67 + 527405
7 1 67 + 527098
8 1 67 + 531160
9 1 67 + 530235
10 1 67 + 530594
11 1 67 + 544589
12 1 67 + 534111
13 1 76 + 3584129
14 1 76 + 3591518
15 1 76 + 3543877
16 1 76 + 3544689
17 1 67 + 1897252
18 1 42 + 124666

Powerstats for: Evernote
UUID: 48
Microstackshots: 1 samples
Primary state: 1 samples state 0x17f92
0 1 32 + 4117
1 1 85 + 23098
2 1 85 + 223309
3 1 85 + 8224308
4 1 85 + 268859
5 1 74 + 194692
6 1 74 + 195334
7 1 74 + 195990
8 1 84 + 544659
9 1 84 + 547898
10 1 84 + 801433
11 1 73 + 54165
12 1 73 + 7608
13 1 73 + 38394
14 1 63 + 993717
15 1 63 + 1907011
16 1 48 + 5203437
17 1 48 + 5204448
18 1 48 + 5448189
19 1 48 + 5351925
20 1 48 + 5359235
21 1 16 + 53031
22 1 16 + 52621
23 1 12 + 2006162
24 1 12 + 1807636
25 1 12 + 1173578
26 1 12 + 1147412
27 1 12 + 1602082
28 1 12 + 1196645
29 1 12 + 1021351
30 1 12 + 1147412
31 1 12 + 1602082
32 1 12 + 1196645
33 1 12 + 1200933
34 1 12 + 1651133
35 1 12 + 54807
36 1 12 + 1648202
37 1 12 + 1642722
38 1 42 + 123154

Powerstats for: dota2
UUID: 43
Microstackshots: 1 samples
Primary state: 1 samples state 0x16d92
0 1 32 + 4117
1 1 43 + 3429
2 1 43 + 3552
3 1 50 + 400392
4 1 50 + 387466
5 1 50 + 384990
6 1 50 + 408030
7 1 50 + 839861
8 1 50 + 845354
9 1 50 + 1169258
10 1 30 + 77309
11 1 30 + 85025
12 1 30 + 134003
13 1 30 + 44816
14 1 30 + 196066
15 1 30 + 197382
16 1 9 + 246548
17 1 9 + 246717
18 1 42 + 119482

Powerstats for: parentalcontrols
UUID: 22
Microstackshots: 1 samples
Primary state: 1 samples state 0x15b94
0 1 32 + 4117
1 1 22 + 12293
2 1 84 + 801379
3 1 84 + 544659
4 1 84 + 547739
5 1 84 + 583114
6 1 84 + 584391
7 1 84 + 585300
8 1 27 + 626217
9 1 22 + 60282
10 1 22 + 94993
11 1 27 + 457919
12 1 27 + 460257
13 1 42 + 116834

System Profile:
Network Service: Wi-Fi, AirPort, en0
Boot Volume File System Type: apfs
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x80AD, 0x483943434E4E4E434C47414C41522D4E5644
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x80AD, 0x483943434E4E4E434C47414C41522D4E5644
USB Device: USB 3.0 Bus
USB Device: iBridge
Thunderbolt Bus: MacBook Pro, Apple Inc., 33.1
Thunderbolt Bus: MacBook Pro, Apple Inc., 33.1
Model: MacBookPro14,3, BootROM 204.0.0.0.0, 4 processors, Intel Core i7, 2.9 GHz, 16 GB, SMC 2.45f0
Graphics: Intel HD Graphics 630, Intel HD Graphics 630, Built-In
Graphics: Radeon Pro 560, Radeon Pro 560, PCIe
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x173), Broadcom BCM43xx 1.0 (7.77.37.33.1a1)
Bluetooth: Version 6.0.7f17, 3 services, 27 devices, 1 incoming serial ports

@heschi
Copy link
Contributor

heschi commented Aug 19, 2020

I don't know whether that's a kernel bug or if your computer is broken somehow, but it doesn't seem like it's due to gopls.

@stamblerre
Copy link
Contributor

Closing as this is in the WaitingForInfo state and gopls/v0.5.0 will be released soon. Please open a new issue if you still have this issue with gopls/v0.5.0-pre3 (GO111MODULE=on go get golang.org/x/tools/gopls@v0.5.0-pre3.

@golang golang locked and limited conversation to collaborators Sep 14, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository. WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.
Projects
None yet
Development

No branches or pull requests

4 participants