Configuring logstash to work with multiple inputs -
i have logstash 5.5.1 installed , working on windows server 2012 r2 using jdbc plugin against sql server db. .conf file has input select
statement , elasticsearch output against elastic index. i've installed service using nssm.
as can imagine, require more 1 input , output. don't mind creating n .conf files (1 each query) if that's need do, don't want have create n services. want 1 service. can tell me how this? i've not found documentation shows me how set kind of thing up.
you can put many input directives want on same logstash instance, declare them in conf file (either single 1 or multiple ones).
input { ... } input { ... } ... output { ... }
Comments
Post a Comment