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 472509e commit 5959dc4Copy full SHA for 5959dc4
utils/flare.py
@@ -36,6 +36,7 @@
36
# DD imports
37
from checks.check_status import CollectorStatus, DogstatsdStatus, ForwarderStatus
38
from config import (
39
+ get_auto_confd_path,
40
get_confd_path,
41
get_config,
42
get_config_path,
@@ -316,6 +317,14 @@ def _add_conf_tar(self):
316
317
self.CHECK_CREDENTIALS
318
)
319
320
+ for file_path in glob.glob(os.path.join(get_auto_confd_path(), '*.yaml')):
321
+ if self._can_read(file_path, output=False):
322
+ self._add_clean_conf(
323
+ file_path,
324
+ os.path.join('etc', 'confd', 'auto_conf'),
325
+ self.CHECK_CREDENTIALS
326
+ )
327
+
328
# Collect SDK-package related information
329
def _add_sdk_info_tar(self):
330
sdk_manifest = {}
0 commit comments