firevel / request-logger
GCP Request Logger
Requires
- google/cloud-bigquery: ^1.25
This package is auto-updated.
Last update: 2024-11-25 04:37:28 UTC
README
The GCP Request Logger package is designed to store logs of every App Engine request within BigQuery. This includes detailed information such as peak memory and SQL queries. The primary purpose of this tool is to optimize memory usage within the App Engine.
Installation
Follow the steps below to successfully install the package:
- Install the package via composer:
composer require firevel/request-logger
- Propagate the
request-logger.php
configuration file by executing the following command:
php artisan vendor:publish --provider="Firevel\RequestLogger\Providers\RequestLoggerServiceProvider"
-
Establish a BigQuery dataset named
requests
and create a tableapi
. Ensure to set up the table schema as in schema.json file. -
Assign the
BigQuery Data Editor
role to your App Engine service account ({project}@appspot.gserviceaccount.com) for appropriate access. -
Add
\Firevel\RequestLogger\Middleware\LogRequest::class
middleware into yourApp\Http\Kernel.php
file.
Configuration
Additional configurations can be set up in the config/request-logger.php
file.
How it works.
Post installation and middleware inclusion, every request will be logged and stored in the api table within your requests dataset in the BigQuery. This logging will help you gain insights and further enhance the performance of your App Engine.