-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output plugin #721
Comments
@prashantvicky - you can, please look into You can define multiple outputs via copy. |
I am using fluent-bit not Fluentd , can u provide the solution for that @zfouts |
It's easy, just write multiple match cases. This is an example .1 input (in_dummy) and 2 outputs (out_stdout and out_file) [INPUT]
Name dummy
Tag case.multi
[OUTPUT]
Name stdout
Match *.multi
[OUTPUT]
Name file
Match *.multi output is like this. [taka@localhost build]$ bin/fluent-bit -c multi.conf
Fluent-Bit v0.14.0
Copyright (C) Treasure Data
[2018/08/24 17:33:23] [ info] [engine] started (pid=10857)
[0] case.multi: [1535099604.001631211, {"message"=>"dummy"}]
[1] case.multi: [1535099605.001801261, {"message"=>"dummy"}]
[2] case.multi: [1535099606.000245533, {"message"=>"dummy"}]
[3] case.multi: [1535099607.002233306, {"message"=>"dummy"}]
^C[engine] caught signal (SIGINT)
[2018/08/24 17:33:28] [ info] [input] pausing dummy.0
[taka@localhost build]$ cat case.multi
case.multi: [1535099604.001631, {"message":"dummy"}]
case.multi: [1535099605.001801, {"message":"dummy"}]
case.multi: [1535099606.000246, {"message":"dummy"}]
case.multi: [1535099607.002233, {"message":"dummy"}] |
Hi @nokute78 915608384Z"}.log
|
Fluent-bit doesn't support out_syslog currently. (feature request also came like #595) There is 3rd party plugin "pivotal-cf/fluent-bit-out-syslog". It may help us. (I've never used it.) |
syslog output requirement is filed at #595. Since main questions have been addressed I am closing this issue. |
* administration: format-schema: add clarification for yaml Signed-off-by: lecaros <[email protected]> * administration: configuration-file: add yaml samples Signed-off-by: lecaros <[email protected]>
Hi @edsiper ,
Just wanted to know is it possible to use multiple output plugins at the same time , like we forward data to elastic search as well as syslog server.
Any example will be great.
Regards
Prashant
The text was updated successfully, but these errors were encountered: