[GitHub] coveralls commented on issue #1190: Change the intercept point of block call way

2018-05-08 Thread GitBox
coveralls commented on issue #1190: Change the intercept point of block call way
URL: 
https://github.com/apache/incubator-skywalking/pull/1190#issuecomment-387471505
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16898078/badge)](https://coveralls.io/builds/16898078)
   
   Coverage decreased (-0.004%) to 23.358% when pulling 
**da10423d6ff62964763b95815b9aa590224d4e6c on ascrutae:fix/grpc-issue** into 
**1b85bef24017195e969304b753a76c80a9ebf9d9 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 #1190: Change the intercept point of block call way

2018-05-08 Thread GitBox
coveralls commented on issue #1190: Change the intercept point of block call way
URL: 
https://github.com/apache/incubator-skywalking/pull/1190#issuecomment-387471505
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16897626/badge)](https://coveralls.io/builds/16897626)
   
   Coverage decreased (-0.004%) to 23.358% when pulling 
**fd36dbe430f1981fb3eba72defd3b85a1e522f24 on ascrutae:fix/grpc-issue** into 
**1b85bef24017195e969304b753a76c80a9ebf9d9 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 #1194: Modify operationName search from match to match_phrase

2018-05-08 Thread GitBox
wu-sheng commented on issue #1194: Modify operationName search from match to 
match_phrase
URL: 
https://github.com/apache/incubator-skywalking/pull/1194#issuecomment-387612233
 
 
   FYI @peng-yongsheng Please just review this, don't merge this. Hold this for 
beta2.


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 #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
wu-sheng commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387612171
 
 
   @hanahmily Even the pr is good enough, please hold this for beta2. We must 
make sure the codes froze.
   
   FYI @candyleer 


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 #1194: Modify operationName search from match to match_phrase

2018-05-08 Thread GitBox
coveralls commented on issue #1194: Modify operationName search from match to 
match_phrase
URL: 
https://github.com/apache/incubator-skywalking/pull/1194#issuecomment-387610938
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16897028/badge)](https://coveralls.io/builds/16897028)
   
   Coverage remained the same at 23.362% when pulling 
**548613ac06b404f4f86413a1815aac27a75f0533 on 
candyleer:trace_search_match_phase** into 
**1b85bef24017195e969304b753a76c80a9ebf9d9 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] candyleer commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
candyleer commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387607732
 
 
   that's great


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] candyleer opened a new pull request #1194: Modify operationName search from match to match_phrase

