Digital Office Automation System Backend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

application.yml 781B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. server:
  2. port: 9090
  3. spring:
  4. application:
  5. name: ruoyi-monitor-admin
  6. profiles:
  7. active: dev
  8. --- # 监控中心服务端配置
  9. spring:
  10. security:
  11. user:
  12. name: ruoyi
  13. password: 123456
  14. boot:
  15. admin:
  16. ui:
  17. title: RuoYi-Vue-Plus服务监控中心
  18. context-path: /admin
  19. --- # Actuator 监控端点的配置项
  20. management:
  21. endpoints:
  22. web:
  23. exposure:
  24. include: '*'
  25. endpoint:
  26. health:
  27. show-details: ALWAYS
  28. logfile:
  29. external-file: ./logs/ruoyi-monitor-admin.log
  30. --- # 监控配置
  31. spring.boot.admin.client:
  32. # 增加客户端开关
  33. enabled: true
  34. # 设置 Spring Boot Admin Server 地址
  35. url: http://localhost:9090/admin
  36. instance:
  37. service-host-type: IP
  38. username: ruoyi
  39. password: 123456