You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by wu...@apache.org on 2018/09/04 12:27:16 UTC

[incubator-skywalking-oal-tool] branch master updated: Add a new id of service relation.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0d920d2  Add a new id of service relation.
0d920d2 is described below

commit 0d920d251538233ac5d8fe7db2f4a72ef99a2cb7
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Sep 4 20:27:09 2018 +0800

    Add a new id of service relation.
---
 .../org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java b/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
index fa86f0f..1994f5c 100644
--- a/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
+++ b/oal-parser/src/main/java/org/apache/skywalking/oal/tool/parser/SourceColumnsFactory.java
@@ -67,6 +67,8 @@ public class SourceColumnsFactory {
                 columnList.add(sourceService);
                 SourceColumn destService = new SourceColumn("destServiceId", "dest_service_id", int.class, true);
                 columnList.add(destService);
+                SourceColumn callType = new SourceColumn("callType", "call_type", int.class, true);
+                columnList.add(destService);
                 return columnList;
             case "ServiceInstanceRelation":
                 columnList = new LinkedList<>();