Sha256: 953435837b92097c8ac22a9902ed866f21f5ed46c620d8ee5bc74ca560f5e0ac

Contents?: true

Size: 619 Bytes

Versions: 1

Compression:

Stored size: 619 Bytes

Contents

It is a sample to send munin metrics to mongoDB.

# appearing plugins:
#  munin: http://rubygems.org/gems/fluent-plugin-munin
#  mongo: http://rubygems.org/gems/fluent-plugin-mongo

# recieve all metrics from munin.
<source>
  type             munin
  interval         60s
  tag_prefix       mongo.munin
  record_hostname  yes
  convert_type     yes
</source>

<match mongo.*.*>
  type mongo
  host localhost
  port 27017
  database mongo
  tag_mapped
</match>

# mongoDB stored sample.
# $ mongo
# MongoDB shell version: 2.2.0
# connecting to: test
# > use munin
# switched to db munin
# > show collections
# cpu
# df

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-munin-0.3.2 example2.conf