Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appended newline to data in file forwarder #100

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

evisong
Copy link

@evisong evisong commented Sep 28, 2018

Hi, team,

I've been using Boomcatch together with ELK stacks, my solution depends on unmapped mapper and file forwarder, and then let FileBeat to collect generated json files. However FileBeat doesn't recognize any record if a json file doesn't end with newline (\n).

When I read Boomcatch source code, I think I could append the newline (\n) to the end of data in file forwarder, and I guess it won't break any downstream usages.

I've also adjusted UT.

Could you please help review this PR?

Thanks.

@@ -32,7 +32,7 @@ function send (directory, data, type, separator, callback) {
try {
fs.writeFile(
path.join(directory, 'boomcatch-' + uuid.v4() + '.' + extensions[type || 'default']),
data,
data + '\n',
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is common in *nix, please let me know if I should use require('os').EOL instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant