You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2019/04/05 00:10:00 UTC

[incubator-skywalking] branch log updated: Add http_access_log to disable list.

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch log
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/log by this push:
     new 12ce3dd  Add http_access_log to disable list.
12ce3dd is described below

commit 12ce3dd60bba76d5c6ac299bd2b55d8a6e39b678
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Thu Apr 4 17:09:49 2019 -0700

    Add http_access_log to disable list.
---
 .../src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALLexer.g4  | 1 +
 .../src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALParser.g4 | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALLexer.g4 b/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALLexer.g4
index b9cb869..8ae21e2 100644
--- a/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALLexer.g4
+++ b/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALLexer.g4
@@ -51,6 +51,7 @@ SRC_ENDPOINT_RELATION_SERVER_SIDE: 'endpoint_relation_server_side';
 SRC_SERVICE_RELATION_SERVER_SIDE: 'service_relation_server_side';
 SRC_SERVICE_RELATION_CLIENT_SIDE: 'service_relation_client_side';
 SRC_ALARM_RECORD: 'alarm_record';
+SRC_HTTP_ACCESS_LOG: 'http_access_log';
 
 SRC_ZIPKIN_SPAN: 'zipkin_span';
 SRC_JAEGER_SPAN: 'jaeger_span';
diff --git a/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALParser.g4 b/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALParser.g4
index 2622156..f407c02 100644
--- a/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALParser.g4
+++ b/oap-server/generate-tool-grammar/src/main/antlr4/org/apache/skywalking/oal/tool/grammar/OALParser.g4
@@ -60,7 +60,7 @@ source
 
 disableSource
     : SRC_SEGMENT | SRC_TOP_N_DB_STATEMENT | SRC_ENDPOINT_RELATION_SERVER_SIDE | SRC_SERVICE_RELATION_SERVER_SIDE |
-      SRC_SERVICE_RELATION_CLIENT_SIDE | SRC_ALARM_RECORD
+      SRC_SERVICE_RELATION_CLIENT_SIDE | SRC_ALARM_RECORD | SRC_HTTP_ACCESS_LOG
     ;
 
 sourceAttribute