mongo
最后更新于:2022-04-02 03:02:07
[TOC]
## 安装插件
```
/opt/td-agent/bin/fluent-gem install fluent-plugin-mongo
```
## 实例
```
# Single MongoDB
@type mongo
host fluentd
port 27017
database fluentd
collection test
# for capped collection
capped
capped_size 1024m
# authentication
user michael
password jordan
# key name of timestamp
time_key time
# flush
flush_interval 10s
```
';