91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在SpringBoot中利用LogStash實現日志收集

發布時間:2021-04-14 17:31:54 來源:億速云 閱讀:576 作者:Leah 欄目:編程語言

怎么在SpringBoot中利用LogStash實現日志收集?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

配置SpringBoot 依賴

在springBoot 項目下pom文件增加logStash 依賴包

<!--logStash-->
 <dependency>
 <groupId>net.logstash.logback</groupId>
 <artifactId>logstash-logback-encoder</artifactId>
 <version>5.3</version>
 </dependency>

在springboot資源文件夾下增加log日志數據配置文件 logback-spring.xml

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <include resource="org/springframework/boot/logging/logback/base.xml" />
 <appender name="LOGSTASH" class="net.logstash.logback.appender.LogstashTcpSocketAppender">
 <!--配置logStash 服務地址-->
 <destination>192.168.92.50:4560</destination>
 <!-- 日志輸出編碼 -->
 <encoder charset="UTF-8"
   class="net.logstash.logback.encoder.LoggingEventCompositeJsonEncoder">
  <providers>
  <timestamp>
   <timeZone>UTC</timeZone>
  </timestamp>
  <pattern>
   <pattern>
   {
   "logLevel": "%level",
   "serviceName": "${springAppName:-}",
   "pid": "${PID:-}",
   "thread": "%thread",
   "class": "%logger{40}",
   "rest": "%message"
   }
   </pattern>
  </pattern>
  </providers>
 </encoder>
 </appender>

 <root level="INFO">
 <appender-ref ref="LOGSTASH" />
 <appender-ref ref="CONSOLE" />
 </root>
</configuration>

三、配置logstash 日志收集配置

在logstash 配置文件logstash.conf 增加日志收集配置信息

# Sample Logstash configuration for creating a simple
# Beats -> Logstash -> Elasticsearch pipeline.

input {
 tcp {
 mode => "server"
 host => "192.168.92.50"
 port => 4560
 codec => json_lines
 }
}
output {
 elasticsearch {
 hosts => "192.168.92.50:9200"
 index => "springboot-logstash-%{+YYYY.MM.dd}"
 }
}

關于怎么在SpringBoot中利用LogStash實現日志收集問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大姚县| 繁峙县| 克东县| 松潘县| 新平| 自贡市| 马鞍山市| 云南省| 通道| 石家庄市| 南京市| 习水县| 营山县| 鹿泉市| 寿阳县| 游戏| 南昌市| 临夏市| 华亭县| 郴州市| 濮阳县| 建德市| 山阳县| 桃园县| 临夏市| 金昌市| 朝阳区| 海阳市| 剑河县| 那曲县| 怀来县| 弋阳县| 马尔康县| 留坝县| 五常市| 正宁县| 阿尔山市| 紫金县| 大竹县| 孟津县| 双鸭山市|