[incubator-skywalking-ui] branch master updated: Update: update database feature. (#225)

2019-01-30 Thread wusheng
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-ui.git


The following commit(s) were added to refs/heads/master by this push:
 new d5e46c0  Update: update database feature. (#225)
d5e46c0 is described below

commit d5e46c075cb30e3de42aeaaa9e839a758d3fc029
Author: Allen Wang 
AuthorDate: Thu Jan 31 15:56:05 2019 +0800

Update: update database feature. (#225)

* Update: update database feature.

1. update the database page.
2. update the database mock.
3. update the database router.
4. update the database query.
5. update the service and databse select width.

* Update: add database type.
---
 .roadhogrc.mock.js |   3 +
 mock/database.js   |  27 
 query-protocol |   2 +-
 src/common/menu.js |   3 +
 src/common/router.js   |   3 +
 src/components/Database/DatabaseChartArea/index.js |  39 +
 src/components/Database/DatabaseChartBar/index.js  |  40 +
 src/components/Database/DatabaseChartLine/index.js |  38 +
 src/components/Database/index.js   |  27 
 src/models/database.js | 178 +
 src/routes/Database/Database.js| 142 
 src/routes/Endpoint/Endpoint.js|   2 +-
 src/routes/Service/Service.js  |   2 +-
 13 files changed, 503 insertions(+), 3 deletions(-)

diff --git a/.roadhogrc.mock.js b/.roadhogrc.mock.js
index e8f2052..f5c8d91 100644
--- a/.roadhogrc.mock.js
+++ b/.roadhogrc.mock.js
@@ -3,6 +3,7 @@ import { delay } from 'roadhog-api-doc';
 import { getGlobalTopology, getServiceTopology, getEndpointTopology } from 
'./mock/topology';
 import { Alarms, AlarmTrend } from './mock/alarm';
 import { TraceBrief, Trace } from './mock/trace'
+import { getAllDatabases } from './mock/database'
 import { makeExecutableSchema, addMockFunctionsToSchema } from 'graphql-tools';
 import { graphql } from 'graphql';
 import { ClusterBrief, getServiceInstances, getAllServices, searchEndpoint, 
EndpointInfo } from './mock/metadata';
@@ -14,6 +15,7 @@ const noMock = process.env.NO_MOCK === 'true';
 const resolvers = {
   Query: {
 getAllServices,
+getAllDatabases,
 getServiceInstances,
 getServiceTopN,
 getAllEndpointTopN,
@@ -30,6 +32,7 @@ const schema = makeExecutableSchema({ typeDefs: [
   "scalar Long",
   fs.readFileSync('query-protocol/common.graphqls', 'utf8'),
   fs.readFileSync('query-protocol/metadata.graphqls', 'utf8'),
+  fs.readFileSync('query-protocol/database.graphqls', 'utf8'),
   fs.readFileSync('query-protocol/alarm.graphqls', 'utf8'),
   fs.readFileSync('query-protocol/metric.graphqls', 'utf8'),
   fs.readFileSync('query-protocol/aggregation.graphqls', 'utf8'),
diff --git a/mock/database.js b/mock/database.js
new file mode 100644
index 000..dd0f550
--- /dev/null
+++ b/mock/database.js
@@ -0,0 +1,27 @@
+/**
+ * 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.
+ */
+
+import mockjs from 'mockjs';
+
+export default {
+  getAllDatabases: () => {
+const data = mockjs.mock({
+  'databaseId|20-50': [{ 'id|+1': 3, name: function() { return 
`database-${this.id}`; }, type: function() { return `type-${this.id}`; } }], // 
eslint-disable-line
+});
+return data.databaseId;
+  },
+};
diff --git a/query-protocol b/query-protocol
index 1122e97..6b23f7d 16
--- a/query-protocol
+++ b/query-protocol
@@ -1 +1 @@
-Subproject commit 1122e97b5604ae96447bd58ecdb248d7e02952aa
+Subproject commit 6b23f7d29a2a38434b2b6a6964632fa473e9e718
diff --git a/src/common/menu.js b/src/common/menu.js
index eb64c7c..ff46426 100644
--- a/src/common/menu.js
+++ b/src/common/menu.js
@@ -37,6 +37,9 @@ const menuData = [{
   name: 'Endpoint',
   path: 'endpoint',
 }, {
+  name: 'Database',
+  path: 'database',
+}, {
   name: 'Alarm',
   path: 'alarm',
 },
diff --git a/src/common/router.js b/src/common/router.js
index 6cbbf87..fb6b4ce 100644

[GitHub] wu-sheng merged pull request #225: Update: update database feature.

2019-01-30 Thread GitBox
wu-sheng merged pull request #225: Update: update database feature.
URL: https://github.com/apache/incubator-skywalking-ui/pull/225
 
 
   


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 #225: Update: update database feature.

2019-01-30 Thread GitBox
wu-sheng commented on issue #225: Update: update database feature.
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/225#issuecomment-459250303
 
 
   Please send the sync pr to main repo.


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] TinyAllen commented on issue #225: Update: update database feature.

2019-01-30 Thread GitBox
TinyAllen commented on issue #225: Update: update database feature.
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/225#issuecomment-459241181
 
 
   
![image](https://user-images.githubusercontent.com/19775780/52037815-0c52eb80-256b-11e9-968b-e776e56af0fa.png)
   


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 edited a comment on issue #2211: [WIP]Support Zookeeper plugin

2019-01-30 Thread GitBox
coveralls edited a comment on issue #2211: [WIP]Support Zookeeper plugin
URL: 
https://github.com/apache/incubator-skywalking/pull/2211#issuecomment-457813236
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21371393/badge)](https://coveralls.io/builds/21371393)
   
   Coverage increased (+0.07%) to 14.383% when pulling 
**3a3c5625604a5ae5951509f617c72a3446da0e6f on 
zhaoyuguang:local_plugin_zookeeper** into 
**d60ce3fe54c4fa534955ca52cb01383fe5cfd491 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 edited a comment on issue #2211: [WIP]Support Zookeeper plugin

2019-01-30 Thread GitBox
coveralls edited a comment on issue #2211: [WIP]Support Zookeeper plugin
URL: 
https://github.com/apache/incubator-skywalking/pull/2211#issuecomment-457813236
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21371324/badge)](https://coveralls.io/builds/21371324)
   
   Coverage increased (+0.07%) to 14.383% when pulling 
**3a3c5625604a5ae5951509f617c72a3446da0e6f on 
zhaoyuguang:local_plugin_zookeeper** into 
**d60ce3fe54c4fa534955ca52cb01383fe5cfd491 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


[incubator-skywalking-query-protocol] branch database-query-protocol updated: Update: add database type

2019-01-30 Thread ywang
This is an automated email from the ASF dual-hosted git repository.

ywang pushed a commit to branch database-query-protocol
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-query-protocol.git


The following commit(s) were added to refs/heads/database-query-protocol by 
this push:
 new 6b23f7d  Update: add database type
6b23f7d is described below

commit 6b23f7d29a2a38434b2b6a6964632fa473e9e718
Author: TinyAllen 
AuthorDate: Thu Jan 31 14:21:21 2019 +0800

Update: add database type
---
 database.graphqls | 1 +
 1 file changed, 1 insertion(+)

diff --git a/database.graphqls b/database.graphqls
index 1e4d888..b796107 100644
--- a/database.graphqls
+++ b/database.graphqls
@@ -19,6 +19,7 @@
 type Database {
 id: ID!
 name: String!
+type: String!
 }
 
 extend type Query {



[GitHub] wu-sheng commented on issue #225: Update: update database feature.

2019-01-30 Thread GitBox
wu-sheng commented on issue #225: Update: update database feature.
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/225#issuecomment-459220796
 
 
   Just saw the page. I think you miss the database type in selector.


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] TinyAllen commented on issue #225: Update: update database feature.

2019-01-30 Thread GitBox
TinyAllen commented on issue #225: Update: update database feature.
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/225#issuecomment-459217062
 
 
   ![wx20190131-130446 
2x](https://user-images.githubusercontent.com/19775780/52031775-1bc93900-2559-11e9-9aa5-8054dc9a00da.png)
   


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] TinyAllen opened a new pull request #225: Update: update database feature.

2019-01-30 Thread GitBox
TinyAllen opened a new pull request #225: Update: update database feature.
URL: https://github.com/apache/incubator-skywalking-ui/pull/225
 
 
   1. update the database page.
   2. update the database mock.
   3. update the database router.
   4. update the database query.
   5. update the service and databse select width.


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


[incubator-skywalking-query-protocol] branch database-query-protocol updated: Update: update database-query-protocol

2019-01-30 Thread ywang
This is an automated email from the ASF dual-hosted git repository.

ywang pushed a commit to branch database-query-protocol
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-query-protocol.git


The following commit(s) were added to refs/heads/database-query-protocol by 
this push:
 new 99681cd  Update: update database-query-protocol
99681cd is described below

commit 99681cd92c573b2f8074e313e5b0d99e1132e51f
Author: TinyAllen 
AuthorDate: Thu Jan 31 12:55:24 2019 +0800

Update: update database-query-protocol
---
 database.graphqls | 29 +
 1 file changed, 29 insertions(+)

diff --git a/database.graphqls b/database.graphqls
new file mode 100644
index 000..1e4d888
--- /dev/null
+++ b/database.graphqls
@@ -0,0 +1,29 @@
+# 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.
+
+# Query the cluster brief based on the given duration
+
+type Database {
+id: ID!
+name: String!
+}
+
+extend type Query {
+
+# Database related meta info.
+getAllDatabases(duration: Duration!): [Database!]!
+
+}



[incubator-skywalking-query-protocol] branch database-query-protocol created (now 1122e97)

2019-01-30 Thread ywang
This is an automated email from the ASF dual-hosted git repository.

ywang pushed a change to branch database-query-protocol
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-query-protocol.git.


  at 1122e97  Merge pull request #7 from apache/wu-sheng-patch-1

No new revisions were added by this update.



[GitHub] wu-sheng commented on issue #2211: [WIP]Support Zookeeper plugin

2019-01-30 Thread GitBox
wu-sheng commented on issue #2211: [WIP]Support Zookeeper plugin
URL: 
https://github.com/apache/incubator-skywalking/pull/2211#issuecomment-459202753
 
 
   @WithLin @ascrutae Please review the codes. @ascrutae test case is ready to 
run.


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] zhaoyuguang commented on issue #2211: [WIP]Support Zookeeper plugin

2019-01-30 Thread GitBox
zhaoyuguang commented on issue #2211: [WIP]Support Zookeeper plugin
URL: 
https://github.com/apache/incubator-skywalking/pull/2211#issuecomment-459202206
 
 
   Ready to do testcase @wu-sheng 


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 merged pull request #2226: Update Screenshots.md

2019-01-30 Thread GitBox
wu-sheng merged pull request #2226: Update Screenshots.md
URL: https://github.com/apache/incubator-skywalking/pull/2226
 
 
   


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


[incubator-skywalking] branch master updated: Update Screenshots.md (#2226)

2019-01-30 Thread wusheng
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.git


The following commit(s) were added to refs/heads/master by this push:
 new d60ce3f  Update Screenshots.md (#2226)
d60ce3f is described below

commit d60ce3fe54c4fa534955ca52cb01383fe5cfd491
Author: 彭勇升 pengys <8082...@qq.com>
AuthorDate: Thu Jan 31 07:40:18 2019 +0800

Update Screenshots.md (#2226)
---
 docs/Screenshots.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/Screenshots.md b/docs/Screenshots.md
index c27f0d1..2ada58b 100644
--- a/docs/Screenshots.md
+++ b/docs/Screenshots.md
@@ -12,7 +12,7 @@
 - Process(VM) metrics
 https://skywalkingtest.github.io/page-resources/6.0.0-alpha/Service_instance_info.png"/>
 
-- Service metrics
+- Endpoint metrics
 https://skywalkingtest.github.io/page-resources/6.0.0-alpha/endpoint.png"/>
 
 - Trace
@@ -36,5 +36,5 @@
 - Service instance metrics
 https://skywalkingtest.github.io/page-resources/6.0.0-alpha/Istio/Service-instance-info.png"/>
 
-- Service metrics
+- Endpoint metrics
 https://skywalkingtest.github.io/page-resources/6.0.0-alpha/Istio/endpoint.png"/>



[GitHub] coveralls commented on issue #2226: Update Screenshots.md

2019-01-30 Thread GitBox
coveralls commented on issue #2226: Update Screenshots.md
URL: 
https://github.com/apache/incubator-skywalking/pull/2226#issuecomment-459097443
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21362133/badge)](https://coveralls.io/builds/21362133)
   
   Coverage decreased (-0.004%) to 14.308% when pulling 
**137286eae64ffa07a2671ace1d7b5cd331b86ec7 on peng-yongsheng-patch-1** into 
**f88ac3defe215bb6ac363d2d8703c95ea05d6612 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] peng-yongsheng opened a new pull request #2226: Update Screenshots.md

2019-01-30 Thread GitBox
peng-yongsheng opened a new pull request #2226: Update Screenshots.md
URL: https://github.com/apache/incubator-skywalking/pull/2226
 
 
   Wrong words


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


[incubator-skywalking] branch master updated: Set dist bin tar with -bin in the final name. (#2221)

2019-01-30 Thread wusheng
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.git


The following commit(s) were added to refs/heads/master by this push:
 new f88ac3d  Set dist bin tar with -bin in the final name. (#2221)
f88ac3d is described below

commit f88ac3defe215bb6ac363d2d8703c95ea05d6612
Author: 吴晟 Wu Sheng 
AuthorDate: Wed Jan 30 20:37:40 2019 +0800

Set dist bin tar with -bin in the final name. (#2221)

* Set dist bin tar with -bin in the final name.

* Change dockerfile and makefile
---
 apm-dist/pom.xml |  6 +++---
 docker/Makefile  |  4 ++--
 docker/oap/Dockerfile|  2 +-
 docker/ui/Dockerfile |  2 +-
 docs/en/guides/How-to-release.md | 24 +---
 5 files changed, 20 insertions(+), 18 deletions(-)

diff --git a/apm-dist/pom.xml b/apm-dist/pom.xml
index 64e5e21..05a0b7b 100644
--- a/apm-dist/pom.xml
+++ b/apm-dist/pom.xml
@@ -48,7 +48,7 @@
 
 
 
-apache-skywalking-apm-incubating
+apache-skywalking-apm-incubating-bin
 
 
 maven-assembly-plugin
@@ -81,8 +81,8 @@
 
 
 
-
-
+
+
 
 
 
diff --git a/docker/Makefile b/docker/Makefile
index 0d16815..7ee7bb32 100644
--- a/docker/Makefile
+++ b/docker/Makefile
@@ -16,12 +16,12 @@
 
 oap:
cd oap; \
-   cp ../../dist/apache-skywalking-apm-incubating.tar.gz ./ ; \
+   cp ../../dist/apache-skywalking-apm-incubating-bin.tar.gz ./ ; \
docker build -t skywalking/oap:latest .
 
 ui:
cd ui; \
-   cp ../../dist/apache-skywalking-apm-incubating.tar.gz ./ ; \
+   cp ../../dist/apache-skywalking-apm-incubating-bin.tar.gz ./ ; \
docker build -t skywalking/ui:latest .

 build: oap ui
diff --git a/docker/oap/Dockerfile b/docker/oap/Dockerfile
index 10d4859..b89b423 100644
--- a/docker/oap/Dockerfile
+++ b/docker/oap/Dockerfile
@@ -16,7 +16,7 @@
 
 FROM openjdk:8-jre-alpine
 
-ENV DIST_NAME=apache-skywalking-apm-incubating \
+ENV DIST_NAME=apache-skywalking-apm-incubating-bin \
 JAVA_OPTS=" -Xms256M -Xmx512M"
 
 # Install required packages
diff --git a/docker/ui/Dockerfile b/docker/ui/Dockerfile
index 62e1432..a6893d4 100644
--- a/docker/ui/Dockerfile
+++ b/docker/ui/Dockerfile
@@ -16,7 +16,7 @@
 
 FROM openjdk:8-jre-alpine
 
-ENV DIST_NAME=apache-skywalking-apm-incubating \
+ENV DIST_NAME=apache-skywalking-apm-incubating-bin \
 JAVA_OPTS=" -Xms256M -Xmx512M"
 
 # Install required packages
diff --git a/docs/en/guides/How-to-release.md b/docs/en/guides/How-to-release.md
index c81efc5..fd39459 100644
--- a/docs/en/guides/How-to-release.md
+++ b/docs/en/guides/How-to-release.md
@@ -48,6 +48,9 @@ This step is only for test, if your env is set right, don't 
need to check every
 ./mvnw release:clean
 ./mvnw release:prepare -DautoVersionSubmodules=true -Pauto-submodule
 ```
+
+- Set version number as x.y.z, and tag as **v**x.y.z (version tag must start 
with **v**, you will find the purpose in next step.)
+
 _You could do a GPG sign before doing release, if you need input the password 
to sign, and the maven don't give the chance,
 but just failure. Run `gpg --sign xxx` to any file could remember the password 
for enough time to do release._ 
 
@@ -55,8 +58,8 @@ but just failure. Run `gpg --sign xxx` to any file could 
remember the password f
 ```
 ./mvnw release:perform -DskipTests -Pauto-submodule
 ```
-1. Set version number as x.y.z, and tag as **v**x.y.z (version tag must start 
with **v**, you will find the purpose in next step.)
-1. The release will automatically be inserted into a temporary staging 
repository for you.
+
+- The release will automatically be inserted into a temporary staging 
repository for you.
 
 ## Build and sign the source code package
 ```shell
@@ -94,7 +97,7 @@ if you haven't done it before.
 * Package name: apache-skywalking-incubating-x.y.z-src.tar.gz
 * See Section "Build and sign the source code package" for more details 
 1. Upload distribution package to the folder with .asc, .sha512
-* Package name: apache-skywalking-incubating-x.y.z.tar.gz, 
apache-skywalking-incubating-x.y.z.zip
+* Package name: apache-skywalking-incubating-bin-x.y.z.tar.gz, 
apache-skywalking-incubating-bin-x.y.z.zip
 * See Section "Find and download distribution in Apache Nexus Staging 
repositories" for more details
 * Create .sha512 package: `shasum -a 512 file > file.sha512`
 
@@ -120,8 +123,8 @@ Release Candidate:
  * https://dist.apache.org/repos/dist/dev/incubator/skywalking/
  * sha512 checksums
- sha512yyyzzz 

[incubator-skywalking] branch tar-release deleted (was 3499b90)

2019-01-30 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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


 was 3499b90  Merge branch 'master' into tar-release

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[GitHub] wu-sheng merged pull request #2221: Set dist bin tar with -bin in the final name.

2019-01-30 Thread GitBox
wu-sheng merged pull request #2221: Set dist bin tar with -bin in the final 
name.
URL: https://github.com/apache/incubator-skywalking/pull/2221
 
 
   


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 edited a comment on issue #2221: Set dist bin tar with -bin in the final name.

2019-01-30 Thread GitBox
coveralls edited a comment on issue #2221: Set dist bin tar with -bin in the 
final name.
URL: 
https://github.com/apache/incubator-skywalking/pull/2221#issuecomment-458478428
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21354958/badge)](https://coveralls.io/builds/21354958)
   
   Coverage increased (+0.002%) to 14.313% when pulling 
**3499b90411d45d88491cf105747766209a87f322 on tar-release** into 
**79c1f1e0834e02472c9a6f3af9237a73767abe9a 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


[incubator-skywalking] branch master updated: Add echplus.com as new user (#2225)

2019-01-30 Thread wusheng
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.git


The following commit(s) were added to refs/heads/master by this push:
 new 79c1f1e  Add echplus.com as new user (#2225)
79c1f1e is described below

commit 79c1f1e0834e02472c9a6f3af9237a73767abe9a
Author: 兵 
AuthorDate: Wed Jan 30 19:37:19 2019 +0800

Add echplus.com as new user (#2225)

* Update powered-by.md

* Update powered-by.md

* Update powered-by.md
---
 docs/powered-by.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/powered-by.md b/docs/powered-by.md
index d349498..f4cb4d0 100644
--- a/docs/powered-by.md
+++ b/docs/powered-by.md
@@ -20,6 +20,7 @@ or providing commercial products including Apache SkyWalking.
 1. DaoCloud. https://www.daocloud.io/
 1. Deyoushenghuo in WeChat app. 河南有态度信息科技有限公司,微信小程序:得有生活
 1. Dianfubao.com 垫富宝 https://www.dianfubao.com/
+1. Echplus.com 北京易诚互动网络技术有限公司 http://www.echplus.com/
 1. Eqxiu.com. 北京中网易企秀科技有限公司 http://www.eqxiu.com/
 1. GTrace System. (No company provided) 
 1. Gdeng.cn 深圳谷登科技有限公司 http://www.gdeng.cn/



[incubator-skywalking] branch tar-release updated: Add echplus.com as new user (#2225)

2019-01-30 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/tar-release by this push:
 new 79c1f1e  Add echplus.com as new user (#2225)
 new 3499b90  Merge branch 'master' into tar-release
79c1f1e is described below

commit 79c1f1e0834e02472c9a6f3af9237a73767abe9a
Author: 兵 
AuthorDate: Wed Jan 30 19:37:19 2019 +0800

Add echplus.com as new user (#2225)

* Update powered-by.md

* Update powered-by.md

* Update powered-by.md
---
 docs/powered-by.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/powered-by.md b/docs/powered-by.md
index d349498..f4cb4d0 100644
--- a/docs/powered-by.md
+++ b/docs/powered-by.md
@@ -20,6 +20,7 @@ or providing commercial products including Apache SkyWalking.
 1. DaoCloud. https://www.daocloud.io/
 1. Deyoushenghuo in WeChat app. 河南有态度信息科技有限公司,微信小程序:得有生活
 1. Dianfubao.com 垫富宝 https://www.dianfubao.com/
+1. Echplus.com 北京易诚互动网络技术有限公司 http://www.echplus.com/
 1. Eqxiu.com. 北京中网易企秀科技有限公司 http://www.eqxiu.com/
 1. GTrace System. (No company provided) 
 1. Gdeng.cn 深圳谷登科技有限公司 http://www.gdeng.cn/



[GitHub] wu-sheng merged pull request #2225: Add echplus.com as new user

2019-01-30 Thread GitBox
wu-sheng merged pull request #2225: Add echplus.com as new user
URL: https://github.com/apache/incubator-skywalking/pull/2225
 
 
   


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 edited a comment on issue #2225: Add echplus.com as new user

2019-01-30 Thread GitBox
coveralls edited a comment on issue #2225: Add echplus.com as new user
URL: 
https://github.com/apache/incubator-skywalking/pull/2225#issuecomment-458896940
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21353641/badge)](https://coveralls.io/builds/21353641)
   
   Coverage remained the same at 14.311% when pulling 
**a14f395bbebda368af8776d1830bdc6b6841ab11 on langyan1022:master** into 
**5003d6da31b18543215b213847cd632db1f52165 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 edited a comment on issue #2221: Set dist bin tar with -bin in the final name.

2019-01-30 Thread GitBox
coveralls edited a comment on issue #2221: Set dist bin tar with -bin in the 
final name.
URL: 
https://github.com/apache/incubator-skywalking/pull/2221#issuecomment-458478428
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21353265/badge)](https://coveralls.io/builds/21353265)
   
   Coverage remained the same at 14.311% when pulling 
**b5b6abad8876f99885c3bdaaa54234cdda8149ce on tar-release** into 
**5003d6da31b18543215b213847cd632db1f52165 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


[incubator-skywalking-website] branch asf-site updated (ce95492 -> e77aa21)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a change to branch asf-site
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-website.git.


 discard ce95492  Update asf-site
 new e77aa21  Update asf-site

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ce95492)
\
 N -- N -- N   refs/heads/asf-site (e77aa21)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 404.html | 6 +++---
 assets/js/{15.e30cd587.js => 15.be2776c1.js} | 2 +-
 assets/js/24.6dd450de.js | 1 +
 assets/js/24.bd6562c8.js | 1 -
 assets/js/{app.7fa7bfa7.js => app.96977de4.js}   | 4 ++--
 blog/2018-05-24-skywalking-net.html  | 4 ++--
 blog/2018-12-12-skywalking-service-mesh-ready.html   | 4 ++--
 blog/2019-01-01-Understand-Trace.html| 4 ++--
 blog/2019-01-25-mesh-loadtest.html   | 4 ++--
 blog/index.html  | 4 ++--
 downloads/index.html | 6 +++---
 events/index.html| 4 ++--
 index.html   | 4 ++--
 team/index.html  | 4 ++--
 zh/blog/2018-05-24-skywalking-net.html   | 4 ++--
 zh/blog/2018-12-18-Apache-SkyWalking-5-0-UserGuide.html  | 4 ++--
 zh/blog/2018-12-21-SkyWalking-apm-sniffer-beginning.html | 4 ++--
 zh/blog/2018-12-21-SkyWalking-source-code-read.html  | 4 ++--
 zh/blog/2019-01-02-Understand-trace-trans2cn.html| 4 ++--
 zh/blog/2019-01-02-skywalking-elasticsearch-basic.html   | 4 ++--
 zh/blog/2019-01-03-monitor-microservice.html | 4 ++--
 zh/blog/2019-01-21-agent-plugin-practice.html| 4 ++--
 zh/blog/2019-01-24-skywalking-remote-debug.html  | 4 ++--
 zh/blog/index.html   | 4 ++--
 zh/doc/index.html| 4 ++--
 zh/downloads/index.html  | 6 +++---
 zh/events/index.html | 4 ++--
 zh/index.html| 4 ++--
 zh/team/index.html   | 4 ++--
 29 files changed, 57 insertions(+), 57 deletions(-)
 rename assets/js/{15.e30cd587.js => 15.be2776c1.js} (84%)
 create mode 100644 assets/js/24.6dd450de.js
 delete mode 100644 assets/js/24.bd6562c8.js
 rename assets/js/{app.7fa7bfa7.js => app.96977de4.js} (83%)



[GitHub] coveralls commented on issue #2225: Add echplus.com as new user

2019-01-30 Thread GitBox
coveralls commented on issue #2225: Add echplus.com as new user
URL: 
https://github.com/apache/incubator-skywalking/pull/2225#issuecomment-458896940
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/21353013/badge)](https://coveralls.io/builds/21353013)
   
   Coverage remained the same at 14.311% when pulling 
**79a62c207f0671a9568d8d78bc28dbc878bc4955 on langyan1022:master** into 
**5003d6da31b18543215b213847cd632db1f52165 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


[incubator-skywalking-website] branch master updated: Master (#36)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 6a6c6ae  Master (#36)
6a6c6ae is described below

commit 6a6c6aea9eb7fb061fee677411f7769673965983
Author: Jared Tan 
AuthorDate: Wed Jan 30 18:40:11 2019 +0800

Master (#36)

* fix https://github.com/apache/incubator-skywalking/issues/2223

* update windows asc link within 5.x version.

* fix
---
 docs/downloads/README.md| 20 ++--
 docs/zh/downloads/README.md | 14 +++---
 2 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/docs/downloads/README.md b/docs/downloads/README.md
index 0a853fe..1310154 100755
--- a/docs/downloads/README.md
+++ b/docs/downloads/README.md
@@ -104,24 +104,24 @@ All issues and pull requests are 
[here](https://github.com/apache/incubator-skyw
 | Date | Version| | Downloads |
 |:---:|:--:|:--:|:--:|
 | Oct. 17th, 2018 | 5.0.0-GA | Source codes| 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA-src.tgz.sha512)
 |
-| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.tar.gz.sha512)|
-| | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.zip.sha512)|
+| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.zip.sha512)|
+| | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-GA/apache-skywalking-apm-incubating-5.0.0-GA.tar.gz.sha512)|
 | | | Document | 
[Document](https://github.com/apache/incubator-skywalking/blob/v5.0.0-GA/docs/README.md)|
 | Sep. 12th, 2018 |5.0.0-RC2 | Source codes | 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2-src.tgz.sha512)
 |
-| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.tar.gz.sha512)
 |
-| | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.zip.sha512)
 |
+| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.zip.sha512)
 |
+| | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/5.0.0-RC2/apache-skywalking-apm-incubating-5.0.0-RC2.tar.gz)
 

[GitHub] JaredTan95 merged pull request #36: Master

2019-01-30 Thread GitBox
JaredTan95 merged pull request #36: Master
URL: https://github.com/apache/incubator-skywalking-website/pull/36
 
 
   


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] foxracle commented on issue #2223: the content of sha512 file of version 6.0.0 GA in the download page is not correct

2019-01-30 Thread GitBox
foxracle commented on issue #2223: the content of sha512 file of version 6.0.0 
GA in the download page is not correct
URL: 
https://github.com/apache/incubator-skywalking/issues/2223#issuecomment-458890843
 
 
   @JaredTan95  thanks. you are so quick that I have no chance to take the 
action ;)


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


[incubator-skywalking-website] branch asf-site updated (23d90ea -> ce95492)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a change to branch asf-site
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-website.git.


 discard 23d90ea  Update asf-site
 new ce95492  Update asf-site

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (23d90ea)
\
 N -- N -- N   refs/heads/asf-site (ce95492)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 404.html | 6 +++---
 assets/js/15.d94f8961.js | 1 -
 assets/js/15.e30cd587.js | 1 +
 assets/js/24.bd6562c8.js | 1 +
 assets/js/24.f4f8cdac.js | 1 -
 assets/js/{app.b1d67f94.js => app.7fa7bfa7.js}   | 4 ++--
 blog/2018-05-24-skywalking-net.html  | 4 ++--
 blog/2018-12-12-skywalking-service-mesh-ready.html   | 4 ++--
 blog/2019-01-01-Understand-Trace.html| 4 ++--
 blog/2019-01-25-mesh-loadtest.html   | 4 ++--
 blog/index.html  | 4 ++--
 downloads/index.html | 6 +++---
 events/index.html| 4 ++--
 index.html   | 4 ++--
 team/index.html  | 4 ++--
 zh/blog/2018-05-24-skywalking-net.html   | 4 ++--
 zh/blog/2018-12-18-Apache-SkyWalking-5-0-UserGuide.html  | 4 ++--
 zh/blog/2018-12-21-SkyWalking-apm-sniffer-beginning.html | 4 ++--
 zh/blog/2018-12-21-SkyWalking-source-code-read.html  | 4 ++--
 zh/blog/2019-01-02-Understand-trace-trans2cn.html| 4 ++--
 zh/blog/2019-01-02-skywalking-elasticsearch-basic.html   | 4 ++--
 zh/blog/2019-01-03-monitor-microservice.html | 4 ++--
 zh/blog/2019-01-21-agent-plugin-practice.html| 4 ++--
 zh/blog/2019-01-24-skywalking-remote-debug.html  | 4 ++--
 zh/blog/index.html   | 4 ++--
 zh/doc/index.html| 4 ++--
 zh/downloads/index.html  | 6 +++---
 zh/events/index.html | 4 ++--
 zh/index.html| 4 ++--
 zh/team/index.html   | 4 ++--
 30 files changed, 57 insertions(+), 57 deletions(-)
 delete mode 100644 assets/js/15.d94f8961.js
 create mode 100644 assets/js/15.e30cd587.js
 create mode 100644 assets/js/24.bd6562c8.js
 delete mode 100644 assets/js/24.f4f8cdac.js
 rename assets/js/{app.b1d67f94.js => app.7fa7bfa7.js} (84%)



[GitHub] langyan1022 commented on issue #2225: Add echplus.com as new user

2019-01-30 Thread GitBox
langyan1022 commented on issue #2225: Add echplus.com as new user
URL: 
https://github.com/apache/incubator-skywalking/pull/2225#issuecomment-458887902
 
 
   > Please place in alphabeta order.
   
   Adjusted


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] JaredTan95 merged pull request #35: fix https://github.com/apache/incubator-skywalking/issues/2223

2019-01-30 Thread GitBox
JaredTan95 merged pull request #35: fix 
https://github.com/apache/incubator-skywalking/issues/2223
URL: https://github.com/apache/incubator-skywalking-website/pull/35
 
 
   


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


[incubator-skywalking-website] branch master updated: fix https://github.com/apache/incubator-skywalking/issues/2223 (#35)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 4a96f7b  fix 
https://github.com/apache/incubator-skywalking/issues/2223 (#35)
4a96f7b is described below

commit 4a96f7bdd896f31173eee3f7fdb7bcd3ee7d3354
Author: Jared Tan 
AuthorDate: Wed Jan 30 18:10:27 2019 +0800

fix https://github.com/apache/incubator-skywalking/issues/2223 (#35)
---
 docs/downloads/README.md| 6 +++---
 docs/zh/downloads/README.md | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/downloads/README.md b/docs/downloads/README.md
index 7abbe45..0a853fe 100755
--- a/docs/downloads/README.md
+++ b/docs/downloads/README.md
@@ -9,15 +9,15 @@ Use the links below to download the Apache SkyWalking 
(incubating) from one of o
 | Date | Version| | Downloads |
 |:---:|:--:|:--:|:--:|
 | Jan 29th, 2019 | 6.0.0-GA | Source codes| 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA-src.tgz.sha512)|
-| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.sha512)|
+| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip.sha512)|
 | | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.sha512)|
 | | | Document| 
