cbDebugger
  • Introduction
    • Release History
      • What's New With 4.2.0
      • What's New With 4.1.0
      • What's New With 4.0.0
    • About This Book
      • Author
  • Essentials
    • Installation
    • Configuration
    • Request Tracker
  • Collectors
    • Adobe SQL
    • Async
    • CacheBox
    • CBORM
    • Collections
    • ColdBox Interceptions
    • ColdBox Modules
    • Hyper HTTP Collector
    • Lucee SQL
    • Objects Methods
    • QB/Quick
    • Tracers
    • WireBox Creations
  • Advanced
    • Debug Mode
    • Debugger Interceptors
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. Collectors

Collections

Profile the request collections in ColdBox

PreviousCBORMNextColdBox Interceptions

Last updated 1 year ago

Was this helpful?

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
}
Key
Type
Default Value
Description

enabled

Boolean

false

Enable the collector

expanded

Boolean

false

Expand the panel by default or not

maxQueryRows

Integer

50

Number of rows to show for query dumps

maxDumpTop

Integer

5

How many levels to output on object dumps