I have a case with IBM AIX, need to send syslogs, logs from file and maybe appslogs to Apache Kafka, is it possible ? I try search something about nxlog, but he don't have output to Kafka for AIX any other solutions ?
Asked
Active
Viewed 1,215 times
1
-
Possible duplicate of [How to read logs from file in kafka?](https://stackoverflow.com/questions/46508901/how-to-read-logs-from-file-in-kafka) – Jim Wright Jan 05 '18 at 12:59
-
@JimWright, Topic "How to read logs from file in Kafka?" does not resolve my problem – user9177546 Jan 05 '18 at 13:14
-
"need to send syslogs, logs from file and maybe appslogs to Apache Kafka"? – Jim Wright Jan 05 '18 at 13:21
1 Answers
1
You can stream all sorts of data into (and out of) Apache Kafka using Kafka Connect, which is part of Apache Kafka. There's a list of connectors here, including log files and syslog.

Robin Moffatt
- 30,382
- 3
- 65
- 92
-
The file connector does not handle rolling files (a common practice with log files) – PragmaticProgrammer Jan 05 '18 at 20:26