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
Input are responsable of taking the inputsource (UDP, TCP, Log) and create the necessary logic and plumbing to get that data out.
Inputs are either persistent like the UDP/TCP or periodically called like the Log inputs, the current interface that all inputs implements is the following one.
typeInputinterface {
Run()
Stop()
Wait()
}
We can do a few minor improvements:
Allow Run()|Stop()|Wait() to return an error, useful in persistent inputs.
Maybe Allow inputs to configure by code the frequency of the polling instead of having this done externally.
The text was updated successfully, but these errors were encountered:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Input are responsable of taking the
inputsource
(UDP, TCP, Log) and create the necessary logic and plumbing to get that data out.Inputs are either persistent like the UDP/TCP or periodically called like the Log inputs, the current interface that all inputs implements is the following one.
We can do a few minor improvements:
Run()|Stop()|Wait()
to return an error, useful in persistent inputs.Allow
inputs to configure by code the frequency of the polling instead of having this done externally.The text was updated successfully, but these errors were encountered: