Package Data | |
---|---|
Maintainer Username: | yeesuu |
Maintainer Contact: | yeesuu@gmail.com (yeesuu) |
Package Create Date: | 2019-04-10 |
Package Last Update: | 2019-04-10 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:20:21 |
Package Statistics | |
---|---|
Total Downloads: | 43 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Via Composer
$ composer require olivefm/laravel-sls
Add following service providers into your providers array in config/app.php
Lokielse\LaravelSLS\LaravelSLSServiceProvider::class
Copy sls.php
to config
folder
For Lumen
Add following code into in bootstrap/app.php
$app->configure("sls");
Replace Log
alias in your config/app.php
(Optional)
//'Log' => Illuminate\Support\Facades\Log::class,
'Log' => Lokielse\LaravelSLS\Facades\WriterFacade::class,
'SLSLog' => Lokielse\LaravelSLS\Facades\LogFacade::class,
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
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'])
]);
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 user foobar
Create and get the AccessKeyId
and AccessKeySecret
for user foorbar
update QUEUE_SLS_ACCESS_KEY
and QUEUE_SLS_ACCESS_SECRET
in .env
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
The MIT License (MIT). Please see License File for more information.