Skip to content

Commit

Permalink
Exporting moved, so changes needed for integrations, + CODEOWNERS cha…
Browse files Browse the repository at this point in the history
…nge (netdata#16932)
  • Loading branch information
Ancairon authored Feb 5, 2024
1 parent 4299ff7 commit 377d1d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ collectors/freebsd.plugin/ @thiagoftsm
collectors/macos.plugin/ @thiagoftsm
collectors/python.d.plugin/ @ilyam8
collectors/cups.plugin/ @thiagoftsm
exporting/ @thiagoftsm
src/exporting/ @thiagoftsm
daemon/ @thiagoftsm @vkalintiris
database/ @thiagoftsm @vkalintiris
docs/ @tkatsoulas @Ancairon
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- master
paths: # If any of these files change, we need to regenerate integrations.js.
- 'collectors/**/metadata.yaml'
- 'exporting/**/metadata.yaml'
- 'src/exporting/**/metadata.yaml'
- 'health/notifications/**/metadata.yaml'
- 'integrations/templates/**'
- 'integrations/categories.yaml'
Expand Down
2 changes: 1 addition & 1 deletion integrations/gen_docs_integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def cleanup():
if "integrations" in str(element):
shutil.rmtree(element)

for element in Path("exporting").glob('**/*/'):
for element in Path("src/exporting").glob('**/*/'):
if "integrations" in str(element):
shutil.rmtree(element)
for element in Path("integrations/cloud-notifications").glob('**/*/'):
Expand Down
2 changes: 1 addition & 1 deletion integrations/gen_integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
]

EXPORTER_SOURCES = [
(AGENT_REPO, REPO_PATH / 'exporting', True),
(AGENT_REPO, REPO_PATH / 'src' / 'exporting', True),
]

NOTIFICATION_SOURCES = [
Expand Down

0 comments on commit 377d1d2

Please sign in to comment.