diff options
author | Silvan Jegen <s.jegen@gmail.com> | 2016-12-25 19:30:15 +0100 |
---|---|---|
committer | Silvan Jegen <s.jegen@gmail.com> | 2016-12-25 19:30:15 +0100 |
commit | 7ae918084e0a38041565d28b904515dc7695e66b (patch) | |
tree | 22fbda032ba9b928cd6531135048bb2363bbdaa6 | |
parent | 5d73aea0169c691b4c96d85353b1dccc5c1199e2 (diff) |
Add example config file
-rw-r--r-- | stasher.cfg | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/stasher.cfg b/stasher.cfg new file mode 100644 index 0000000..e0df958 --- /dev/null +++ b/stasher.cfg @@ -0,0 +1,19 @@ +input { + stdin {} +} + +filter { + http { + "F" => "localhost:9200" + } +} + +output { + http { + hosts => ["localhost:9200"] + } + + stdout { + codec => rubydebug + } +} |