We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edf5718 commit d1e1404Copy full SHA for d1e1404
amazon_msk/datadog_checks/amazon_msk/check.py
@@ -37,6 +37,12 @@ class AmazonMskCheckV2(OpenMetricsBaseCheckV2, ConfigMixin):
37
def __init__(self, name, init_config, instances):
38
super().__init__(name, init_config, instances)
39
40
+ # This prevents botocore INFO logs from being printed in the Agent log
41
+ # https://github.com/boto/botocore/blob/develop/botocore/credentials.py#L1075
42
+ import logging
43
+
44
+ logging.getLogger('botocore').setLevel(logging.CRITICAL)
45
46
self._region_name = None
47
self._exporter_data = None
48
self._endpoint_prefix = None
0 commit comments