Debugging memory consumption in an Endpoint Security process

I have a launch daemon that's using the Endpoint Security framework which also is causing high memory usage (in Activity Monitor memory column shows for example 2GB and Real Memory 11MB) when building a big project in Xcode. Is it some kind of memory caching by the system? leaks -forkCorpse seems to not show any leaks.

How can I attach with heap or Instruments without the process being killed with "ENDPOINTSECURITY, Code 2 EndpointSecurity client terminated because it failed to respond to a message before its deadline"?

Answered by DTS Engineer in 829925022
Written by FallGuy in 776939021
How can I attach with heap or Instruments without the process being killed … ?

You can’t.

However, most of these tools do support targeting a forked corpse. Certainly that’s true for heap.

Oh, and leaks will let you export a memory graph (via -outputGraph) which you can then feed into a variety of tool, including Xcode itself.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Written by FallGuy in 776939021
How can I attach with heap or Instruments without the process being killed … ?

You can’t.

However, most of these tools do support targeting a forked corpse. Certainly that’s true for heap.

Oh, and leaks will let you export a memory graph (via -outputGraph) which you can then feed into a variety of tool, including Xcode itself.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Debugging memory consumption in an Endpoint Security process
 
 
Q