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
The http appender could support batch to send multiple log entries to filebeat http endpoint.
The body must be either an object or an array of objects. Any other data types will result in an HTTP 400 (Bad Request) response. For arrays, one document is created for each object in the array.
Seems simple enough? Should probably be off by default and enabled with batch: true.
Would be nice to have.
The text was updated successfully, but these errors were encountered:
Add batch method to JSON Formatter to output the array of log entries as a single JSON entry. Similar to the call method, except it takes an array of log entries. For an example, see:
As mentioned above, all that should be needed next is to set batch: true when creating the appender instance, which should automatically create an appender thread and send the log messages in batches.
The http appender could support batch to send multiple log entries to filebeat http endpoint.
Seems simple enough? Should probably be off by default and enabled with
batch: true
.Would be nice to have.
The text was updated successfully, but these errors were encountered: