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

Add support for json logging to file #4523

Merged
merged 1 commit into from Jul 3, 2017
Merged

Conversation

ruflin
Copy link
Member

@ruflin ruflin commented Jun 19, 2017

The current support is very minimal and only logs the existing log structure in json instead of plain text. In the future further support for being able to log structs and more complex events could be added.

JSON logging is disabled by default and only available for file logging.

Changelog and docs are still missing. I want to discuss first if we should move forward with this.

@ruflin ruflin added discuss Issue needs further discussion. libbeat review labels Jun 19, 2017
@tsg
Copy link
Contributor

tsg commented Jun 19, 2017

I like the approach, but note that we default to logging to syslog. If we decide to recommend people to use the file logger, we'll need some improvements to it (e.g. reopen files on signal, to support external rotating strategies).

@ruflin
Copy link
Member Author

ruflin commented Jun 19, 2017

Should we enable json logging also for syslog? Should we make it apply to all logging methods?

@ruflin ruflin force-pushed the json-logging branch 2 times, most recently from 1d702f9 to f473e55 Compare June 26, 2017 11:07
@ruflin ruflin added needs_docs and removed discuss Issue needs further discussion. labels Jun 26, 2017
@tsg
Copy link
Contributor

tsg commented Jun 28, 2017

You'll need a rebase on this, but you did it to yourself :)

if _log.JSON {
_log.syslog[level].Output(calldepth, string(bytes))
} else {
_log.syslog[level].Output(calldepth, fmt.Sprintf("%s", message))
Copy link
Contributor

Choose a reason for hiding this comment

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

The Sprintf here seems superfluous. string(bytes)?

Copy link
Member Author

Choose a reason for hiding this comment

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

agree, was probably there because there was more before the refactoring ...

} else {
// Makes sure all prefixes have the same length
prefix = prefix + strings.Repeat(" ", 4-len(prefix))
bytes = []byte(fmt.Sprintf("%s %s %s", timestamp, prefix, message))
Copy link
Contributor

Choose a reason for hiding this comment

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

I wonder if the Sprintf, which is basically a Join, could be implemented more efficient. A benchmark between this and the strings.Join version would be interesting.

If it can be optimized, it's probably worth it so that we don't affect the performance in the debug logging case.

Copy link
Member Author

Choose a reason for hiding this comment

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

@urso probably knows from the top of his head? :-D

@ruflin ruflin force-pushed the json-logging branch 2 times, most recently from 9186fc0 to 2ab1353 Compare June 28, 2017 12:27
@@ -60,6 +60,8 @@ https://github.com/elastic/beats/compare/v6.0.0-alpha2...master[Check the HEAD d
- New cli subcommands interface. {pull}4420[4420]
- Allow source path matching in `add_docker_metadata` processor. {pull}4495[4495]
- Add support for analyzers and multifields in fields.yml. {pull}4574[4574]
- Allow source path matching in `add_docker_metadata` processor {pull}4495[4495]
Copy link
Member

Choose a reason for hiding this comment

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

A changlog entry for add_docker_metadata, is that a merge problem?

Copy link
Member Author

Choose a reason for hiding this comment

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

yes :-(

The current support is very minimal and only logs the existing log structure in json instead of plain text. In the future further support for being able to log structs and more complex events could be added.

JSON logging is disabled by default.
@tsg tsg merged commit 17984b7 into elastic:master Jul 3, 2017
@tsg
Copy link
Contributor

tsg commented Jul 3, 2017

Merged in the current form.

@dedemorton
Copy link
Contributor

Removing "needs_docs" label because the docs are added in #4931

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

Successfully merging this pull request may close these issues.

None yet

4 participants