Standard Input
$ fluent-bit -i stdin -o stdout1. { map => val, map => val, map => val }
2. [ time, { map => val, map => val, map => val } ]#!/bin/sh
while :; do
echo -n "{\"key\": \"some value\"}"
sleep 1
done$ chmod 755 test.sh$ ./test.sh | fluent-bit -i stdin -o stdout
Fluent-Bit v0.9.0
Copyright (C) Treasure Data
[2016/10/07 21:44:46] [ info] [engine] started
[0] stdin.0: [1475898286, {"key"=>"some value"}]
[1] stdin.0: [1475898287, {"key"=>"some value"}]
[2] stdin.0: [1475898288, {"key"=>"some value"}]
[3] stdin.0: [1475898289, {"key"=>"some value"}]
[4] stdin.0: [1475898290, {"key"=>"some value"}]Last updated
Was this helpful?