gy09535 commented on a change in pull request #2177:
URL: https://github.com/apache/apisix/pull/2177#discussion_r523862701



##########
File path: apisix/plugins/slslog/rfc5424.lua
##########
@@ -0,0 +1,104 @@
+--
+-- Licensed to the Apache Software Foundation (ASF) under one or more
+-- contributor license agreements.  See the NOTICE file distributed with
+-- this work for additional information regarding copyright ownership.
+-- The ASF licenses this file to You under the Apache License, Version 2.0
+-- (the "License"); you may not use this file except in compliance with
+-- the License.  You may obtain a copy of the License at
+--
+--     http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+local LOG_EMERG     = 0       --  system is unusable
+local LOG_ALERT     = 1       --  action must be taken immediately
+local LOG_CRIT      = 2       --  critical conditions
+local LOG_ERR       = 3       --  error conditions
+local LOG_WARNING   = 4       --  warning conditions
+local LOG_NOTICE    = 5       --  normal but significant condition
+local LOG_INFO      = 6       --  informational
+local LOG_DEBUG     = 7       --  debug-level messages
+
+local LOG_KERN      = 0       --  kernel messages
+local LOG_USER      = 1       --  random user-level messages
+local LOG_MAIL      = 2       --  mail system
+local LOG_DAEMON    = 3       --  system daemons
+local LOG_AUTH      = 4       --  security/authorization messages
+local LOG_SYSLOG    = 5       --  messages generated internally by syslogd
+local LOG_LPR       = 6       --  line printer subsystem
+local LOG_NEWS      = 7       --  network news subsystem
+local LOG_UUCP      = 8       --  UUCP subsystem
+local LOG_CRON      = 9       --  clock daemon
+local LOG_AUTHPRIV  = 10      --  security/authorization messages (private)
+local LOG_FTP       = 11      --  FTP daemon
+local LOG_LOCAL0    = 16      --  reserved for local use
+local LOG_LOCAL1    = 17      --  reserved for local use
+local LOG_LOCAL2    = 18      --  reserved for local use
+local LOG_LOCAL3    = 19      --  reserved for local use
+local LOG_LOCAL4    = 20      --  reserved for local use
+local LOG_LOCAL5    = 21      --  reserved for local use
+local LOG_LOCAL6    = 22      --  reserved for local use
+local LOG_LOCAL7    = 23      --  reserved for local use
+
+local Facility = {
+    ["KERN"] = LOG_KERN,

Review comment:
       fixed.

##########
File path: doc/plugins/sls-logger.md
##########
@@ -0,0 +1,119 @@
+<!--
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+-->
+
+- [中文](../zh-cn/plugins/sls-logger.md)
+
+# Summary
+
+- [**Name**](#name)
+- [**Attributes**](#attributes)
+- [**How To Enable**](#how-to-enable)
+- [**Test Plugin**](#test-plugin)
+- [**Disable Plugin**](#disable-plugin)
+
+## Name
+
+`sls-logger` is a plugin which push Log data requests to ali cloud [Log 
Server](https://help.aliyun.com/document_detail/112903.html?spm=a2c4g.11186623.6.763.21321b47wcwt1u)
 with  [RF5424](https://tools.ietf.org/html/rfc5424).
+
+This plugin provides the ability to push Log data as a batch to ali cloud log 
service. In case if you did not recieve the log data don't worry give it some 
time it will automatically send the logs after the timer function expires in 
our Batch Processor.
+
+For more info on Batch-Processor in Apache APISIX please refer
+[Batch-Processor](../batch-processor.md)
+
+## Attributes
+
+|Name           |Requirement    |Description|
+|---------      |--------       |-----------|
+|host           |required       | IP address or the Hostname of the TCP 
server, please reference ali cloud log [Serve 
List](https://help.aliyun.com/document_detail/29008.html?spm=a2c4g.11186623.2.14.49301b4793uX0z#reference-wgx-pwq-zdb),
 use IP address insted of domain.|
+|port           |required       |Target upstream port, default 10009.|
+|timeout        |optional       |Timeout for the upstream to send data.|
+| project |required|Ali cloud log service project name,please creat in sls 
before us this plugin.|
+| logstore | required |Ali cloud log service  logstore name,please creat in 
sls before us this plugin.|
+| access_key_id | required | Ali cloud AccessKey ID, reference 
[Authorization](https://help.aliyun.com/document_detail/47664.html?spm=a2c4g.11186623.2.15.49301b47lfvxXP#task-xsk-ttc-ry).|
+| access_key_secret | required |Ali cloud AccessKey Secret, reference 
[Authorization](https://help.aliyun.com/document_detail/47664.html?spm=a2c4g.11186623.2.15.49301b47lfvxXP#task-xsk-ttc-ry).|
+| include_req_body | required| Boolean value. |
+|name           |optional       |A unique identifier to identity the batch 
processor.|
+|batch_max_size |optional       |Max size of each batch.|
+|inactive_timeout|optional      |maximum age in seconds when the buffer will 
be flushed if inactive.|
+|buffer_duration|optional       |Maximum age in seconds of the oldest entry in 
a batch before the batch must be processed.|
+|max_retry_count|optional       |Maximum number of retries before removing 
from the processing pipe line; default is zero.|
+|retry_delay    |optional       |Number of seconds the process execution 
should be delayed if the execution fails; default is 1.|
+
+## How To Enable
+
+The following is an example on how to enable the sls-logger for a specific 
route.
+
+```shell
+curl http://127.0.0.1:9080/apisix/admin/routes/5 -H 'X-API-KEY: 
edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
+{
+    "plugins": {
+        "sls-logger": {
+            "host": "100.100.99.135",
+            "port": 10009,
+            "project": "your_project",
+            "logstore": "your_logstore",
+            "access_key_id": "your_access_key_id",
+            "access_key_secret": "your_access_key_secret",
+            "timeout": 30000
+            }

Review comment:
       fixed.

##########
File path: doc/plugins/sls-logger.md
##########
@@ -0,0 +1,119 @@
+<!--
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+-->
+
+- [中文](../zh-cn/plugins/sls-logger.md)
+
+# Summary
+
+- [**Name**](#name)
+- [**Attributes**](#attributes)
+- [**How To Enable**](#how-to-enable)
+- [**Test Plugin**](#test-plugin)
+- [**Disable Plugin**](#disable-plugin)
+
+## Name
+
+`sls-logger` is a plugin which push Log data requests to ali cloud [Log 
Server](https://help.aliyun.com/document_detail/112903.html?spm=a2c4g.11186623.6.763.21321b47wcwt1u)
 with  [RF5424](https://tools.ietf.org/html/rfc5424).
+
+This plugin provides the ability to push Log data as a batch to ali cloud log 
service. In case if you did not recieve the log data don't worry give it some 
time it will automatically send the logs after the timer function expires in 
our Batch Processor.
+
+For more info on Batch-Processor in Apache APISIX please refer
+[Batch-Processor](../batch-processor.md)
+
+## Attributes
+
+|Name           |Requirement    |Description|
+|---------      |--------       |-----------|
+|host           |required       | IP address or the Hostname of the TCP 
server, please reference ali cloud log [Serve 
List](https://help.aliyun.com/document_detail/29008.html?spm=a2c4g.11186623.2.14.49301b4793uX0z#reference-wgx-pwq-zdb),
 use IP address insted of domain.|
+|port           |required       |Target upstream port, default 10009.|
+|timeout        |optional       |Timeout for the upstream to send data.|
+| project |required|Ali cloud log service project name,please creat in sls 
before us this plugin.|
+| logstore | required |Ali cloud log service  logstore name,please creat in 
sls before us this plugin.|
+| access_key_id | required | Ali cloud AccessKey ID, reference 
[Authorization](https://help.aliyun.com/document_detail/47664.html?spm=a2c4g.11186623.2.15.49301b47lfvxXP#task-xsk-ttc-ry).|
+| access_key_secret | required |Ali cloud AccessKey Secret, reference 
[Authorization](https://help.aliyun.com/document_detail/47664.html?spm=a2c4g.11186623.2.15.49301b47lfvxXP#task-xsk-ttc-ry).|
+| include_req_body | required| Boolean value. |
+|name           |optional       |A unique identifier to identity the batch 
processor.|
+|batch_max_size |optional       |Max size of each batch.|
+|inactive_timeout|optional      |maximum age in seconds when the buffer will 
be flushed if inactive.|
+|buffer_duration|optional       |Maximum age in seconds of the oldest entry in 
a batch before the batch must be processed.|
+|max_retry_count|optional       |Maximum number of retries before removing 
from the processing pipe line; default is zero.|
+|retry_delay    |optional       |Number of seconds the process execution 
should be delayed if the execution fails; default is 1.|
+
+## How To Enable
+
+The following is an example on how to enable the sls-logger for a specific 
route.
+
+```shell
+curl http://127.0.0.1:9080/apisix/admin/routes/5 -H 'X-API-KEY: 
edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
+{
+    "plugins": {
+        "sls-logger": {
+            "host": "100.100.99.135",
+            "port": 10009,
+            "project": "your_project",
+            "logstore": "your_logstore",
+            "access_key_id": "your_access_key_id",
+            "access_key_secret": "your_access_key_secret",
+            "timeout": 30000
+            }
+       },

Review comment:
       fixed.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to