tarfin-labs / laravel-cloudwatch-logger
Laravel logger for AWS Clouldwatch Log service.
Installs: 37 908
Dependents: 0
Suggesters: 0
Security: 0
Stars: 14
Watchers: 7
Forks: 4
Open Issues: 1
Requires
- php: ^7.3|^8.0|^8.1|^8.2|^8.3
- illuminate/support: ^7.0|^8.0|^9.0|^10.0|^11.0
- phpnexus/cwh: ^2.0|^3.0
Requires (Dev)
- orchestra/testbench: ^5.0|^6.0|^7.0|^8.0|^9.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-11-08 13:56:11 UTC
README
Laravel logger factory for AWS Cloudwatch Logs service.
Installation
You can install the package via composer:
composer require tarfin-labs/laravel-cloudwatch-logger
Usage
Config parameters for logging are defined at config/logging.php
.
You need to add new channel as cloudwatch
and copy params inside config/config.php
into it.
'channels' => [ ... 'cloudwatch' => [ 'driver' => 'custom', 'via' => \TarfinLabs\LaravelCloudWatchLogger\LaravelCloudWatchLoggerFactory::class, 'aws' => [ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'version' => 'latest', 'credentials' => [ 'key' => env('AWS_ACCESS_KEY_ID'), 'secret' => env('AWS_SECRET_ACCESS_KEY'), ], ], 'name' => env('CLOUDWATCH_LOG_NAME', ''), 'group' => env('CLOUDWATCH_LOG_GROUP_NAME', env('APP_NAME') . '-' . env('APP_ENV')), 'stream' => env('CLOUDWATCH_LOG_STREAM', 'default'), 'retention' => env('CLOUDWATCH_LOG_RETENTION', 7), 'level' => env('CLOUDWATCH_LOG_LEVEL', 'error'), 'extra' => [ // In case there's extra information to be logged 'env' => env('APP_ENV'), 'php' => PHP_VERSION, 'laravel' => app()->version(), ], ], ],
Change the log channel inside .env
file with cloudwatch
.
LOG_CHANNEL=cloudwatch
You can use Laravel's default Log
class to send your logs to CloudWatch.
\Illuminate\Support\Facades\Log::info('user logged in successfully', [ 'id' => 1, 'username' => 'JohnDoe', 'ip' => '127.0.0.1', ]);
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email development@tarfin.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.