@cryptotaxi247 / netdata-1 / commits / 377d1d295

Exporting moved, so changes needed for integrations, + CODEOWNERS change (#16932)

Fotis Voutsas committed Feb 5, 2024 at 13:44 UTC 377d1d295860e796ca8301578df60f1e5cde6627
4 files changed +4 -4
.github/CODEOWNERS
+1 -1
@@ -16,7 +16,7 @@ collectors/freebsd.plugin/ @thiagoftsm
16 collectors/macos.plugin/ @thiagoftsm
17 collectors/python.d.plugin/ @ilyam8
18 collectors/cups.plugin/ @thiagoftsm
19 -exporting/ @thiagoftsm
19 +src/exporting/ @thiagoftsm
20 daemon/ @thiagoftsm @vkalintiris
21 database/ @thiagoftsm @vkalintiris
22 docs/ @tkatsoulas @Ancairon
.github/workflows/generate-integrations.yml
+1 -1
@@ -7,7 +7,7 @@ on:
7 - master
8 paths: # If any of these files change, we need to regenerate integrations.js.
9 - 'collectors/**/metadata.yaml'
10 - - 'exporting/**/metadata.yaml'
10 + - 'src/exporting/**/metadata.yaml'
11 - 'health/notifications/**/metadata.yaml'
12 - 'integrations/templates/**'
13 - 'integrations/categories.yaml'
integrations/gen_docs_integrations.py
+1 -1
@@ -21,7 +21,7 @@ def cleanup():
21 if "integrations" in str(element):
22 shutil.rmtree(element)
23
24 - for element in Path("exporting").glob('**/*/'):
24 + for element in Path("src/exporting").glob('**/*/'):
25 if "integrations" in str(element):
26 shutil.rmtree(element)
27 for element in Path("integrations/cloud-notifications").glob('**/*/'):
integrations/gen_integrations.py
+1 -1
@@ -39,7 +39,7 @@ DEPLOY_SOURCES = [
39 ]
40
41 EXPORTER_SOURCES = [
42 - (AGENT_REPO, REPO_PATH / 'exporting', True),
42 + (AGENT_REPO, REPO_PATH / 'src' / 'exporting', True),
43 ]
44
45 NOTIFICATION_SOURCES = [