We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We have a clickhouse server with a self-signed certificate and when connecting with the client we use:
clickhouse-client [...] --secure --accept-invalid-certificate
However, with datadog current implementation there isn't a way to specify this flag
no_verifyed_client = Client( 'localhost', secure=True, verify=False )
Pay attention to the verify flag. Datadog library itself doesn't allow this flag: https://github.com/DataDog/integrations-core/blob/master/clickhouse/datadog_checks/clickhouse/clickhouse.py#L30
verify
Can we please add support for it?
The text was updated successfully, but these errors were encountered:
HadhemiDD
No branches or pull requests
We have a clickhouse server with a self-signed certificate and when connecting with the client we use:
However, with datadog current implementation there isn't a way to specify this flag
Pay attention to the
verify
flag.Datadog library itself doesn't allow this flag: https://github.com/DataDog/integrations-core/blob/master/clickhouse/datadog_checks/clickhouse/clickhouse.py#L30
Can we please add support for it?
The text was updated successfully, but these errors were encountered: