Download the PHP package khantzawhein/laravel-cloudwatch-logs without Composer
On this page you can find all versions of the php package khantzawhein/laravel-cloudwatch-logs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download khantzawhein/laravel-cloudwatch-logs
More information about khantzawhein/laravel-cloudwatch-logs
Files in khantzawhein/laravel-cloudwatch-logs
Package laravel-cloudwatch-logs
Short Description Laravel Adapter for AWS CloudWatch Which Works
License MIT
Informations about the package laravel-cloudwatch-logs
Logger for Aws Cloud Watch
Installation
composer require pagevamp/laravel-cloudwatch-logs
Example
You can use laravel's default \Log
class to use this
\Log::info('user logged in', ['id' => 123, 'name' => 'Naren']);
Config
Config for logging is defined at config/logging.php
. Add cloudwatch
to the channels
array
Add correct values to keys in your .env
file. And it should work.
If the role of your AWS EC2 instance has access to Cloudwatch logs, CLOUDWATCH_LOG_KEY
and CLOUDWATCH_LOG_SECRET
need not be defined in your .env
file.
Add To Project
Laravel 5.5 or Higher
This package uses laravel's Package discovery. To disable this package by default you can add DISABLE_CLOUDWATCH_LOG=true
to you local .env
file and this package will be disabled.
Laravel 5.4 or Lower
Add to the providers
array in config/app.php
:
Concept
This package relies on laravel's listener for log events. This package DOES NOT replace the default logging, instead adds additional log to AWS CLoud Watch. Hence you do not have to change the default log driver to make this work.
Contribution
I have added a pre-commit
hook to run php-cs-fixer
whenever you make a commit. To enable this run sh hooks.sh
.
All versions of laravel-cloudwatch-logs with dependencies
illuminate/support Version ^5.1 || ^6.0 || ^7.0 || ^8.0