Download the PHP package popphp/pop-debug without Composer
On this page you can find all versions of the php package popphp/pop-debug. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download popphp/pop-debug
More information about popphp/pop-debug
Files in popphp/pop-debug
Package pop-debug
Short Description Pop Debug Component for Pop PHP Framework
License BSD-3-Clause
Homepage https://github.com/popphp/pop-debug
Informations about the package pop-debug
pop-debug
- Overview
- Install
- Quickstart
- Handlers
- Exception
- Memory
- Message
- PHP
- Query
- Request
- Time
- Storage
- File
- Database
- Logging
Overview
pop-debug is a debugging component that can be used to hook into an application to track
certain aspects of the application's lifecycle. It can help provide insight to an application's
performance or any issues that may arise within an application.
pop-debug is a component of the Pop PHP Framework.
Install
Install pop-debug using Composer.
composer require popphp/pop-debug
Or, require it in your composer.json file
"require": {
"popphp/pop-debug" : "^3.0.0"
}
Top
Quickstart
The basic concept of the debugger is that it works with a handler object or multiple handler objects and one storage object. The handlers are wired to listen to and track various aspects of the application and push their results to the storage object to be retrieved at a later time.
In this simple example, we can set up a generic message handler to store its triggered messages in a file.
The above code will save the following output to the log folder in a CSV file:
Top
Handlers
There are a total of 6 available handlers. More handlers can be added, provided they implement the
Pop\Debug\Handler\HandlerInterface interface.
Exception
The exception handler captures and tracks any exceptions thrown by an application.
Top
Memory
The memory handler captures memory usages and peak memory usage. At any point in the application,
you can call the updateMemoryUsage() and updatePeakMemoryUsage() methods to take a snapshot
of memory usage in the app at that time.
Top
Message
The message handler provides simple and generic messaging to record debug events from within the application:
Top
PHP
The PHP handler provides a way to take a snapshot of common PHP info and INI values:
Top
Query
The query handler is a special handler that ties into the pop-db component and the profiler
available with that component. It allows you to capture any database queries and any information
associated with them.
You can set up the query handler like this:
Top
Request
The request handler works with a Pop\Http\Server\Request object from the pop-http component and tracks
all of the inbound request data. The following example would be a block of code that would run in a script
that receives an inbound HTTP request:
Top
Time
The time handler provides a simple way to track how long a application request takes, which is useful for performance metrics.
Top
Storage
There are two different storage options are available to store the output of the debugger:
- CSV (or TSV) File
- Database Table
File
Store the debugger output into a file in a folder location:
Top
Database
Store the debugger output into a table in a database. The default table name is pop_debug but that
can be changed with the database storage object.
Top
Logging
The debug component can also work with the pop-log component to deliver syslog-compatible logging messages
to a logging resource using the standard BSD syslog protocol RFC-3164.
Logging can be used in additional to the storage adapters, or by itself, sending the debug data and information
to the logging resource only and without storing anything to a storage adapter.
To work with a logger, a logger object must be passed to the debugger, along with logging parameters, which is an array
of options. The minimum parameter required is a level value. The context option can also be used to log the body
of the debug messaging results:
Other logging parameters options include:
Memory
The usage_limit and peak_limit are memory-specific limits to monitor is an operation goes above the specified limits.
Query, Request & Time
The limit parameter is supported for the query, request and time handlers. It is a time limit. If any of those
operations take longer than the time limit, a log message is sent.
Query Example:
Top
All versions of pop-debug with dependencies
popphp/pop-db Version ^6.7.0
popphp/pop-http Version ^5.3.8
popphp/pop-log Version ^4.0.4
popphp/pop-session Version ^4.0.4
php Version >=8.3.0