[GitHub] ascrutae closed pull request #870: Fixed/855

2018-03-03 Thread GitBox
ascrutae closed pull request #870: Fixed/855
URL: https://github.com/apache/incubator-skywalking/pull/870
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/apm-collector/apm-collector-analysis/analysis-segment-parser/segment-parser-provider/src/test/java/org/apache/skywalking/apm/collector/analysis/segment/parser/provider/service/SegmentBase64Printer.java
 
b/apm-collector/apm-collector-analysis/analysis-segment-parser/segment-parser-provider/src/test/java/org/apache/skywalking/apm/collector/analysis/segment/parser/provider/service/SegmentBase64Printer.java
new file mode 100644
index 0..c729bf142
--- /dev/null
+++ 
b/apm-collector/apm-collector-analysis/analysis-segment-parser/segment-parser-provider/src/test/java/org/apache/skywalking/apm/collector/analysis/segment/parser/provider/service/SegmentBase64Printer.java
@@ -0,0 +1,78 @@
+/*
+ * 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.
+ *
+ */
+
+package 
org.apache.skywalking.apm.collector.analysis.segment.parser.provider.service;
+
+import com.google.protobuf.InvalidProtocolBufferException;
+import java.util.Base64;
+import java.util.List;
+import org.apache.skywalking.apm.network.proto.SpanObject;
+import org.apache.skywalking.apm.network.proto.TraceSegmentObject;
+import org.apache.skywalking.apm.network.proto.UniqueId;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * @author peng-yongsheng
+ */
+public class SegmentBase64Printer {
+
+private static final Logger LOGGER = 
LoggerFactory.getLogger(SegmentBase64Printer.class);
+
+public static void main(String[] args) throws 
InvalidProtocolBufferException {
+String segmentBase64 = 
"CgwKCgIBsv/x1L2vgBsSggEQARirnsP1niwg9Z7D9Z4sOhhIMi9KREJJL0Nvbm5lY3Rpb24vY2xvc2VKDGxvY2FsaG9zdDotMVABWAFgBHoOCgdkYi50eXBlEgNzcWx6GQoLZGIuaW5zdGFuY2USCmRhdGFTb3VyY2V6DgoMZGIuc3RhdGVtZW50GP///wEgAg==";
+byte[] binarySegment = Base64.getDecoder().decode(segmentBase64);
+TraceSegmentObject segmentObject = 
TraceSegmentObject.parseFrom(binarySegment);
+
+UniqueId segmentId = segmentObject.getTraceSegmentId();
+StringBuilder segmentIdBuilder = new StringBuilder();
+for (int i = 0; i < segmentId.getIdPartsList().size(); i++) {
+if (i == 0) {
+segmentIdBuilder.append(segmentId.getIdPartsList().get(i));
+} else {
+
segmentIdBuilder.append(".").append(segmentId.getIdPartsList().get(i));
+}
+}
+LOGGER.info("SegmentId: {}", segmentIdBuilder.toString());
+LOGGER.info("ApplicationId: {}", segmentObject.getApplicationId());
+LOGGER.info("ApplicationInstanceId: {}", 
segmentObject.getApplicationInstanceId());
+List spansList = segmentObject.getSpansList();
+LOGGER.info("Spans:");
+spansList.forEach(span -> {
+LOGGER.info("   Span:");
+LOGGER.info("   SpanId: {}", span.getSpanId());
+LOGGER.info("   ParentSpanId: {}", span.getParentSpanId());
+LOGGER.info("   SpanLayer: {}", span.getSpanLayer());
+LOGGER.info("   SpanType: {}", span.getSpanType());
+LOGGER.info("   StartTime: {}", span.getStartTime());
+LOGGER.info("   EndTime: {}", span.getEndTime());
+LOGGER.info("   ComponentId: {}", span.getComponentId());
+LOGGER.info("   Component: {}", span.getComponent());
+LOGGER.info("   OperationNameId: {}", 
span.getOperationNameId());
+LOGGER.info("   OperationName: {}", span.getOperationName());
+LOGGER.info("   PeerId: {}", span.getPeerId());
+LOGGER.info("   Peer: {}", span.getPeer());
+LOGGER.info("   IsError: {}", span.getIsError());
+
+LOGGER.info("   reference:");
+span.getRefsList().forEach(reference -> {
+LOGGER.info("   EntryApplicationInstanceId: {}", 

[GitHub] coveralls commented on issue #870: Fixed/855

2018-03-03 Thread GitBox
coveralls commented on issue #870: Fixed/855
URL: 
https://github.com/apache/incubator-skywalking/pull/870#issuecomment-370207035
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15796148/badge)](https://coveralls.io/builds/15796148)
   
   Coverage decreased (-0.03%) to 19.44% when pulling 
**610edfe42662c0d709c9c74907285348b2c476ed on peng-yongsheng:fixed/855** into 
**10ccd4f163d12378b0742fd222d62f564b3260f5 on apache:master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ascrutae commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration test.

2018-03-03 Thread GitBox
ascrutae commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration 
test.
URL: 
https://github.com/apache/incubator-skywalking/issues/855#issuecomment-370204384
 
 
   # Report @ 2018/03/04
   the prefix description of Issue:
   
   |prefix|description|
   |:---|:---|
   |**[AGENT]** | This prefix represent that this issue is an agent issue|
   |**[COLLECTOR]**| This prefix represent that this issue is a collector issue|
   |**[UI]**| This prefix represent that this issue is an UI issue|
   |**[UNKNOWN]**| This prefix represent that everyone should pay attention to 
this issue|
   |**[APP_STANDBY]**| This prefix represent that this issue happened after 
server started|
   |**[APP_SERVICE_PROVIDED]**|This prefix represent that this issue happened 
after call service|
   
   ## Topology
   * **[COLLECTOR]** **[APP_STANDBY]** The topology is incorrect
   Expect: `Cache-Service` call `H2`
   Screen snapshot: 
   
   https://user-images.githubusercontent.com/12436447/36941860-ca37a104-1f9f-11e8-9ca2-586837a095b2.png;>
   
   GraphSQL service: ` /api/topology`
   Request parameter: 
   ```
   {"variables":{"duration":{"start":"2018-03-04 0932","end":"2018-03-04 
0947","step":"MINUTE"}}
   ``` 
   Response body:
   ```
   
{"data":{"getClusterTopology":{"nodes":[{"id":"2","name":"localhost:-1","type":"H2"}],"calls":[{"source":"-1","target":"2","isAlert":false,"callType":"H2","callsPerSec":0,"avgResponseTime":157}]}}}
   ```
   * **[COLLECTOR]**  `/getAlarmTrend` occurs Exeception
   Error message:
   ```
   2018-03-04 11:09:02,849 - 
graphql.execution.SimpleDataFetcherExceptionHandler -2648125 [qtp878242981-255] 
WARN  [] - Exception while fetching data (/getAlarmTrend) : / by zero
   java.lang.ArithmeticException: / by zero
at 
org.apache.skywalking.apm.collector.ui.service.AlarmService.lambda$getApplicationAlarmTrend$4(AlarmService.java:149)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_152-ea]
at 
org.apache.skywalking.apm.collector.ui.service.AlarmService.getApplicationAlarmTrend(AlarmService.java:148)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.query.OverViewLayerQuery.getAlarmTrend(OverViewLayerQuery.java:121)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.query.OverViewLayerQueryMethodAccess.invoke(Unknown
 Source) ~[reflectasm-1.11.3.jar:5.0.0-alpha-SNAPSHOT]
at 
com.coxautodev.graphql.tools.MethodFieldResolverDataFetcher.get(MethodFieldResolver.kt:132)
 ~[graphql-java-tools-4.3.0.jar:?]
at 
graphql.execution.ExecutionStrategy.fetchField(ExecutionStrategy.java:219) 
[graphql-java-6.0.jar:?]
at 
graphql.execution.ExecutionStrategy.resolveField(ExecutionStrategy.java:165) 
[graphql-java-6.0.jar:?]
at 
graphql.execution.AsyncExecutionStrategy.execute(AsyncExecutionStrategy.java:55)
 [graphql-java-6.0.jar:?]
at graphql.execution.Execution.executeOperation(Execution.java:154) 
[graphql-java-6.0.jar:?]
at graphql.execution.Execution.execute(Execution.java:98) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.execute(GraphQL.java:546) [graphql-java-6.0.jar:?]
at graphql.GraphQL.parseValidateAndExecute(GraphQL.java:488) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.executeAsync(GraphQL.java:463) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.execute(GraphQL.java:394) [graphql-java-6.0.jar:?]
at 
org.apache.skywalking.apm.collector.ui.jetty.handler.GraphQLHandler.execute(GraphQLHandler.java:121)
 [collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.jetty.handler.GraphQLHandler.doPost(GraphQLHandler.java:115)
 [collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.doPost(JettyHandler.java:65)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) 
[javax.servlet-api-3.1.0.jar:3.1.0]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.service(JettyHandler.java:112)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) 
[javax.servlet-api-3.1.0.jar:3.1.0]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.service(JettyHandler.java:116)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:841) 
[jetty-servlet-9.4.2.v20170220.jar:9.4.2.v20170220]
at 
org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:543) 
[jetty-servlet-9.4.2.v20170220.jar:9.4.2.v20170220]
  

[GitHub] peng-yongsheng opened a new pull request #870: Fixed/855

2018-03-03 Thread GitBox
peng-yongsheng opened a new pull request #870: Fixed/855
URL: https://github.com/apache/incubator-skywalking/pull/870
 
 
   Fixed the bug of Report @ 2018/03/04.
   
   [COLLECTOR] [APP_STANDBY] The topology is incorrect
   [COLLECTOR] /getAlarmTrend occurs Exeception
   [COLLECTOR] [UI] The trace query service is incorrect by traceId
   
   [COLLECTOR] Some IP address isn't change to applicationCode in alarm info, 
**Fixed the ip in title only.** 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ascrutae commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration test.

2018-03-03 Thread GitBox
ascrutae commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration 
test.
URL: 
https://github.com/apache/incubator-skywalking/issues/855#issuecomment-370204384
 
 
   # Report @ 2018/03/04
   the prefix description of Issue:
   
   |prefix|description|
   |:---|:---|
   |**[AGENT]** | This prefix represent that this issue is an agent issue|
   |**[COLLECTOR]**| This prefix represent that this issue is a collector issue|
   |**[UI]**| This prefix represent that this issue is an UI issue|
   |**[UNKNOWN]**| This prefix represent that everyone should pay attention to 
this issue|
   |**[APP_STANDBY]**| This prefix represent that this issue happened after 
server started|
   |**[APP_SERVICE_PROVIDED]**|This prefix represent that this issue happened 
after call service|
   
   ## Topology
   * **[COLLECTOR]** **[APP_STANDBY]** The topology is incorrect
   Expect: `Cache-Service` call `H2`
   Screen snapshot: 
   
   https://user-images.githubusercontent.com/12436447/36941860-ca37a104-1f9f-11e8-9ca2-586837a095b2.png;>
   
   GraphSQL service: ` /api/topology`
   Request parameter: 
   ```
   {"variables":{"duration":{"start":"2018-03-04 0932","end":"2018-03-04 
0947","step":"MINUTE"}}
   ``` 
   Response body:
   ```
   
{"data":{"getClusterTopology":{"nodes":[{"id":"2","name":"localhost:-1","type":"H2"}],"calls":[{"source":"-1","target":"2","isAlert":false,"callType":"H2","callsPerSec":0,"avgResponseTime":157}]}}}
   ```
   * **[COLLECTOR]**  `/getAlarmTrend` occurs Exeception
   Error message:
   ```
   2018-03-04 11:09:02,849 - 
graphql.execution.SimpleDataFetcherExceptionHandler -2648125 [qtp878242981-255] 
WARN  [] - Exception while fetching data (/getAlarmTrend) : / by zero
   java.lang.ArithmeticException: / by zero
at 
org.apache.skywalking.apm.collector.ui.service.AlarmService.lambda$getApplicationAlarmTrend$4(AlarmService.java:149)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_152-ea]
at 
org.apache.skywalking.apm.collector.ui.service.AlarmService.getApplicationAlarmTrend(AlarmService.java:148)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.query.OverViewLayerQuery.getAlarmTrend(OverViewLayerQuery.java:121)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.query.OverViewLayerQueryMethodAccess.invoke(Unknown
 Source) ~[reflectasm-1.11.3.jar:5.0.0-alpha-SNAPSHOT]
at 
com.coxautodev.graphql.tools.MethodFieldResolverDataFetcher.get(MethodFieldResolver.kt:132)
 ~[graphql-java-tools-4.3.0.jar:?]
at 
graphql.execution.ExecutionStrategy.fetchField(ExecutionStrategy.java:219) 
[graphql-java-6.0.jar:?]
at 
graphql.execution.ExecutionStrategy.resolveField(ExecutionStrategy.java:165) 
[graphql-java-6.0.jar:?]
at 
graphql.execution.AsyncExecutionStrategy.execute(AsyncExecutionStrategy.java:55)
 [graphql-java-6.0.jar:?]
at graphql.execution.Execution.executeOperation(Execution.java:154) 
[graphql-java-6.0.jar:?]
at graphql.execution.Execution.execute(Execution.java:98) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.execute(GraphQL.java:546) [graphql-java-6.0.jar:?]
at graphql.GraphQL.parseValidateAndExecute(GraphQL.java:488) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.executeAsync(GraphQL.java:463) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.execute(GraphQL.java:394) [graphql-java-6.0.jar:?]
at 
org.apache.skywalking.apm.collector.ui.jetty.handler.GraphQLHandler.execute(GraphQLHandler.java:121)
 [collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.jetty.handler.GraphQLHandler.doPost(GraphQLHandler.java:115)
 [collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.doPost(JettyHandler.java:65)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) 
[javax.servlet-api-3.1.0.jar:3.1.0]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.service(JettyHandler.java:112)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) 
[javax.servlet-api-3.1.0.jar:3.1.0]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.service(JettyHandler.java:116)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:841) 
[jetty-servlet-9.4.2.v20170220.jar:9.4.2.v20170220]
at 
org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:543) 
[jetty-servlet-9.4.2.v20170220.jar:9.4.2.v20170220]
  

[GitHub] ascrutae commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration test.

2018-03-03 Thread GitBox
ascrutae commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration 
test.
URL: 
https://github.com/apache/incubator-skywalking/issues/855#issuecomment-370204384
 
 
   # Report @ 2018/03/04
   the prefix description of Issue:
   
   |prefix|description|
   |:---|:---|
   |**[AGENT]** | This prefix represent that this issue is an agent issue|
   |**[COLLECTOR]**| This prefix represent that this issue is a collector issue|
   |**[UI]**| This prefix represent that this issue is an UI issue|
   |**[UNKNOWN]**| This prefix represent that everyone should pay attention to 
this issue|
   |**[APP_STANDBY]**| This prefix represent that this issue happened after 
server started|
   |**[APP_SERVICE_PROVIDED]**|This prefix represent that this issue happened 
after call service|
   
   ## Topology
   * **[COLLECTOR]** **[APP_STANDBY]** The topology is incorrect
   Expect: `Cache-Service` call `H2`
   Screen snapshot: 
   
   https://user-images.githubusercontent.com/12436447/36941860-ca37a104-1f9f-11e8-9ca2-586837a095b2.png;>
   
   GraphSQL service: ` /api/topology`
   Request parameter: 
   ```
   {"variables":{"duration":{"start":"2018-03-04 0932","end":"2018-03-04 
0947","step":"MINUTE"}}
   ``` 
   Response body:
   ```
   
{"data":{"getClusterTopology":{"nodes":[{"id":"2","name":"localhost:-1","type":"H2"}],"calls":[{"source":"-1","target":"2","isAlert":false,"callType":"H2","callsPerSec":0,"avgResponseTime":157}]}}}
   ```
   * **[COLLECTOR]**  `/getAlarmTrend` occurs Exeception
   Error message:
   ```
   2018-03-04 11:09:02,849 - 
graphql.execution.SimpleDataFetcherExceptionHandler -2648125 [qtp878242981-255] 
WARN  [] - Exception while fetching data (/getAlarmTrend) : / by zero
   java.lang.ArithmeticException: / by zero
at 
org.apache.skywalking.apm.collector.ui.service.AlarmService.lambda$getApplicationAlarmTrend$4(AlarmService.java:149)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_152-ea]
at 
org.apache.skywalking.apm.collector.ui.service.AlarmService.getApplicationAlarmTrend(AlarmService.java:148)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.query.OverViewLayerQuery.getAlarmTrend(OverViewLayerQuery.java:121)
 ~[collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.query.OverViewLayerQueryMethodAccess.invoke(Unknown
 Source) ~[reflectasm-1.11.3.jar:5.0.0-alpha-SNAPSHOT]
at 
com.coxautodev.graphql.tools.MethodFieldResolverDataFetcher.get(MethodFieldResolver.kt:132)
 ~[graphql-java-tools-4.3.0.jar:?]
at 
graphql.execution.ExecutionStrategy.fetchField(ExecutionStrategy.java:219) 
[graphql-java-6.0.jar:?]
at 
graphql.execution.ExecutionStrategy.resolveField(ExecutionStrategy.java:165) 
[graphql-java-6.0.jar:?]
at 
graphql.execution.AsyncExecutionStrategy.execute(AsyncExecutionStrategy.java:55)
 [graphql-java-6.0.jar:?]
at graphql.execution.Execution.executeOperation(Execution.java:154) 
[graphql-java-6.0.jar:?]
at graphql.execution.Execution.execute(Execution.java:98) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.execute(GraphQL.java:546) [graphql-java-6.0.jar:?]
at graphql.GraphQL.parseValidateAndExecute(GraphQL.java:488) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.executeAsync(GraphQL.java:463) 
[graphql-java-6.0.jar:?]
at graphql.GraphQL.execute(GraphQL.java:394) [graphql-java-6.0.jar:?]
at 
org.apache.skywalking.apm.collector.ui.jetty.handler.GraphQLHandler.execute(GraphQLHandler.java:121)
 [collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.ui.jetty.handler.GraphQLHandler.doPost(GraphQLHandler.java:115)
 [collector-ui-jetty-provider-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.doPost(JettyHandler.java:65)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) 
[javax.servlet-api-3.1.0.jar:3.1.0]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.service(JettyHandler.java:112)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790) 
[javax.servlet-api-3.1.0.jar:3.1.0]
at 
org.apache.skywalking.apm.collector.server.jetty.JettyHandler.service(JettyHandler.java:116)
 [server-component-5.0.0-alpha-SNAPSHOT.jar:5.0.0-alpha-SNAPSHOT]
at 
org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:841) 
[jetty-servlet-9.4.2.v20170220.jar:9.4.2.v20170220]
at 
org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:543) 
[jetty-servlet-9.4.2.v20170220.jar:9.4.2.v20170220]
  

[GitHub] wu-sheng commented on issue #117: Can't see any traces in skywalking UI

2018-03-03 Thread GitBox
wu-sheng commented on issue #117: Can't see any traces in skywalking UI
URL: 
https://github.com/apache/incubator-skywalking-ui/issues/117#issuecomment-370190249
 
 
   @raphw Hi, either way seems don't match the scenario.
   > It seems like requesting 
classLoader.getResourceAsStream("org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider.class")
 returns null which causes this exception. If you know a better way of locating 
the class file, you can implement a custom LocationStrategy.
   
   Basically, I can't locate the file, because it based on frameworks code, 
such as `apache.cxf` in here. 
   
   > Alternatively, you can have a look at 
RedefinitionStrategy.ResubmissionScheduler. Using the latter, you can attempt 
to redefine a class that was loaded where Byte Buddy can use loaded classes 
rather then rely on class file location what is more reliable but what also 
requires that your instrumentation does not change the class file layout.
   
   For those classes, at least right now, SkyWalking even doesn't instrument 
it. But other classes instrumented by SkyWalking, need adjust class file 
layout, such as: 1) add a new field 2) add a interface for accessing that field
   
   So, do I have some ways to avoid these match? I just want them don't trigger 
any exception when agent starts up, at least for now. Do you have any 
suggestion? 
   
   > As for your matcher: does the stack trace indicate that the exception 
comes from the matching?
   
   No, SkyWalking would't trace the exception from instrumentation stage. It 
only traces the application process stack.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration test.

2018-03-03 Thread GitBox
wu-sheng commented on issue #855: Begin SkyWalking 5.0.0-alpha e2e integration 
test.
URL: 
https://github.com/apache/incubator-skywalking/issues/855#issuecomment-370189488
 
 
   @ascrutae Please run the e2e 2nd round test, today. And post the report here.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng closed pull request #868: Sync UI updates.

2018-03-03 Thread GitBox
wu-sheng closed pull request #868: Sync UI updates.
URL: https://github.com/apache/incubator-skywalking/pull/868
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #868: Sync UI updates.

2018-03-03 Thread GitBox
coveralls commented on issue #868: Sync UI updates.
URL: 
https://github.com/apache/incubator-skywalking/pull/868#issuecomment-370159892
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15794706/badge)](https://coveralls.io/builds/15794706)
   
   Coverage remained the same at 19.465% when pulling 
**c6dce72be4de96e6e84a4b930602f1d7f0ea6fb7 on sync-ui** into 
**e7b3014869c3438bec6ba3222513f5125b00c6fb on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng closed pull request #865: Fixed/855

2018-03-03 Thread GitBox
wu-sheng closed pull request #865: Fixed/855
URL: https://github.com/apache/incubator-skywalking/pull/865
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/JVMMetricsServiceHandler.java
 
b/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/JVMMetricsServiceHandler.java
index 1ff4a7f94..555884224 100644
--- 
a/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/JVMMetricsServiceHandler.java
+++ 
b/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/JVMMetricsServiceHandler.java
@@ -25,6 +25,8 @@
 import 
org.apache.skywalking.apm.collector.analysis.jvm.define.service.IGCMetricService;
 import 
org.apache.skywalking.apm.collector.analysis.jvm.define.service.IMemoryMetricService;
 import 
org.apache.skywalking.apm.collector.analysis.jvm.define.service.IMemoryPoolMetricService;
+import 
org.apache.skywalking.apm.collector.analysis.metric.define.AnalysisMetricModule;
+import 
org.apache.skywalking.apm.collector.analysis.metric.define.service.IInstanceHeartBeatService;
 import org.apache.skywalking.apm.collector.core.module.ModuleManager;
 import org.apache.skywalking.apm.collector.core.util.TimeBucketUtils;
 import org.apache.skywalking.apm.collector.server.grpc.GRPCHandler;
@@ -49,12 +51,14 @@
 private final IGCMetricService gcMetricService;
 private final IMemoryMetricService memoryMetricService;
 private final IMemoryPoolMetricService memoryPoolMetricService;
+private final IInstanceHeartBeatService instanceHeartBeatService;
 
 public JVMMetricsServiceHandler(ModuleManager moduleManager) {
 this.cpuMetricService = 
moduleManager.find(AnalysisJVMModule.NAME).getService(ICpuMetricService.class);
 this.gcMetricService = 
moduleManager.find(AnalysisJVMModule.NAME).getService(IGCMetricService.class);
 this.memoryMetricService = 
moduleManager.find(AnalysisJVMModule.NAME).getService(IMemoryMetricService.class);
 this.memoryPoolMetricService = 
moduleManager.find(AnalysisJVMModule.NAME).getService(IMemoryPoolMetricService.class);
+this.instanceHeartBeatService = 
moduleManager.find(AnalysisMetricModule.NAME).getService(IInstanceHeartBeatService.class);
 }
 
 @Override public void collect(JVMMetrics request, 
StreamObserver responseObserver) {
@@ -67,6 +71,7 @@ public JVMMetricsServiceHandler(ModuleManager moduleManager) {
 sendToMemoryMetricService(instanceId, time, 
metric.getMemoryList());
 sendToMemoryPoolMetricService(instanceId, time, 
metric.getMemoryPoolList());
 sendToGCMetricService(instanceId, time, metric.getGcList());
+sendToInstanceHeartBeatService(instanceId, metric.getTime());
 });
 
 responseObserver.onNext(Downstream.newBuilder().build());
@@ -90,4 +95,8 @@ private void sendToCpuMetricService(int instanceId, long 
timeBucket, CPU cpu) {
 private void sendToGCMetricService(int instanceId, long timeBucket, 
List gcs) {
 gcs.forEach(gc -> gcMetricService.send(instanceId, timeBucket, 
gc.getPhraseValue(), gc.getCount(), gc.getTime()));
 }
+
+private void sendToInstanceHeartBeatService(int instanceId, long 
heartBeatTime) {
+instanceHeartBeatService.heartBeat(instanceId, heartBeatTime);
+}
 }
diff --git 
a/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/ServiceNameDiscoveryServiceHandler.java
 
b/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/ServiceNameDiscoveryServiceHandler.java
index bd644ebb3..35dedf385 100644
--- 
a/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/ServiceNameDiscoveryServiceHandler.java
+++ 
b/apm-collector/apm-collector-agent/agent-grpc/agent-grpc-provider/src/main/java/org/apache/skywalking/apm/collector/agent/grpc/provider/handler/ServiceNameDiscoveryServiceHandler.java
@@ -54,7 +54,7 @@ public ServiceNameDiscoveryServiceHandler(ModuleManager 
moduleManager) {
 int applicationId = serviceNameElement.getApplicationId();
 String serviceName = serviceNameElement.getServiceName();
 int srcSpanType = serviceNameElement.getSrcSpanTypeValue();
-int 

[GitHub] raphw commented on issue #117: Can't see any traces in skywalking UI

2018-03-03 Thread GitBox
raphw commented on issue #117: Can't see any traces in skywalking UI
URL: 
https://github.com/apache/incubator-skywalking-ui/issues/117#issuecomment-370164495
 
 
   Byte Buddy requests class files from the class loader that defines a class. 
This includes any linked type referenced by this class, e.g. superclasses or 
interfaces.
   
   It seems like requesting 
`classLoader.getResourceAsStream("org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider.class")`
 returns `null` which causes this exception. If you know a better way of 
locating the class file, you can implement a custom `LocationStrategy`.
   
   Alternatively, you can have a look at 
`RedefinitionStrategy.ResubmissionScheduler`. Using the latter, you can attempt 
to redefine a class that was loaded where Byte Buddy can use loaded classes 
rather then rely on class file location what is more reliable but what also 
requires that your instrumentation does not change the class file layout.
   
   As for your matcher: does the stack trace indicate that the exception comes 
from the matching?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] raphw commented on issue #117: Can't see any traces in skywalking UI

2018-03-03 Thread GitBox
raphw commented on issue #117: Can't see any traces in skywalking UI
URL: 
https://github.com/apache/incubator-skywalking-ui/issues/117#issuecomment-370164495
 
 
   Byte Buddy requests class files from the class loader that defines a class. 
This includes any linked type referenced by this class, e.g. superclasses or 
interfaces.
   
   It seems like requesting 
`classLoader.getResourceAsStream("org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider.class")`
 returns `null` which causes this exception. If you know a better way of 
locating the class file, you can implement a custom `LocationStrategy`.
   
   Alternatively, you can have a look at 
`RedefinitionStrategy.ResubmissionScheduler`. Using the latter, you can attempt 
to redefine a class that was loaded where Byte Buddy can use loaded classes 
rather then rely on class file location what is more reliable but what also 
requires that your instrumentation does not change the class file layout.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #865: Fixed/855

2018-03-03 Thread GitBox
coveralls commented on issue #865: Fixed/855
URL: 
https://github.com/apache/incubator-skywalking/pull/865#issuecomment-370145352
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/1579/badge)](https://coveralls.io/builds/1579)
   
   Coverage decreased (-0.008%) to 19.465% when pulling 
**0e61c97213574e5de81ec4b9a6b1cc4ccfcae6ee on peng-yongsheng:fixed/855** into 
**0ef48add5759a2a32fc3ec1333b4ced1b9a14c26 on apache:master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #869: Revert "[WIP ]Update some documents for 5.0.0-alpha release."

2018-03-03 Thread GitBox
coveralls commented on issue #869: Revert "[WIP ]Update some documents for 
5.0.0-alpha release."
URL: 
https://github.com/apache/incubator-skywalking/pull/869#issuecomment-370162139
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15792188/badge)](https://coveralls.io/builds/15792188)
   
   Coverage remained the same at 19.473% when pulling 
**7df11400fa80d882571538431068d24d0cdb2ec7 on revert-867-5.0.0-alpha-doc** into 
**0ef48add5759a2a32fc3ec1333b4ced1b9a14c26 on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #868: Sync UI updates.

2018-03-03 Thread GitBox
coveralls commented on issue #868: Sync UI updates.
URL: 
https://github.com/apache/incubator-skywalking/pull/868#issuecomment-370159892
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15792179/badge)](https://coveralls.io/builds/15792179)
   
   Coverage remained the same at 19.473% when pulling 
**fd3d5ad93ce3be4d4c5dc1346eef8503060c8e96 on sync-ui** into 
**0ef48add5759a2a32fc3ec1333b4ced1b9a14c26 on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng closed pull request #869: Revert "[WIP ]Update some documents for 5.0.0-alpha release."

2018-03-03 Thread GitBox
wu-sheng closed pull request #869: Revert "[WIP ]Update some documents for 
5.0.0-alpha release."
URL: https://github.com/apache/incubator-skywalking/pull/869
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] peng-yongsheng commented on issue #865: Fixed/855

2018-03-03 Thread GitBox
peng-yongsheng commented on issue #865: Fixed/855
URL: 
https://github.com/apache/incubator-skywalking/pull/865#issuecomment-370160034
 
 
   1. Get the service id only when agent register service name. 
   2. Setting the src span type when agent register service name.
   3. Revert the topology build logic.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #868: Sync UI updates.

2018-03-03 Thread GitBox
coveralls commented on issue #868: Sync UI updates.
URL: 
https://github.com/apache/incubator-skywalking/pull/868#issuecomment-370159892
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15791994/badge)](https://coveralls.io/builds/15791994)
   
   Coverage remained the same at 19.473% when pulling 
**a7bbe2f4bc36fda48b202e32eb6b664a20ac4f81 on sync-ui** into 
**baa5765c51634de142876cf27286466e06fdebee on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng opened a new pull request #869: Revert "[WIP ]Update some documents for 5.0.0-alpha release."

2018-03-03 Thread GitBox
wu-sheng opened a new pull request #869: Revert "[WIP ]Update some documents 
for 5.0.0-alpha release."
URL: https://github.com/apache/incubator-skywalking/pull/869
 
 
   Reverts apache/incubator-skywalking#867


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] peng-yongsheng closed pull request #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
peng-yongsheng closed pull request #867: [WIP ]Update some documents for 
5.0.0-alpha release.
URL: https://github.com/apache/incubator-skywalking/pull/867
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng opened a new pull request #125: Fix ignore for main repo

2018-03-03 Thread GitBox
wu-sheng opened a new pull request #125: Fix ignore for main repo
URL: https://github.com/apache/incubator-skywalking-ui/pull/125
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha 
release.
URL: 
https://github.com/apache/incubator-skywalking/pull/867#issuecomment-370154157
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15791585/badge)](https://coveralls.io/builds/15791585)
   
   Coverage remained the same at 19.473% when pulling 
**9ae8318c1d5664335f5116bbf5322ee7f14c09d7 on 5.0.0-alpha-doc** into 
**baa5765c51634de142876cf27286466e06fdebee on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha 
release.
URL: 
https://github.com/apache/incubator-skywalking/pull/867#issuecomment-370154157
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15791587/badge)](https://coveralls.io/builds/15791587)
   
   Coverage remained the same at 19.473% when pulling 
**9ae8318c1d5664335f5116bbf5322ee7f14c09d7 on 5.0.0-alpha-doc** into 
**baa5765c51634de142876cf27286466e06fdebee on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha 
release.
URL: 
https://github.com/apache/incubator-skywalking/pull/867#issuecomment-370154157
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15791536/badge)](https://coveralls.io/builds/15791536)
   
   Coverage remained the same at 19.473% when pulling 
**9ae8318c1d5664335f5116bbf5322ee7f14c09d7 on 5.0.0-alpha-doc** into 
**baa5765c51634de142876cf27286466e06fdebee on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha 
release.
URL: 
https://github.com/apache/incubator-skywalking/pull/867#issuecomment-370154157
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15791499/badge)](https://coveralls.io/builds/15791499)
   
   Coverage remained the same at 19.473% when pulling 
**5765b1e4ff63a041d5f82a955a00dc5813008f43 on 5.0.0-alpha-doc** into 
**baa5765c51634de142876cf27286466e06fdebee on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
coveralls commented on issue #867: [WIP ]Update some documents for 5.0.0-alpha 
release.
URL: 
https://github.com/apache/incubator-skywalking/pull/867#issuecomment-370154157
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15791460/badge)](https://coveralls.io/builds/15791460)
   
   Coverage remained the same at 19.473% when pulling 
**00a9cde2821a39bacdbb2e8d33ee6ab42d06637d on 5.0.0-alpha-doc** into 
**baa5765c51634de142876cf27286466e06fdebee on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


Podling Report Reminder - March 2018

2018-03-03 Thread johndament
Dear podling,

This email was sent by an automated system on behalf of the Apache
Incubator PMC. It is an initial reminder to give you plenty of time to
prepare your quarterly board report.

The board meeting is scheduled for Wed, 21 March 2018, 10:30 am PDT.
The report for your podling will form a part of the Incubator PMC
report. The Incubator PMC requires your report to be submitted 2 weeks
before the board meeting, to allow sufficient time for review and
submission (Wed, March 07).

Please submit your report with sufficient time to allow the Incubator
PMC, and subsequently board members to review and digest. Again, the
very latest you should submit your report is 2 weeks prior to the board
meeting.

Thanks,

The Apache Incubator PMC

Submitting your Report

--

Your report should contain the following:

*   Your project name
*   A brief description of your project, which assumes no knowledge of
the project or necessarily of its field
*   A list of the three most important issues to address in the move
towards graduation.
*   Any issues that the Incubator PMC or ASF Board might wish/need to be
aware of
*   How has the community developed since the last report
*   How has the project developed since the last report.
*   How does the podling rate their own maturity.

This should be appended to the Incubator Wiki page at:

https://wiki.apache.org/incubator/March2018

Note: This is manually populated. You may need to wait a little before
this page is created from a template.

Mentors
---

Mentors should review reports for their project(s) and sign them off on
the Incubator wiki page. Signing off reports shows that you are
following the project - projects that are not signed may raise alarms
for the Incubator PMC.

Incubator PMC


[GitHub] wu-sheng opened a new pull request #867: [WIP ]Update some documents for 5.0.0-alpha release.

2018-03-03 Thread GitBox
wu-sheng opened a new pull request #867: [WIP ]Update some documents for 
5.0.0-alpha release.
URL: https://github.com/apache/incubator-skywalking/pull/867
 
 
   We need to update the documents for our 5.0.0-alpha release.
   
   See here, 
https://github.com/apache/incubator-skywalking/tree/5.0.0-alpha-doc, to read 
documents.
   
   Don't merge this document, except every PMC approved this pr.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng closed pull request #124: Add new service dependency map

2018-03-03 Thread GitBox
wu-sheng closed pull request #124: Add new service dependency map
URL: https://github.com/apache/incubator-skywalking-ui/pull/124
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #865: Fixed/855

2018-03-03 Thread GitBox
coveralls commented on issue #865: Fixed/855
URL: 
https://github.com/apache/incubator-skywalking/pull/865#issuecomment-370145352
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15790887/badge)](https://coveralls.io/builds/15790887)
   
   Coverage decreased (-0.03%) to 19.441% when pulling 
**5d0ea126833b493c1b7343366deaa52f9b3c98bf on peng-yongsheng:fixed/855** into 
**baa5765c51634de142876cf27286466e06fdebee on apache:master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng closed pull request #866: Fix dist deploy

2018-03-03 Thread GitBox
wu-sheng closed pull request #866: Fix dist deploy
URL: https://github.com/apache/incubator-skywalking/pull/866
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #866: Fix dist deploy

2018-03-03 Thread GitBox
coveralls commented on issue #866: Fix dist deploy
URL: 
https://github.com/apache/incubator-skywalking/pull/866#issuecomment-370145789
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15790753/badge)](https://coveralls.io/builds/15790753)
   
   Coverage remained the same at 19.473% when pulling 
**73f108a7de8edaf57a7725df0b0d269bbea3b8de on fix/dist** into 
**eee27e0459ebdd60c893027a672ebf3ff0fa6e1c on master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] coveralls commented on issue #865: Fixed/855

2018-03-03 Thread GitBox
coveralls commented on issue #865: Fixed/855
URL: 
https://github.com/apache/incubator-skywalking/pull/865#issuecomment-370145352
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/15790718/badge)](https://coveralls.io/builds/15790718)
   
   Coverage decreased (-0.03%) to 19.441% when pulling 
**09f9c1200eea09419c3f39d26c2d1fc78e296269 on peng-yongsheng:fixed/855** into 
**eee27e0459ebdd60c893027a672ebf3ff0fa6e1c on apache:master**.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng commented on issue #865: Fixed/855

2018-03-03 Thread GitBox
wu-sheng commented on issue #865: Fixed/855
URL: 
https://github.com/apache/incubator-skywalking/pull/865#issuecomment-370144289
 
 
   @peng-yongsheng Please add your reply on 
https://github.com/apache/incubator-skywalking/issues/855


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wu-sheng opened a new pull request #866: Fix dist deploy

2018-03-03 Thread GitBox
wu-sheng opened a new pull request #866: Fix dist deploy
URL: https://github.com/apache/incubator-skywalking/pull/866
 
 
   Rename the `apm-dist` artifact id.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] peng-yongsheng opened a new pull request #865: Fixed/855

2018-03-03 Thread GitBox
peng-yongsheng opened a new pull request #865: Fixed/855
URL: https://github.com/apache/incubator-skywalking/pull/865
 
 
   Dashboard [COLLECTOR] [APP_SERVICE_PROVIDED] [APP_STANDBY] The App value is 
incorrect.
   Topology [COLLECTOR] [APP_SERVICE_PROVIDED] [APP_STANDBY] The topology 
doesn't display.
   Application [COLLECTOR] [APP_SERVICE_PROVIDED] [APP_STANDBY] The select list 
does?t display.
   Server: 
   [UNKNOWN] The select lis item description is not accurate
   [COLLECTOR] The limit value of non-heap is negative number
   [COLLECTOR] The limit value of heap is negative number
   Service: [COLLECTOR] The call type of service topology is incorrect. the 
call type of all nodes is the same.
   Trace: [COLLECTOR] The trace pagination is incorrect. the total number of 
data is 18, but no data in page 2.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services