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 ssl path option when building the librdkafka dependency #17957

Merged
merged 16 commits into from
Jul 4, 2024
7 changes: 7 additions & 0 deletions kafka_consumer/datadog_checks/kafka_consumer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ def __init__(self, init_config, instance, log) -> None:
else:
self._tls_verify = "true" if is_affirmative(instance.get("tls_verify", True)) else "false"

if (
not self._tls_ca_cert
and os.name != 'nt'
and os.path.exists('/opt/datadog-agent/embedded/ssl/certs/cacert.pem')
):
self._tls_ca_cert = '/opt/datadog-agent/embedded/ssl/certs/cacert.pem'

def validate_config(self):
if not self._kafka_connect_str:
raise ConfigurationError('`kafka_connect_str` is required')
Expand Down
Loading