Spring Cloud Stackdriver记录 通过API记录
可使用org/springframework/cloud/gcp/autoconfigure/logging/logback-appender.xml
使用Stackdriver附加程序。此附加程序从JUL或Logback日志条目构建Stackdriver Logging日志条目,向其添加跟踪ID,然后将其发送到Stackdriver Logging。
STACKDRIVER_LOG_NAME
和STACKDRIVER_LOG_FLUSH_LEVEL
环境变量可用于自定义STACKDRIVER
附加程序。
然后,您的配置可能如下所示:
<configuration> <include resource="org/springframework/cloud/gcp/autoconfigure/logging/logback-appender.xml" /> <root level="INFO"> <appender-ref ref="STACKDRIVER" /> </root> </configuration>
如果要对日志输出进行更多控制,则可以进一步配置附加程序。可以使用以下属性:
Property | 默认值 | 描述 |
---|---|---|
|
|
The Stackdriver Log name. This can also be set via the |
|
|
If a log entry with this level is encountered, trigger a flush of locally buffered log to Stackdriver Logging. This can also be set via the |
更多建议: