当前位置:   article > 正文

spring-boot-starter-actuator实现在UI端查看log_spring actuator logfile太大

spring actuator logfile太大

spring-boot-starter-actuator实现在UI端查看log

一.在pom.xml中添加依赖
<dependency>

	<groupId>org.springframework.boot</groupId>

	<artifactId>spring-boot-starter-actuator</artifactId>

</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
二、在yml中配置actuator
management:
	endpoints:
		web:
			exposure:
				include: '*'
	endpoint:
		logfile:
			external-file: ${log.file.name} ##配置log的path
		health:
			show-details: alwats
		restart:
			enable: true ##配置重启
		metrics:
			signalfx: 
				enable: false
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

配置完成后,查看log的请求:www.host:post/xxx/actuator/logfile

总结:spring 项目配置在UI端查看日志,比较简单,以及还可以配置restart application的功能。一般在UI端查看日志时,要注意日志文件不能太大,不然UI端加载很慢,所以一般都是通过配置logback-spring.xml,根据日志文件大小来分割日志,实现在UI端流畅的查看日志。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/101892
推荐阅读
相关标签
  

闽ICP备14008679号