Sha256: 4c3ccd34dce1585b0e3a7a780993a9afce90f3b6d91491406d5836fc729b905e

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

fluent-plugin-munin
===================

## Component
Fluentd Input plugin to fetch munin-node metrics data with custom intervals.

## Installation

### native gem

`````
gem install fluent-plugin-munin
`````

### td-agent gem
`````
/usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-munin
`````

## Configuration

### Config Sample
`````
<source>
  type            munin
  server          localhost     # Optional (default: localhost)
  port            4949          # Optional (default: 4949)
  interval        10s           # Optional (default: 1m)
  tag_prefix      input.munin   # Required
  service         cpu,df        # Optional (not specify, fetch all enabled munin metrics)
  record_hostname yes           # Optional (yes/no)
</source>

<match input.munin.*>
  type stdout
</match>
`````

### Output Sample
`````
input.munin.cpu: {"hostname":"myhost.example.com","service":"cpu","user":"113183","nice":"340","system":"26584","idle":"74205345","iowait":"26134","irq":"1","softirq":"506","steal":"0","guest":"0"}
`````

## TODO
patches welcome!

## Copyright

Copyright © 2012- Kentaro Yoshida (@yoshi_ken)

## License

Apache License, Version 2.0

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-munin-0.1.3 README.md
fluent-plugin-munin-0.1.2 README.md
fluent-plugin-munin-0.1.1 README.md