For the complete documentation index, see llms.txt. This page is also available as Markdown.

End Custom Trace

API reference for ending a custom APM trace in Luciq. Close a trace you started to record how long a section of your code took to run.

You can use the following APIs to end a custom trace.

// End an existing trace
trace?.end()
// End an existing trace
[trace end];
// End an existing trace
trace.end();
// End an existing trace
trace?.end()
trace.end();

Last updated