2018-05-08 Thread GitBox
candyleer opened a new pull request #1194: Modify operationName search from 
match to match_phrase
URL: https://github.com/apache/incubator-skywalking/pull/1194
 
 
   Please answer these questions before submitting pull request
   
   - Why submit this pull request?
   - [ ] Bug fix
   - [ ] New feature provided
   - [x] Improve performance
   
   - Related issues
   
   ___
   ### Bug fix
   - Bug description.
   
   - How to fix?
   
   ___
   ### New feature or improvement
   - Describe the details and related test reports.
   
   url
   ```
   http://localhost:9200/segment_duration/type/_search
   ```
   request
   ```
   {
 "from" : 0,
 "size" : 20,
 "query" : {
   "bool" : {
 "must" : [
   {
 "range" : {
   "time_bucket" : {
 "from" : 20180509092900,
 "to" : 20180509094499
   }
 }
   },
   {
 "match" : {
   "service_name" : {
 "query" : "/wolverine/app"
   }
 }
   }
 ]
   }
 },
 "sort" : [
   {
 "start_time" : {
   "order" : "desc"
 }
   }
 ]
   }
   ```
   the result is:
   ```
   {
   "took": 2,
   "timed_out": false,
   "_shards": {
   "total": 2,
   "successful": 2,
   "skipped": 0,
   "failed": 0
   },
   "hits": {
   "total": 10,
   "max_score": null,
   "hits": [
   {
   "_index": "segment_duration",
   "_type": "type",
   "_id": "71.154.1525830285147",
   "_score": null,
   "_source": {
   "duration": 709,
   "start_time": 1525830285147,
   "service_name": "/wolverine/app",
   "end_time": 1525830285856,
   "time_bucket": 20180509094445,
   "is_error": 0,
   "segment_id": "71.154.1525830285147",
   "application_id": 8
   },
   "sort": [
   1525830285147
   ]
   },
   {
   "_index": "segment_duration",
   "_type": "type",
   "_id": "72.259.1525830285112",
   "_score": null,
   "_source": {
   "duration": 813,
   "start_time": 1525830285112,
   "service_name": "Async/devx.com/wolverine/app",
   "end_time": 1525830285925,
   "time_bucket": 20180509094445,
   "is_error": 0,
   "segment_id": "72.259.1525830285112",
   "application_id": 5
   },
   "sort": [
   1525830285112
   ]
   },
   {
   "_index": "segment_duration",
   "_type": "type",
   "_id": "72.216.15258302851120004",
   "_score": null,
   "_source": {
   "duration": 0,
   "start_time": 1525830285112,
   "service_name": "/wolverine/app",
   "end_time": 1525830285112,
   "time_bucket": 20180509094445,
   "is_error": 0,
   "segment_id": "72.216.15258302851120004",
   "application_id": 5
   },
   "sort": [
   1525830285112
   ]
   },
   {
   "_index": "segment_duration",
   "_type": "type",
   "_id": "71.153.1525830282853",
   "_score": null,
   "_source": {
   "duration": 2085,
   "start_time": 1525830282853,
   "service_name": "/wolverine/{type}/list",
   "end_time": 1525830284938,
   "time_bucket": 20180509094442,
   "is_error": 0,
   "segment_id": "71.153.1525830282853",
   "application_id": 8
   },
   "sort": [
   1525830282853
   ]
   },
   {
   "_index": "segment_duration",
   "_type": "type",
   "_id": "72.214.15258302828350002",
   "_score": null,
   "_source": {
   "duration": 0,
   "start_time": 1525830282835,
   "service_name": "/wolverine/deployments/list",
   "end_time": 1525830282835,
 

[GitHub] wu-sheng commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
wu-sheng commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387605003
 
 
   Last 15 mins for quick search works for me. Info you that, we will add more 
links for trace query in beta2, which will let the users don't need to 
select/query traces manually.
   
   The UI will guide the users to there.


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 issue #1193: New screenshots for beta release.

2018-05-08 Thread GitBox
wu-sheng opened a new issue #1193: New screenshots for beta release.
URL: https://github.com/apache/incubator-skywalking/issues/1193
 
 
   Screenshots are required for the new release.


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 #1186: Webapp read timeout config

2018-05-08 Thread GitBox
wu-sheng closed issue #1186: Webapp read timeout config
URL: https://github.com/apache/incubator-skywalking/issues/1186
 
 
   


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 #1192: Fix #1186 Webapp read timeout config

2018-05-08 Thread GitBox
wu-sheng closed pull request #1192: Fix #1186 Webapp read timeout config
URL: https://github.com/apache/incubator-skywalking/pull/1192
 
 
   


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] candyleer commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
candyleer commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387604376
 
 
   haha , `data range` is a mistake..it's date
   a prototype about what i say 
   
![image](https://user-images.githubusercontent.com/11530760/39793257-3c85f642-5377-11e8-9e39-5d1d40fc9c03.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 commented on issue #1192: Fix #1186 Webapp read timeout config

2018-05-08 Thread GitBox
coveralls commented on issue #1192: Fix #1186 Webapp read timeout config
URL: 
https://github.com/apache/incubator-skywalking/pull/1192#issuecomment-387599852
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16896712/badge)](https://coveralls.io/builds/16896712)
   
   Coverage decreased (-0.004%) to 23.358% when pulling 
**acbbbc58999f4669d23cb3b3276d18bdbb993300 on webapp/backendtimeout** into 
**c7b26dfea974796b942a7641e5ef7e0619a09ee2 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 commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
wu-sheng commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387603796
 
 
   > Latest 15 minutes
   
   This could be a new feature.
   
   > select component
   
   This is hard, I think. The trace query is based service entrances, e.g. HTTP 
URLs, RPC service class name.
   
   > use data range search 
   
   How data range?


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] candyleer commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
candyleer commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387603360
 
 
   add a radio to view `Latest 15 minutes`(`select` component?) data or use 
data range search ?


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 #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
wu-sheng commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387601964
 
 
   > but another question. actually I want to a way to fetch the newest traces 
in a more convenient way instead of refresh the page(looks loading a bit slow, 
so I don't want to use ) or modify the date then click search button.
   
   Do you have any proposal?


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] candyleer commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
candyleer commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387601766
 
 
   this looks good for this validation.
but another question. actually I want to a way to fetch the newest traces 
in a more convenient  way instead of refresh the page(looks loading a bit slow, 
so I don't want to use ) or modify the date then click `search` button.


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 #1191: Update readme for beta release.

2018-05-08 Thread GitBox
wu-sheng closed pull request #1191: Update readme for beta release.
URL: https://github.com/apache/incubator-skywalking/pull/1191
 
 
   


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 #1191: Update readme for beta release.

2018-05-08 Thread GitBox
coveralls commented on issue #1191: Update readme for beta release.
URL: 
https://github.com/apache/incubator-skywalking/pull/1191#issuecomment-387599877
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16896503/badge)](https://coveralls.io/builds/16896503)
   
   Coverage increased (+0.004%) to 23.362% when pulling 
**ce1745e89b30ef8f1e8706cfee81f26f0c08ac34 on new-readme** into 
**04579a5617737e1b501f6b4f04e46899bc2b224b 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 #1192: Fix #1186 Webapp read timeout config

2018-05-08 Thread GitBox
coveralls commented on issue #1192: Fix #1186 Webapp read timeout config
URL: 
https://github.com/apache/incubator-skywalking/pull/1192#issuecomment-387599852
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16896501/badge)](https://coveralls.io/builds/16896501)
   
   Coverage remained the same at 23.358% when pulling 
**0bca4e0011bd4748691ae7e7de71497bc8d7637a on webapp/backendtimeout** into 
**04579a5617737e1b501f6b4f04e46899bc2b224b 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] hanahmily commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
hanahmily commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387599199
 
 
   You can refer to [AntD Form 
Validation](https://ant.design/components/form/#components-form-demo-validate-static)
 to fix it.


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] hanahmily commented on issue #168: Fix Trace search time is null , there is an error

2018-05-08 Thread GitBox
hanahmily commented on issue #168: Fix Trace search time is null ,there is an 
error
URL: 
https://github.com/apache/incubator-skywalking-ui/pull/168#issuecomment-387599199
 
 
   You can refer to[AntD Form 
Validation](https://ant.design/components/form/#components-form-demo-validate-static)
 to fix it.


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 #1190: Change the intercept point of block call way

2018-05-08 Thread GitBox
wu-sheng commented on issue #1190: Change the intercept point of block call way
URL: 
https://github.com/apache/incubator-skywalking/pull/1190#issuecomment-387598053
 
 
   FYI @flychao88 , please test on your site, and give us some feedback.


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] hanahmily opened a new pull request #1192: Fix #1186 Webapp read timeout config

2018-05-08 Thread GitBox
hanahmily opened a new pull request #1192: Fix #1186 Webapp read timeout config
URL: https://github.com/apache/incubator-skywalking/pull/1192
 
 
   Please answer these questions before submitting pull request
   
   - Why submit this pull request?
   - [ ] Bug fix
   - [x] New feature provided
   - [ ] Improve performance
   
   - Related issues
   
   #1186 


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 #1191: Update readme for beta release.

2018-05-08 Thread GitBox
wu-sheng opened a new pull request #1191: Update readme for beta release.
URL: https://github.com/apache/incubator-skywalking/pull/1191
 
 
   Make history, features and document links more clear. 


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 #1190: Change the buired point of block call way

2018-05-08 Thread GitBox
coveralls commented on issue #1190: Change the buired point of block call way
URL: 
https://github.com/apache/incubator-skywalking/pull/1190#issuecomment-387471505
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16887638/badge)](https://coveralls.io/builds/16887638)
   
   Coverage remained the same at 23.358% when pulling 
**0c0dc7f3e5a5d06645b12f85eba77ade1a90de57 on ascrutae:fix/grpc-issue** into 
**04579a5617737e1b501f6b4f04e46899bc2b224b 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 opened a new pull request #1190: Change the buired point of block call way

2018-05-08 Thread GitBox
ascrutae opened a new pull request #1190: Change the buired point of block call 
way
URL: https://github.com/apache/incubator-skywalking/pull/1190
 
 
   Please answer these questions before submitting pull request
   
   - Why submit this pull request?
   - [x] Bug fix
   - [ ] New feature provided
   - [ ] Improve performance
   
   Here is the stream call screen snapshot 
   ![91525795209_ 
pic_hd](https://user-images.githubusercontent.com/12436447/39768503-0bbb5eae-531c-11e8-8be6-a1ef69fb179a.jpg)
   
   
   Here is the block screen snapshot
   ![125501525786183_ 
pic_hd](https://user-images.githubusercontent.com/12436447/39768523-1bc01074-531c-11e8-870a-85a6a904baf9.jpg)
   


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 #1184: Update FAQ doc

2018-05-08 Thread GitBox
wu-sheng closed pull request #1184: Update FAQ doc
URL: https://github.com/apache/incubator-skywalking/pull/1184
 
 
   

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/docs/README.md b/docs/README.md
index c10e7da19..d0e62ee35 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -46,4 +46,6 @@
 * [The trace doesn't continue in kafka consumer 
side](en/FAQ/kafka-plugin.md)
 * [Agent or collector version upgrade](en/FAQ/Upgrade.md)
 * [Protoc plugin fails in maven 
build](en/FAQ/Protoc-Plugin-Fails-When-Build.md)
+* [EnhanceRequireObjectCache class cast 
exception](en/FAQ/EnhanceRequireObjectCache-Cast-Exception.md)
+
 
diff --git a/docs/README_ZH.md b/docs/README_ZH.md
index 1672ecc68..82bae1332 100644
--- a/docs/README_ZH.md
+++ b/docs/README_ZH.md
@@ -42,3 +42,5 @@
 * [加载探针,Console被GRPC日志刷屏](cn/FAQ/Too-many-gRPC-logs-CN.md)
 * [Kafka消息消费端链路断裂](cn/FAQ/Kafka-plugin-CN.md)
 * [Protoc-Plugin Maven编译时异常](cn/FAQ/Protoc-Plugin-Fails-When-Build-CN.md)
+* [EnhanceRequireObjectCache 
类转换异常](cn/FAQ/EnhanceRequireObjectCache-Cast-Exception-CN.md)
+
diff --git a/docs/cn/FAQ/EnhanceRequireObjectCache-Cast-Exception-CN.md 
b/docs/cn/FAQ/EnhanceRequireObjectCache-Cast-Exception-CN.md
new file mode 100644
index 0..63f7c867c
--- /dev/null
+++ b/docs/cn/FAQ/EnhanceRequireObjectCache-Cast-Exception-CN.md
@@ -0,0 +1,19 @@
+### 现象
+agent 
启动日志出现如下错误,无法将`EnhanceRequireObjectCache`转换为`EnhanceRequireObjectCache`,无法正常上报数据
+```java
+ERROR 2018-05-07 21:31:24 InstMethodsInter :  class[class 
org.springframework.web.method.HandlerMethod] after method[getBean] intercept 
failure
+java.lang.ClassCastException: 
org.apache.skywalking.apm.plugin.spring.mvc.commons.EnhanceRequireObjectCache 
cannot be cast to 
org.apache.skywalking.apm.plugin.spring.mvc.commons.EnhanceRequireObjectCache
+   at 
org.apache.skywalking.apm.plugin.spring.mvc.commons.interceptor.GetBeanInterceptor.afterMethod(GetBeanInterceptor.java:45)
+   at 
org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstMethodsInter.intercept(InstMethodsInter.java:105)
+   at 
org.springframework.web.method.HandlerMethod.getBean(HandlerMethod.java)
+   at 
org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.shouldApplyTo(AbstractHandlerMethodExceptionResolver.java:47)
+   at 
org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:131)
+   at 
org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:76)
+   ...
+```
+
+### 原因
+此类错误见于开发环境使用了热部署(`spring-boot-devtool`)或者其他类似的工具, `classloader` 变更导致.
+### 解决方法
+1. 
此错误不会影响生产环境使用[spring-boot-devtools说明](https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html)
+2. 开发环境如果想正常调试,可以暂时在开发环境去掉此包进行调试.
diff --git a/docs/cn/FAQ/Kafka-plugin-CN.md b/docs/cn/FAQ/Kafka-plugin-CN.md
index 471d7ee6f..b5c093ddd 100644
--- a/docs/cn/FAQ/Kafka-plugin-CN.md
+++ b/docs/cn/FAQ/Kafka-plugin-CN.md
@@ -1,7 +1,8 @@
-**现象** :
+### 现象
 Kafka消息消费端链路断裂
 
-**原因**:
+### 原因
 Kafka探针只是追踪了对Kafka的拉取动作,而整个后续处理过程不是由kafka consumer发起。故,需要在消费处理的发起点,进行手动埋点。
 
-**解决方法**: 可以通过Application Toolkit中的 `@Trace` 标注,或者OpenTracing API进行手动埋点。
+### 解决方法
+ 可以通过Application Toolkit中的 `@Trace` 标注,或者OpenTracing API进行手动埋点。
diff --git a/docs/cn/FAQ/Protoc-Plugin-Fails-When-Build-CN.md 
b/docs/cn/FAQ/Protoc-Plugin-Fails-When-Build-CN.md
index ea7cca43f..b7ca7a0a3 100644
--- a/docs/cn/FAQ/Protoc-Plugin-Fails-When-Build-CN.md
+++ b/docs/cn/FAQ/Protoc-Plugin-Fails-When-Build-CN.md
@@ -1,11 +1,11 @@
-现象:
-- maven编译加载protoc-plugins插件产生如下错误:
+### 现象
+ maven编译加载protoc-plugins插件产生如下错误:
 ```
 [ERROR] Failed to execute goal 
org.xolstice.maven.plugins:protobuf-maven-plugin:0.5.0:compile-custom (default) 
on project apm-network: Unable to copy the file to 
\incubator-skywalking\apm-network\target\protoc-plugins: 
\incubator-skywalking\apm-network\target\protoc-plugins\protoc-3.3.0-linux-x86_64.exe
 (另一个程序正在使用此文件,进程无法访问。) -> [Help 1]
 ```
 
-原因:
-- Protobuf编译器依赖于glibc环境,部分linux操作系统未安装或未升级该函数库会产生该问题。
+### 原因
+ Protobuf编译器依赖于glibc环境,部分linux操作系统未安装或未升级该函数库会产生该问题。
 
-解决方法:
-- 
检查并升级最新版本glibc库,若使用容器镜像环境推荐含有最新版本glibc的alpine系统。请参考官方手册:http://www.gnu.org/software/libc/documentation.html
+### 解决方法
+ 
检查并升级最新版本glibc库,若使用容器镜像环境推荐含有最新版本glibc的alpine系统。请参考官方手册:http://www.gnu.org/software/libc/documentation.html
diff --git a/docs/cn/FAQ/Too-many-gRPC-logs-CN.md 
b/docs/cn/FAQ/Too-many-gRPC-logs-CN.md
index cb5adf7df..3c56e8d10 100644
--- a/docs/cn/FAQ/Too-many-gRPC-logs-CN.md
+++ b/docs/cn/FAQ/Too-many-gRPC-logs-CN.md
@@ -1,7 +1,9 @@
-**现象**:
+### 现象
 1. 加载探针并启动应用
 2. Console中被GRPC日志刷屏
 
-**原因**:Skywalking采

[GitHub] coveralls commented on issue #1184: Update FAQ doc

2018-05-08 Thread GitBox
coveralls commented on issue #1184: Update FAQ doc
URL: 
https://github.com/apache/incubator-skywalking/pull/1184#issuecomment-387086981
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16882278/badge)](https://coveralls.io/builds/16882278)
   
   Coverage remained the same at 23.358% when pulling 
**05eb906fe2b513b3dbdd40914fd85f5a7e365838 on candyleer:update_faq** into 
**427deed8d557aeb374ad71d431b86ec70c8f9a6a 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 #1184: Update FAQ doc

2018-05-08 Thread GitBox
coveralls commented on issue #1184: Update FAQ doc
URL: 
https://github.com/apache/incubator-skywalking/pull/1184#issuecomment-387086981
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16882264/badge)](https://coveralls.io/builds/16882264)
   
   Coverage remained the same at 23.358% when pulling 
**05eb906fe2b513b3dbdd40914fd85f5a7e365838 on candyleer:update_faq** into 
**427deed8d557aeb374ad71d431b86ec70c8f9a6a 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 issue #1013: Analysis dependencies of nodejs webpack

2018-05-08 Thread GitBox
wu-sheng closed issue #1013: Analysis dependencies of nodejs webpack
URL: https://github.com/apache/incubator-skywalking/issues/1013
 
 
   


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 #1013: Analysis dependencies of nodejs webpack

2018-05-08 Thread GitBox
wu-sheng commented on issue #1013: Analysis dependencies of nodejs webpack
URL: 
https://github.com/apache/incubator-skywalking/issues/1013#issuecomment-387370287
 
 
   Done.


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] candyleer commented on issue #1184: Update FAQ doc

2018-05-08 Thread GitBox
candyleer commented on issue #1184: Update FAQ doc
URL: 
https://github.com/apache/incubator-skywalking/pull/1184#issuecomment-387350056
 
 
   no problem


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 #1189: Update UI licenses

2018-05-08 Thread GitBox
wu-sheng closed pull request #1189: Update UI licenses
URL: https://github.com/apache/incubator-skywalking/pull/1189
 
 
   


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 #1189: Update UI licenses

2018-05-08 Thread GitBox
coveralls commented on issue #1189: Update UI licenses
URL: 
https://github.com/apache/incubator-skywalking/pull/1189#issuecomment-387347522
 
 
   
   [![Coverage 
Status](https://coveralls.io/builds/16880711/badge)](https://coveralls.io/builds/16880711)
   
   Coverage increased (+0.004%) to 23.362% when pulling 
**3d0b8859349f6e73fb0e83c4c01c78d0b904fcfa on licenses/ui** into 
**771bc87e7a36cb492c621b5eac33f80de71b59e4 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] hanahmily opened a new pull request #1189: Update UI licenses

2018-05-08 Thread GitBox
hanahmily opened a new pull request #1189: Update UI licenses
URL: https://github.com/apache/incubator-skywalking/pull/1189
 
 
   Please answer these questions before submitting pull request
   
   - Why submit this pull request?
   - [x] Bug fix
   - [ ] New feature provided
   - [ ] Improve performance
   
   ___
   ### Related issues
   
   #1013 


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 #1188: Span detail in trace view should be in message box

2018-05-08 Thread GitBox
wu-sheng commented on issue #1188: Span detail in trace view should be in 
message box 
URL: 
https://github.com/apache/incubator-skywalking/issues/1188#issuecomment-387333759
 
 
   I and @hanahmily have some aggressive ideas, but we are afraid may effect 
the stable. So may choose an easy but better way to fix this. 
   
   Then we can release our 5.0.0-GA. I think the community really need this 
version.


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] liuhaoyang commented on issue #1188: Span detail in trace view should be in message box

2018-05-08 Thread GitBox
liuhaoyang commented on issue #1188: Span detail in trace view should be in 
message box 
URL: 
https://github.com/apache/incubator-skywalking/issues/1188#issuecomment-387332715
 
 
   Is it possible to support spans to collapse and expand based on 
dependencies? 
   Just like zipkin:
   
![image](https://user-images.githubusercontent.com/10701915/39747488-04e7cea0-52e0-11e8-8dcf-98fbead2c9eb.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] liuhaoyang commented on issue #1188: Span detail in trace view should be in message box

2018-05-08 Thread GitBox
liuhaoyang commented on issue #1188: Span detail in trace view should be in 
message box 
URL: 
https://github.com/apache/incubator-skywalking/issues/1188#issuecomment-387332715
 
 
   Is it possible to support spans to collapse and expand based on 
dependencies? 
   Just like zipkin:
   
![image](https://user-images.githubusercontent.com/10701915/39747608-57df435e-52e0-11e8-9fe4-9efd9c65e960.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] wu-sheng opened a new issue #1188: Span detail in trace view should be in message box

2018-05-08 Thread GitBox
wu-sheng opened a new issue #1188: Span detail in trace view should be in 
message box 
URL: https://github.com/apache/incubator-skywalking/issues/1188
 
 
   In Beta, we change the span in the bottom of the trace view, some one give 
us the feedback:
   
   > If the trace contains a lot of spans, let's say more than 50, the span 
detail is out of explorer visible area. User has to scroll the screen. It is 
not convenience.


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