kezhenxu94 commented on a change in pull request #6120:
URL: https://github.com/apache/skywalking/pull/6120#discussion_r551117179
##########
File path: docs/en/setup/backend/configuration-vocabulary.md
##########
@@ -204,6 +204,7 @@ core|default|role|Option values,
`Mixed/Receiver/Aggregator`. **Receiver** mode
| - | - | createTopicIfNotExist | If true, create the Kafka topic when it does
not exist. | - | true |
| - | - | partitions | The number of partitions for the topic being created. |
SW_KAFKA_FETCHER_PARTITIONS | 3 |
| - | - | enableMeterSystem | To enable to fetch and handle [Meter
System](backend-meter.md) data. | SW_KAFKA_FETCHER_ENABLE_METER_SYSTEM | false |
+| - | - | enableLog | To enable to fetch and handler log data. |
SW_KAFKA_FETCHER_ENABLE_LOG | false |
Review comment:
```suggestion
| - | - | enableLog | To enable to fetch and handle log data. |
SW_KAFKA_FETCHER_ENABLE_LOG | false |
```
##########
File path: .github/workflows/e2e.log.yaml
##########
@@ -0,0 +1,66 @@
+# 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.
+
+name: E2E
+
+on:
+ pull_request:
+ paths:
+ - '**'
+ - '!**.md'
+ push:
+ branches:
+ - master
+
+env:
+ SKIP_TEST: true
+
+jobs:
+ Log:
+ name: Log
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ storage: ['h2', 'mysql', 'es6', 'es7', 'influxdb']
+ env:
+ SW_STORAGE: ${{ matrix.storage }}
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: true
+ - name: Cache local Maven repository
+ uses: actions/cache@v2
+ with:
+ path: ~/.m2/repository
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+ restore-keys: |
+ ${{ runner.os }}-maven-
+ - name: checkout submodules
+ shell: bash
+ run: |
+ git submodule sync --recursive
+ git -c protocol.version=2 submodule update --init --force
--recursive --depth=1
Review comment:
No need
----------------------------------------------------------------
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]