1451b315b7457b71f2139903db3e90de3714792b.svn-base 690 B

12345678910111213141516171819202122232425262728293031323334353637
  1. server:
  2. port: 9111
  3. spring:
  4. boot:
  5. admin:
  6. ui:
  7. title: JeecgCloud监控中心
  8. client:
  9. instance:
  10. metadata:
  11. tags:
  12. environment: local
  13. security:
  14. user:
  15. name: "admin"
  16. password: "admin"
  17. application:
  18. name: jeecg-monitor
  19. cloud:
  20. nacos:
  21. discovery:
  22. server-addr: @config.server-addr@
  23. metadata:
  24. user.name: ${spring.security.user.name}
  25. user.password: ${spring.security.user.password}
  26. # 服务端点检查
  27. management:
  28. trace:
  29. http:
  30. enabled: true
  31. endpoints:
  32. web:
  33. exposure:
  34. include: "*"
  35. endpoint:
  36. health:
  37. show-details: always