Hello everyone, is it possible to have multiple in...
# fleet
a
Hello everyone, is it possible to have multiple instances of the same logging destination? Like 2 instances of AWS Lambda?
d
Hey @Aaron can you provide a bit more information on why you would need to send to multiple instances of the same logging destination?
a
Of course, mostly for 2 different teams to keep track of all the logs. It's probably similar to the forwarder setup mentioned in the documentation, but I think it would be nice to have them in one config file.
c
Sounds like you'd probably want to send the logs from fleet to somewhere that could support sending multiple copies to different lambdas
b
I’d configure Kinesis as the logging destination and then hooked up two lambda consumers or two firehose delivery stream, etc. Kinesis is an append only log specifically made for multiple parallel consumers.
a
Thank you 🙂