diff --git a/aerospike/datadog_checks/aerospike/aerospike.py b/aerospike/datadog_checks/aerospike/aerospike.py index 143eb93540cef..71f5d9ff68ad4 100644 --- a/aerospike/datadog_checks/aerospike/aerospike.py +++ b/aerospike/datadog_checks/aerospike/aerospike.py @@ -218,6 +218,13 @@ def get_info(self, command, separator=';'): # See https://www.aerospike.com/docs/reference/info/ # Example output: command\tKEY=VALUE;KEY=VALUE;... data = self._client.info_node(command, self._host, self._info_policies) + self.log.debug( + "Get info results for command=`%s`, host=`%s`, policies=`%s`: %s", + command, + self._host, + self._info_policies, + data, + ) # Get rid of command and whitespace data = data[len(command) :].strip()