[Document](https://github.com/apache/incubator-skywalking/blob/v6.0.0-GA/docs/README.md)
 |
 | Dec 25th, 2018 | 6.0.0-beta | Source codes| 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta-src.tgz.sha512)|
-| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz.sha512)|
+| | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.zip.sha512)|
 | | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz.sha512)|
 | | | Document| 
[Document](https://github.com/apache/incubator-skywalking/blob/v6.0.0-beta/docs/README.md)
 |
 | Nov. 14th, 2018 | 6.0.0-alpha | Source codes| 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-alpha/apache-skywalking-apm-incubating-6.0.0-alpha-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-alpha/apache-skywalking-apm-incubating-6.0.0-alpha-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-alpha/apache-skywalking-apm-incubating-6.0.0-alpha-src.tgz.sha512)|
-| | | Windows| 

[incubator-skywalking-website] branch asf-site updated (1da4db9 -> 23d90ea)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a change to branch asf-site
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-website.git.


 discard 1da4db9  Update asf-site
 new 23d90ea  Update asf-site

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1da4db9)
\
 N -- N -- N   refs/heads/asf-site (23d90ea)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 404.html | 6 +++---
 assets/js/24.7d0a5431.js | 1 -
 assets/js/24.f4f8cdac.js | 1 +
 assets/js/{app.87a35100.js => app.b1d67f94.js}   | 4 ++--
 blog/2018-05-24-skywalking-net.html  | 4 ++--
 blog/2018-12-12-skywalking-service-mesh-ready.html   | 4 ++--
 blog/2019-01-01-Understand-Trace.html| 4 ++--
 blog/2019-01-25-mesh-loadtest.html   | 4 ++--
 blog/index.html  | 4 ++--
 downloads/index.html | 4 ++--
 events/index.html| 4 ++--
 index.html   | 4 ++--
 team/index.html  | 4 ++--
 zh/blog/2018-05-24-skywalking-net.html   | 4 ++--
 zh/blog/2018-12-18-Apache-SkyWalking-5-0-UserGuide.html  | 4 ++--
 zh/blog/2018-12-21-SkyWalking-apm-sniffer-beginning.html | 4 ++--
 zh/blog/2018-12-21-SkyWalking-source-code-read.html  | 4 ++--
 zh/blog/2019-01-02-Understand-trace-trans2cn.html| 4 ++--
 zh/blog/2019-01-02-skywalking-elasticsearch-basic.html   | 4 ++--
 zh/blog/2019-01-03-monitor-microservice.html | 4 ++--
 zh/blog/2019-01-21-agent-plugin-practice.html| 4 ++--
 zh/blog/2019-01-24-skywalking-remote-debug.html  | 4 ++--
 zh/blog/index.html   | 4 ++--
 zh/doc/index.html| 4 ++--
 zh/downloads/index.html  | 6 +++---
 zh/events/index.html | 4 ++--
 zh/index.html| 4 ++--
 zh/team/index.html   | 4 ++--
 28 files changed, 55 insertions(+), 55 deletions(-)
 delete mode 100644 assets/js/24.7d0a5431.js
 create mode 100644 assets/js/24.f4f8cdac.js
 rename assets/js/{app.87a35100.js => app.b1d67f94.js} (95%)



