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

Hyper HTTP Collector

Profile all calls made by Hyper as http/s

PreviousColdBox ModulesNextLucee SQL

Last updated 1 year ago

Was this helpful?

You can use the hyper configuration structure to configure the hyper panel in the debugger. This will track all outgoing http/s calls made by the Hyper module in your debugger.

Hyper exists to provide a fluent builder experience for HTTP requests and responses. It also provides a powerful way to create clients, i.e. Builder objects with pre-configured defaults like a base URL or certain headers.

// Hyper Collector
hyper    : {
	enabled         : false,
	expanded        : false,
	logResponseData : false,
	logRequestBody  : false
}
Key
Type
Default Value
Description

enabled

Boolean

false

Enable the collector

expanded

Boolean

false

Expand the panel by default or not

logResponseData

Boolean

false

Log the response from the API Call

logRequestBody

Boolean

false

Logs the request body

https://forgebox.io/view/hyper
Hyper Panel