[
https://issues.apache.org/jira/browse/NIFI-3238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15822798#comment-15822798
]
ASF GitHub Bot commented on NIFI-3238:
--------------------------------------
Github user trixpan commented on the issue:
https://github.com/apache/nifi/pull/1418
@mattyb149 - this isn't ready yet but I suspect it may be functional. So
far I have been testing with filebeat but it should work with metricbeat as
well.
Of note:
- the processor performs partial ACKs, more precisely it replies to EVERY
sequence number with an ACK, completely ignoring the window size. This may
change prior to merging.
- Given ListenLumberjack has been my first attempt in coding, while
migrating from ListenLumberjack to ListenBeats I tried to clean the code a bit,
I think there still space for improvement.
To test the processor all it is needed is to:
1. Download filebeat and unzip it
2. use the following config:
```
filebeat.prospectors:
- input_type: log
paths:
- logsource/*.log
output.logstash:
hosts: ["localhost:5044"]
compression_level: 0
timeout: 600
bulk_max_size: 1
```
> ListenLumberjack should support the *beat protocol
> --------------------------------------------------
>
> Key: NIFI-3238
> URL: https://issues.apache.org/jira/browse/NIFI-3238
> Project: Apache NiFi
> Issue Type: Improvement
> Reporter: Andre
> Assignee: Andre
>
> ListenLumberjack currently only supports v1 of the Lumberjack protocol. This
> version has been deprecated in favor of v2, which is used on *beat (e.g.
> filebeat, packetbeat, etc) edge components of the ELK stack.
> We should consider deprecating ListenLumberjack or to extend it to handle
> both v1 and v2 of the protocol.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)