Download the PHP package vimar/enhanced-cloud-logging-formatter without Composer
On this page you can find all versions of the php package vimar/enhanced-cloud-logging-formatter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download vimar/enhanced-cloud-logging-formatter
More information about vimar/enhanced-cloud-logging-formatter
Files in vimar/enhanced-cloud-logging-formatter
Package enhanced-cloud-logging-formatter
Short Description A Monolog extension for formatting log entries for Google Cloud Logging and Error Reporting
License MIT
Informations about the package enhanced-cloud-logging-formatter
Enhanced Cloud Logging Formatter v3.x
Note v3.x version is only compatible with Monolog 3.x, please use v2.x if you use Monolog 2.x.
The Enhanced Cloud Logging Formatter
is a custom formatter for Monolog that replaces the default GoogleCloudLoggingFormatter
provided by Monolog. This formatter is designed to be used when you want to send logs from your PHP application to Google Cloud Logging.
Features
-
Error Reporting: The
GoogleCloudLoggingFormatter
enables error reporting, allowing you to control the reporting of error events to Google Cloud Platform (GCP). TheerrorReportingLevel
parameter can be modified to specify the minimum log level that triggers error reporting. - Complete Log Metadata: This formatter completes log metadata, providing additional context information before sending logs to GCP. This ensures that logs include comprehensive details, making it easier to analyze and debug issues. Additional metadata contains:
- Unique RequestId to easily search all the logs for a single HTTP request
- Exhaustive HTTP info for each log entries, such as request Url, referer, remote IP and User Agent
- For CLI commands, script command and script filename called
- When an error is thrown, add information about error context (report location, stack trace, exception message, service name and version number if they are provided)
Installation
You can install the Enhanced Cloud Logging Formatter
via Composer:
Basic Usage
To use the GoogleCloudLoggingFormatter
, you need to configure Monolog in your application.
In this example, logs are sent to the standard output (php://stdout
) using a StreamHandler with the GoogleCloudLoggingFormatter
. Adjust the handler configuration based on your specific logging needs.
Configuration Options
The GoogleCloudLoggingFormatter replaces the default Google Cloud Logging formatter from Monolog and supports the following configuration option:
errorReportingLevel
- The minimum log level that triggers error reporting.service
- GCP custom service name.version
- GCP custom version number.
Contributing
If you encounter issues or have suggestions for improvements, feel free to contribute to the project. Submit bug reports or feature requests through the GitHub repository.
License
The GoogleCloudLoggingFormatter is open-source software licensed under the MIT License. Feel free to use, modify, and distribute it in your projects.