forked from prontera/spring-cloud-rest-tcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
完成修改management port与management context path后的Spring Boot Admin与Turbin…
…e的兼容
- Loading branch information
Showing
13 changed files
with
999 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<configuration> | ||
<include resource="org/springframework/boot/logging/logback/base.xml"/> | ||
<jmxConfigurator/> | ||
|
||
<!-- 异步输出 --> | ||
<appender name="ASYNC" class="ch.qos.logback.classic.AsyncAppender"> | ||
<!-- 不丢失日志.默认的,如果队列的80%已满,则会丢弃TRACT、DEBUG、INFO级别的日志 --> | ||
<discardingThreshold>0</discardingThreshold> | ||
<!-- 更改默认的队列的深度,该值会影响性能.默认值为256 --> | ||
<queueSize>512</queueSize> | ||
<!-- 添加附加的appender,最多只能添加一个 --> | ||
<appender-ref ref="FILE"/> | ||
</appender> | ||
|
||
<springProfile name="default"> | ||
<logger name="com.github.prontera" level="DEBUG"/> | ||
</springProfile> | ||
<springProfile name="dev"> | ||
<logger name="com.github.prontera" level="DEBUG"/> | ||
</springProfile> | ||
<springProfile name="test"> | ||
<logger name="com.github.prontera" level="DEBUG"/> | ||
</springProfile> | ||
<springProfile name="stag"> | ||
<logger name="com.github.prontera" level="WARN"/> | ||
</springProfile> | ||
<springProfile name="prod"> | ||
<logger name="com.github.prontera" level="WARN"/> | ||
</springProfile> | ||
|
||
<root level="WARN"> | ||
<!--<appender-ref ref="ASYNC"/>--> | ||
<!--<appender-ref ref="FILE"/>--> | ||
<appender-ref ref="CONSOLE"/> | ||
</root> | ||
</configuration> |
Large diffs are not rendered by default.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
eureka-registry-ms/src/main/resources/application-peer1.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
eureka-registry-ms/src/main/resources/application-peer2.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
server: | ||
port: 9411 | ||
port: 9411 | ||
spring: | ||
application: | ||
name: zipkin-server |