[incubator-skywalking-website] branch master updated: fix downloads links. (#34)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new 9c7cd18  fix downloads links. (#34)
9c7cd18 is described below

commit 9c7cd18f2603491ae9f09f57b89e264e91e732f6
Author: Jared Tan 
AuthorDate: Wed Jan 30 17:50:10 2019 +0800

fix downloads links. (#34)
---
 docs/zh/downloads/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/zh/downloads/README.md b/docs/zh/downloads/README.md
index 1a3349c..27f1a71 100755
--- a/docs/zh/downloads/README.md
+++ b/docs/zh/downloads/README.md
@@ -8,7 +8,7 @@
 |:---:|:--:|:--:|:--:|
 | Jan 29th, 2019 | 6.0.0-GA | 源码| 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA-src.tgz.sha512)|
 | | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.sha512)|
-| | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.zip.sha512)|
+| | | Linux | 
[[tar]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-GA/apache-skywalking-apm-incubating-6.0.0-GA.tar.gz.sha512)|
 | | | Document| 
[文档](https://github.com/apache/incubator-skywalking/blob/v6.0.0-GA/docs/README.md)
 |
 | Dec 25th, 2018 | 6.0.0-beta | 源码| 
[[src]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta-src.tgz)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta-src.tgz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta-src.tgz.sha512)|
 | | | Windows| 
[[zip]](http://www.apache.org/dyn/closer.cgi/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.zip)
 
[[asc]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/incubator/skywalking/6.0.0-beta/apache-skywalking-apm-incubating-6.0.0-beta.tar.gz.sha512)|



[GitHub] JaredTan95 merged pull request #34: fix downloads links.

2019-01-30 Thread GitBox
JaredTan95 merged pull request #34: fix downloads links.
URL: https://github.com/apache/incubator-skywalking-website/pull/34
 
 
   


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] JaredTan95 opened a new pull request #34: fix downloads links.

2019-01-30 Thread GitBox
JaredTan95 opened a new pull request #34: fix downloads links.
URL: https://github.com/apache/incubator-skywalking-website/pull/34
 
 
   CC @hanahmily 


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


[incubator-skywalking] branch tar-release updated: fixed CPU UsagePercent Error (#2222)

2019-01-30 Thread wusheng
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/tar-release by this push:
 new 5003d6d  fixed CPU UsagePercent Error (#)
 new b5b6aba  Merge branch 'master' into tar-release
5003d6d is described below

commit 5003d6da31b18543215b213847cd632db1f52165
Author: 兵 
AuthorDate: Wed Jan 30 16:27:19 2019 +0800

fixed CPU UsagePercent Error (#)

fixed CPU UsagePercent Error
The cpu usage storage longitude should be one percent, not one in ten 
thousand. When the storage unit is one ten thousandth, as long as the usage 
rate does not exceed 100%. Stored values are less than one. When the current 
query is forced to be converted to a long type, it will always be 0. This is 
not correct.
---
 .../org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
 
b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
index c6e8cbd..8b12dff 100644
--- 
a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
+++ 
b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
@@ -46,6 +46,6 @@ public abstract class CPUMetricAccessor {
 long now = System.nanoTime();
 
 CPU.Builder cpuBuilder = CPU.newBuilder();
-return cpuBuilder.setUsagePercent(cpuCost * 1.0d / ((now - 
lastSampleTimeNs) * cpuCoreNum)).build();
+return cpuBuilder.setUsagePercent(cpuCost * 1.0d / ((now - 
lastSampleTimeNs) * cpuCoreNum) * 100).build();
 }
 }



[GitHub] wu-sheng commented on issue #2223: the content of sha512 file of version 6.0.0 GA in the download page is not correct

2019-01-30 Thread GitBox
wu-sheng commented on issue #2223: the content of sha512 file of version 6.0.0 
GA in the download page is not correct
URL: 
https://github.com/apache/incubator-skywalking/issues/2223#issuecomment-458874285
 
 
   Could you send a pr to fix the website?


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] langyan1022 opened a new pull request #2225: Update powered-by.md

2019-01-30 Thread GitBox
langyan1022 opened a new pull request #2225: Update powered-by.md
URL: https://github.com/apache/incubator-skywalking/pull/2225
 
 
   add case 


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] foxracle commented on issue #2223: the content of sha512 file of version 6.0.0 GA in the download page is not correct

