Collections

Profile the request collections in ColdBox

You can use the collections configuration structure to configure the collections panel in the debugger. This will dump out the rc and the prc collections with the final snapshot of their data. We recommend that you only enable this collector with the appropriate dump top levels as it can completely crash your server trying to dump out all the variables in the collections.

WARNING : This collector can crash your server. Make sure you have limits and use it wisely.

// Request Collections Reporting
collections : {
	// Enable tracking
	enabled      : false,
	// Expanded panel or not
	expanded     : false,
	// How many rows to dump for object collections
	maxQueryRows : 50,
	// How many levels to output on dumps for objects
	maxDumpTop   : 5
}

Last updated