You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say I wanna reuse the lib code from another plugin.
Is there a way to have an API for an entry point like send_events(events) to call them from another plugin?
I really love the implementation of concurrency using atomics as well as the retry scheme and it would be interesting to be able to reuse this plugin code instead of re-implementing it.
However, I don't see public methods headers allowing this unless I'm missing something?
The text was updated successfully, but these errors were encountered:
Hi @binarytrails
instead of creating a new plugin to do HTTP output maybe you can contribute to this if you feel it's missing something.
If you want to reuse the code maybe you can include this gem in your other plugin and subclass or wrap the class LogStash::Outputs::Http
Let's say I wanna reuse the lib code from another plugin.
Is there a way to have an API for an entry point like
send_events(events)
to call them from another plugin?I really love the implementation of concurrency using atomics as well as the retry scheme and it would be interesting to be able to reuse this plugin code instead of re-implementing it.
However, I don't see public methods headers allowing this unless I'm missing something?
The text was updated successfully, but these errors were encountered: