Considerations for using C++ or script entry points

You may implement an entry point as a C++ function or a script.

Note that you may use C++ or scripts in any combination to implement multiple entry points for a single agent. This allows you to implement each entry point in the most advantageous manner. For example, you may use scripts to implement most entry points while using C++ to implement the monitor entry point, which is called often. If the monitor entry point were written in script, the agent must create a new process to run the monitor entry point each time it is called.

See About creating entry points in C++.

See About creating entry points in scripts.