README.md in fluent-plugin-systemd-1.0.0.rc1 vs README.md in fluent-plugin-systemd-1.0.0.rc2

- old
+ new

@@ -21,10 +21,11 @@ | > 0.1.0 | >= 0.14.11, < 2 | 3 | >= 2.1 | | 0.0.x | ~> 0.12.0 | 2 | >= 1.9 | * The 0.x.x series is developed from this branch (master) * The 0.0.x series (compatible with fluentd v0.12, and td-agent 2) is developed on the [0.0.x branch](https://github.com/reevoo/fluent-plugin-systemd/tree/0.0.x) +* The next version is currently under development on the [1.0.0 branch](https://github.com/reevoo/fluent-plugin-systemd/tree/1.0.0) it's progress is tracked [here](https://github.com/reevoo/fluent-plugin-systemd/issues/53) ## Installation Simply use RubyGems: @@ -38,11 +39,11 @@ <source> @type systemd tag kube-proxy path /var/log/journal - filters [{ "_SYSTEMD_UNIT": "kube-proxy.service" }] + matches [{ "_SYSTEMD_UNIT": "kube-proxy.service" }] read_from_head true <storage> @type local persistent false path kube-proxy.pos @@ -62,13 +63,21 @@ Path to the systemd journal, defaults to `/var/log/journal` **`filters`** -Array of filters, see [here](http://www.rubydoc.info/gems/systemd-journal/Systemd%2FJournal%2FFilterable%3Afilter) for further -documentation, defaults to no filtering. +_This parameter name is deprecated and should be renamed to `matches`_ +**`matches`** + +Expects an array of hashes defining desired matches to filter the log +messages with. When this property is not specified, this plugin will default to +reading all logs from the journal. + +See [matching details](docs/Matching-Details.md) for a more exhaustive +description of this property and how to use it. + **`pos_file`** _This parameter is deprecated and will be removed in favour of storage in v1.0._ @@ -216,5 +225,6 @@ * [neko-neko](https://github.com/neko-neko) * [Sadayuki Furuhashi](https://github.com/frsyuki) * [Jesus Rafael Carrillo](https://github.com/jescarri) * [John Thomas Wile II](https://github.com/jtwile2) * [Kazuhiro Suzuki](https://github.com/ksauzz) +* [Joel Gerber](https://github.com/Jitsusama)