pandasir / laravel-sls
Aliyun SLS Log For Laravel
Requires
- php: >=5.5
- illuminate/support: ~5.1|~6.0|~7.0
- lokielse/aliyun-open-api-sls: ^1.0.0
Requires (Dev)
- phpunit/phpunit: ~4.0||~5.0
- scrutinizer/ocular: ~1.1
- squizlabs/php_codesniffer: ~2.3
This package is auto-updated.
Last update: 2025-03-22 22:17:45 UTC
README
说明
此包来源于 lokielse/laravel-sls
Install
Via Composer
$ composer require pandasir/laravel-sls
Config
If you’re on Laravel 5.5 or later the package will be auto-discovered. Otherwise you will need to manually configure it in your config/app.php.
Add following service providers into your providers array in config/app.php
'providers' => array( // ... Lokielse\LaravelSLS\LaravelSLSServiceProvider::class, ), 'aliases' => array( // ... 'SLSLog' => Lokielse\LaravelSLS\Facades\SlSLog::class, ),
If you’re need Log you can replace Log alias in your config/app.php
//'Log' => Illuminate\Support\Facades\Log::class, 'Log' => Lokielse\LaravelSLS\Facades\SLSLogWriter::class,
Publish sls.php
to config
folder
php artisan vendor:publish --provider="Lokielse\LaravelSLS\LaravelSLSServiceProvider"
Edit your .env
file
ALIYUN_ACCESS_KEY_ID=... ALIYUN_ACCESS_KEY_SECRET=... # https://help.aliyun.com/document_detail/29008.html # 如杭州公网 cn-hangzhou.log.aliyuncs.com # 如杭州内网 cn-hangzhou-intranet.log.aliyuncs.com SLS_ENDPOINT=cn-hangzhou.log.aliyuncs.com SLS_PROJECT=test-project SLS_STORE=test-store
You should update SLS_ENDPOINT
to internal endpoint
in production mode
Usage
First create a project and store at Aliyun SLS Console
Then update SLS_ENDPOINT
, SLS_PROJECT
, SLS_STORE
in .env
Push a test message to queue
Log::info('Test Message', ['foobar'=>'2003']); //or you can use `app('sls')` app('sls')->putLogs([ 'type' => 'test', 'message' => json_encode(['This should use json_encode']) ]); //or you can use `SLSLog` directly SLSLog::putLogs([ 'type' => 'test', 'message' => json_encode(['This should use json_encode']) ]);
Security
Create RAM access control at Aliyun RAM Console
-
Create a custom policy such as
AliyunSLSFullAccessFoobar
{ "Version": "1", "Statement": [ { "Action": "log:*", "Resource": [ "acs:log:*:*:project/test-project/logstore/test-store", ], "Effect": "Allow" } ] }
-
Create a user for you app such as
foobar
-
Assign the policy
AliyunSLSFullAccessFoobar
to the userfoobar
-
Create and get the
AccessKeyId
andAccessKeySecret
for userfoorbar
-
update
QUEUE_SLS_ACCESS_KEY
andQUEUE_SLS_ACCESS_SECRET
in.env
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CONDUCT for details.
Credits
License
The MIT License (MIT). Please see License File for more information.