Skip to content

Latest commit

 

History

History

profiler

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Profiler Plugin

Profiling is mainly the runtime analysis of a program performance by counting the calls and duration for the various routines executed thru the lifecycle of the application. For more information view the wikipedia article.

This plugin adds the ability to profile function calls while running Lite XL, becoming easier to investigate performance related issues and pinpoint what could be causing them. It integrates the lua-profiler which provides the functionality we need.

Usage

Open Lite XL and access the command palette by pressing ctrl+shift+p and search for profiler. The command Profiler: Toggle will be shown to let you start or stop the profiler. You should start the profiler before triggering the events that are causing any performance issues.

command

Note: Starting the profiler will make the editor slower since it is now accumulating metrics about every function call. Do not worry, this is expected and shouldn't affect the end result, just be patience because everything will be slower.

There may be some situations when you would like to enable the profiler early on the startup process so we provided a configuration option for that. Also the profiler output is saved to a log file for easy sharing, its default path is also configurable as shown below:

settings

Note: since the profiler is not part of the core, but a plugin, it will only start accumulating metrics once the plugin is loaded. The priority tag of the profiler plugin was set to 0 to make it one of the first plugins to start.

Once you have profiled enough you can execute the Profiler: Toggle command to stop it, the log will be automatically open with the collected metrics as shown below:

metrics

You can send Lite XL developers the output of profiler.log so it can be more easily diagnosed what could be causing any issue.