2019-01-30 Thread GitBox
foxracle commented on issue #2223: the content of sha512 file of version 6.0.0 
GA in the download page is not correct
URL: 
https://github.com/apache/incubator-skywalking/issues/2223#issuecomment-458864667
 
 
   I got. In the [6.0.0 GA download 
page](http://skywalking.apache.org/downloads/), the sha512 link for Windows and 
Linux is reversed.


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 #2212: My collector has not cpu data, gc and heap data are normal.

2019-01-30 Thread GitBox
wu-sheng commented on issue #2212: My collector has not cpu data, gc and heap 
data are normal.
URL: 
https://github.com/apache/incubator-skywalking/issues/2212#issuecomment-458855813
 
 
   Fixed.


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 issue #2212: My collector has not cpu data, gc and heap data are normal.

2019-01-30 Thread GitBox
wu-sheng closed issue #2212: My collector has not cpu data, gc and heap data 
are normal.
URL: https://github.com/apache/incubator-skywalking/issues/2212
 
 
   


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 issue #2224: org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2

2019-01-30 Thread GitBox
wu-sheng closed issue #2224: 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2
URL: https://github.com/apache/incubator-skywalking/issues/2224
 
 
   


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 #2224: org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2

2019-01-30 Thread GitBox
wu-sheng commented on issue #2224: 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2
URL: 
https://github.com/apache/incubator-skywalking/issues/2224#issuecomment-458855406
 
 
   This isn't bug. It is caused by the data deleted from storage, but agent 
doesn't restart.


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 merged pull request #2222: fixed CPU UsagePercent Error

2019-01-30 Thread GitBox
wu-sheng merged pull request #: fixed CPU UsagePercent Error
URL: https://github.com/apache/incubator-skywalking/pull/
 
 
   


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


[incubator-skywalking] branch master updated: fixed CPU UsagePercent Error (#2222)

2019-01-30 Thread wusheng
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.git


The following commit(s) were added to refs/heads/master by this push:
 new 5003d6d  fixed CPU UsagePercent Error (#)
5003d6d is described below

commit 5003d6da31b18543215b213847cd632db1f52165
Author: 兵 
AuthorDate: Wed Jan 30 16:27:19 2019 +0800

fixed CPU UsagePercent Error (#)

fixed CPU UsagePercent Error
The cpu usage storage longitude should be one percent, not one in ten 
thousand. When the storage unit is one ten thousandth, as long as the usage 
rate does not exceed 100%. Stored values are less than one. When the current 
query is forced to be converted to a long type, it will always be 0. This is 
not correct.
---
 .../org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
 
b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
index c6e8cbd..8b12dff 100644
--- 
a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
+++ 
b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/jvm/cpu/CPUMetricAccessor.java
@@ -46,6 +46,6 @@ public abstract class CPUMetricAccessor {
 long now = System.nanoTime();
 
 CPU.Builder cpuBuilder = CPU.newBuilder();
-return cpuBuilder.setUsagePercent(cpuCost * 1.0d / ((now - 
lastSampleTimeNs) * cpuCoreNum)).build();
+return cpuBuilder.setUsagePercent(cpuCost * 1.0d / ((now - 
lastSampleTimeNs) * cpuCoreNum) * 100).build();
 }
 }



[GitHub] wu-sheng commented on issue #2223: the content of sha512 file of version 6.0.0 GA in the download page is not correct

2019-01-30 Thread GitBox
wu-sheng commented on issue #2223: the content of sha512 file of version 6.0.0 
GA in the download page is not correct
URL: 
https://github.com/apache/incubator-skywalking/issues/2223#issuecomment-458853973
 
 
   This file should move from vote, which shouldn't be wrong.  I am on 
vacation, can't verify now.


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] xiaour opened a new issue #2224: org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2

2019-01-30 Thread GitBox
xiaour opened a new issue #2224: 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2
URL: https://github.com/apache/incubator-skywalking/issues/2224
 
 
   Please answer these questions before submitting your issue.
   
   - Why do you submit this issue?
   - [ ] Question or discussion
   - [✅ ] Bug
   - [ ] Requirement
   - [ ] Feature or performance improvement
   
   ___
   ### Question
   - What do you want to know?
   
   ___
   ### Bug
   - Which version of SkyWalking, OS and JRE?
   6.0.0GA for JDK1.8、CentOS7 64bit
   
   - Which company or project?
   
   - What happen?
   
   I've 4 Server Application config the anget,but the Webpage is 0。
   show me the Skywaking server log.
   `
   2019-01-30 16:00:42,699 - 
org.apache.skywalking.oap.server.storage.plugin.elasticsearch.cache.ServiceInventoryCacheEsDAO
 - 86 [grpc-default-executor-0] ERROR [] - null
   java.lang.NullPointerException: null
   2019-01-30 16:00:42,699 - 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2 
- 111 [grpc-default-executor-0] ERROR [] - null
   java.lang.NullPointerException: null
at 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.standardization.SpanIdExchanger.exchange(SpanIdExchanger.java:119)
 ~[skywalking-trace-receiver-plugin-6.0.0-GA.jar:6.0.0-GA]
at 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2.preBuild(SegmentParseV2.java:146)
 ~[skywalking-trace-receiver-plugin-6.0.0-GA.jar:6.0.0-GA]
at 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2.parse(SegmentParseV2.java:89)
 [skywalking-trace-receiver-plugin-6.0.0-GA.jar:6.0.0-GA]
at 
org.apache.skywalking.oap.server.receiver.trace.provider.parser.SegmentParseV2$Producer.send(SegmentParseV2.java:265)
 [skywalking-trace-receiver-plugin-6.0.0-GA.jar:6.0.0-GA]
at 
org.apache.skywalking.oap.server.receiver.trace.provider.handler.v6.grpc.TraceSegmentReportServiceHandler$1.onNext(TraceSegmentReportServiceHandler.java:58)
 [skywalking-trace-receiver-plugin-6.0.0-GA.jar:6.0.0-GA]
at 
org.apache.skywalking.oap.server.receiver.trace.provider.handler.v6.grpc.TraceSegmentReportServiceHandler$1.onNext(TraceSegmentReportServiceHandler.java:50)
 [skywalking-trace-receiver-plugin-6.0.0-GA.jar:6.0.0-GA]
at 
io.grpc.stub.ServerCalls$StreamingServerCallHandler$StreamingServerCallListener.onMessage(ServerCalls.java:248)
 [grpc-stub-1.15.1.jar:1.15.1]
at 
io.grpc.internal.ServerCallImpl$ServerStreamListenerImpl.messagesAvailable(ServerCallImpl.java:263)
 [grpc-core-1.15.1.jar:1.15.1]
at 
io.grpc.internal.ServerImpl$JumpToApplicationThreadServerStreamListener$1MessagesAvailable.runInContext(ServerImpl.java:683)
 [grpc-core-1.15.1.jar:1.15.1]
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) 
[grpc-core-1.15.1.jar:1.15.1]
at 
io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123) 
[grpc-core-1.15.1.jar:1.15.1]
at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) 
[?:1.8.0_144]
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) 
[?:1.8.0_144]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144]
   `
   ___
   ### Requirement or improvement
   - Please describe about your requirements or improvement suggestions.


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 issue #2223: the content of sha512 file of version 6.0.0 GA in the download page is not correct

2019-01-30 Thread GitBox
wu-sheng closed issue #2223: the content of sha512 file of version 6.0.0 GA in 
the download page is not correct
URL: https://github.com/apache/incubator-skywalking/issues/2223
 
 
   


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 #2223: the content of sha512 file of version 6.0.0 GA in the download page is not correct

2019-01-30 Thread GitBox
wu-sheng commented on issue #2223: the content of sha512 file of version 6.0.0 
GA in the download page is not correct
URL: 
https://github.com/apache/incubator-skywalking/issues/2223#issuecomment-458852022
 
 
   You are generating sha, not check. If you want to know how to recheck, read 
our release document.


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


[incubator-skywalking-website] branch asf-site updated (37c019f -> 1da4db9)

2019-01-30 Thread tanjian
This is an automated email from the ASF dual-hosted git repository.

tanjian pushed a change to branch asf-site
in repository 
https://gitbox.apache.org/repos/asf/incubator-skywalking-website.git.


 discard 37c019f  Update asf-site
 new 1da4db9  Update asf-site

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (37c019f)
\
 N -- N -- N   refs/heads/asf-site (1da4db9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 404.html | 6 +++---
 assets/js/15.43a57e0a.js | 1 -
 assets/js/15.d94f8961.js | 1 +
 assets/js/{app.8446d97f.js => app.87a35100.js}   | 4 ++--
 blog/2018-05-24-skywalking-net.html  | 4 ++--
 blog/2018-12-12-skywalking-service-mesh-ready.html   | 4 ++--
 blog/2019-01-01-Understand-Trace.html| 4 ++--
 blog/2019-01-25-mesh-loadtest.html   | 4 ++--
 blog/index.html  | 4 ++--
 downloads/index.html | 6 +++---
 events/index.html| 4 ++--
 index.html   | 4 ++--
 team/index.html  | 4 ++--
 zh/blog/2018-05-24-skywalking-net.html   | 4 ++--
 zh/blog/2018-12-18-Apache-SkyWalking-5-0-UserGuide.html  | 4 ++--
 zh/blog/2018-12-21-SkyWalking-apm-sniffer-beginning.html | 4 ++--
 zh/blog/2018-12-21-SkyWalking-source-code-read.html  | 4 ++--
 zh/blog/2019-01-02-Understand-trace-trans2cn.html| 4 ++--
 zh/blog/2019-01-02-skywalking-elasticsearch-basic.html   | 4 ++--
 zh/blog/2019-01-03-monitor-microservice.html | 4 ++--
 zh/blog/2019-01-21-agent-plugin-practice.html| 4 ++--
 zh/blog/2019-01-24-skywalking-remote-debug.html  | 4 ++--
 zh/blog/index.html   | 4 ++--
 zh/doc/index.html| 4 ++--
 zh/downloads/index.html  | 4 ++--
 zh/events/index.html | 4 ++--
 zh/index.html| 4 ++--
 zh/team/index.html   | 4 ++--
 28 files changed, 55 insertions(+), 55 deletions(-)
 delete mode 100644 assets/js/15.43a57e0a.js
 create mode 100644 assets/js/15.d94f8961.js
 rename assets/js/{app.8446d97f.js => app.87a35100.js} (93%)