README.md in fluent-plugin-munin-0.0.1 vs README.md in fluent-plugin-munin-0.1.1
- old
+ new
@@ -1,10 +1,10 @@
fluent-plugin-munin
===================
## Component
-Fluentd Input plugin. fetch munin-node metrics data with custom intervals.
+Fluentd Input plugin to fetch munin-node metrics data with custom intervals.
## Installation
### native gem
@@ -21,15 +21,15 @@
### Config Sample
`````
<source>
type munin
- server localhost
- port 4949
- interval 10
- tag_prefix input.munin
- service cpu,df
- record_hostname yes
+ 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>