使用MongoDB儲存Docker日誌(續)__儲存

來源:互聯網
上載者:User

在上一篇文章《使用MongoDB儲存Docker日誌》中完成了Docker + Fluentd + MongoDB的基本配置。但是在實際的使用過程中,卻發現Docker產生的日誌並不會立即寫入到MongoDB中,有大概1分鐘左右的延遲。

查閱Fluentd的文檔得知,有一個flush參數可以控制日誌的寫入頻率,預設的是60s。更改flush_interval參數就可以提高寫入頻率,具體更改如下:

## match tag=docker.* and dump to console<match docker.*>  @type mongo  host 127.0.0.1  port 22017  database docker  collection log  <buffer>    flush_mode interval    flush_interval 1s  </buffer></match>

剛開始對文檔理解不太透徹,增加了flush_interval參數後,並沒有發揮作用,第一次更改時,並沒有將flush_mode和flush_interval放在buffer結構中。也就是:

## match tag=docker.* and dump to console<match docker.*>  @type mongo  host 127.0.0.1  port 22017  database docker  collection log  flush_mode interval  flush_interval 1s</match>

從日誌中也可以看出上面的配置,並沒有發揮作用:

2018-01-19 14:33:32 +0800 [warn]: parameter '**flush_mode**' in <match docker.*>  @type mongo  host "1270.0.0.1"  port 22017  database "docker"  collection "log"  flush_mode interval  flush_interval 1s  buffer_chunk_limit 8m  time_key time  <inject>    time_key time    time_format %Y-%m-%d %H:%M:%S.%L  </inject></match> is not used.

上面說flush_mode並沒有起作用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.