Эх сурвалжийг харах

update 将 Actuator 配置 移动到全局配置

疯狂的狮子li 3 жил өмнө
parent
commit
ffd3dc335f

+ 3 - 0
pom.xml

@@ -290,6 +290,7 @@
                 <!-- 环境标识,需要与配置文件的名称相对应 -->
                 <profiles.active>local</profiles.active>
                 <logging.level>debug</logging.level>
+                <endpoints.include>'*'</endpoints.include>
             </properties>
         </profile>
         <profile>
@@ -298,6 +299,7 @@
                 <!-- 环境标识,需要与配置文件的名称相对应 -->
                 <profiles.active>dev</profiles.active>
                 <logging.level>debug</logging.level>
+                <endpoints.include>'*'</endpoints.include>
             </properties>
             <activation>
                 <!-- 默认环境 -->
@@ -309,6 +311,7 @@
             <properties>
                 <profiles.active>prod</profiles.active>
                 <logging.level>warn</logging.level>
+                <endpoints.include>health,info</endpoints.include>
             </properties>
         </profile>
 

+ 0 - 14
ruoyi-admin/src/main/resources/application-dev.yml

@@ -129,20 +129,6 @@ spring:
         username: ruoyi
         password: 123456
 
-# Actuator 监控端点的配置项
-management:
-  endpoints:
-    web:
-      # Actuator 提供的 API 接口的根目录。默认为 /actuator
-      base-path: /actuator
-      exposure:
-        # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
-        # 生产环境不建议放开所有 根据项目需求放开即可
-        include: '*'
-  endpoint:
-    logfile:
-      external-file: ./logs/sys-console.log
-
 --- # OSS 云存储(界面 <参数设置> 可切换)
 cloud-storage:
   # minio配置

+ 0 - 14
ruoyi-admin/src/main/resources/application-prod.yml

@@ -129,20 +129,6 @@ spring:
         username: ruoyi
         password: 123456
 
-# Actuator 监控端点的配置项
-management:
-  endpoints:
-    web:
-      # Actuator 提供的 API 接口的根目录。默认为 /actuator
-      base-path: /actuator
-      exposure:
-        # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
-        # 生产环境不建议放开所有 根据项目需求放开即可
-        include: health,info
-  endpoint:
-    logfile:
-      external-file: ./logs/sys-console.log
-
 --- # OSS 云存储(界面 <参数设置> 可切换)
 cloud-storage:
   # minio配置

+ 14 - 0
ruoyi-admin/src/main/resources/application.yml

@@ -287,6 +287,20 @@ lock4j:
   # 分布式锁的超时时间,默认为 30 毫秒
   expire: 30000
 
+--- # Actuator 监控端点的配置项
+management:
+  endpoints:
+    web:
+      # Actuator 提供的 API 接口的根目录。默认为 /actuator
+      base-path: /actuator
+      exposure:
+        # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
+        # 生产环境不建议放开所有 根据项目需求放开即可
+        include: @endpoints.include@
+  endpoint:
+    logfile:
+      external-file: ./logs/sys-console.log
+
 --- # 定时任务配置
 spring:
   quartz: