jenkinsci / datadog-plugin

A Jenkins plugin used to forward metrics, events, and service checks to an account at Datadog, automatically.
https://plugins.jenkins.io/datadog/
MIT License
34 stars 48 forks source link

Fix file descriptor leak in logger reinitialisation logic and print stack trace in severe logs #347

Closed nikita-tkachenko-datadog closed 1 year ago

nikita-tkachenko-datadog commented 1 year ago

Requirements for Contributing to this repository

What does this PR do?

Fixes a file descriptor leak in logger reinitialisation logic. Whenever there is problem with the logger, it is reinitialized. Reinitialisation entails creating a new logger instance. The problem is that the old instance is not being closed. The logger uses a SocketHandler, which opens a socket. This handler needs to be closed, otherwise file descriptor that corresponds to the opened socket "leaks". If the logger is reinitialised many times the process runs out of available file descriptors.

Description of the Change

Whenever the logger is reinitialised, previously existing instance (if any) is properly closed.

Alternate Designs

Possible Drawbacks

Verification Process

Tested manually using a dockerized Jenkins instance.

Additional Notes

DatadogUtilities#severe was changed to log exception stack trace: the stack trace is the most valuable and useful piece of info, and it is rather troublesome to ask customers to tweak their log levels and reproduce their problem all over again because the exception was not logged the first time.

Release Notes

Review checklist (to be filled by reviewers)