You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by GitBox <gi...@apache.org> on 2019/05/06 02:46:16 UTC

[GitHub] [skywalking] zxbu commented on issue #2584: refresh error

zxbu commented on issue #2584: refresh error
URL: https://github.com/apache/skywalking/issues/2584#issuecomment-489487665
 
 
   Spring Boot Actuator add `/trace`  as endpoints out of the box. 
   I solved it by disable  `/trace`  endpoints. 
   modify `webapp.yml` like this:
   
   ```yaml
   server:
     port: 8080
   
   collector:
     path: /graphql
     ribbon:
       ReadTimeout: 10000
       # Point to all backend's restHost:restPort, split by ,
       listOfServers: 127.0.0.1:12800
   
   security:
     user:
       # username
       admin:
         # password
         password: admin
   
   endpoints:
     trace:
      # disable  trace  endpoints
       enabled: false
   
   ```

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


With regards,
Apache Git Services