Netdata bot a9409ca1be Regenerate integrations.js (#19088) 1 day ago
..
cloud-authentication c1570ab2d4 Regenerate integrations.js (#18852) 1 month ago
cloud-notifications 4a2c59f2bb Regenerate integrations.js (#18771) 1 month ago
logs decaca50f4 Regenerate integrations.js (#18834) 1 month ago
schemas dfcf47e4cc Ιmplementation to add logs integrations (#18791) 1 month ago
templates dfcf47e4cc Ιmplementation to add logs integrations (#18791) 1 month ago
README.md 32a6cd38e7 Capitalize the word "Agent" (#19044) 6 days ago
categories.yaml d9c5f20458 add Okta SSO integration (#17351) 7 months ago
check_collector_metadata.py e848a47675 update integrations gen script (#19085) 1 day ago
deploy.yaml a2cbfa5290 claim -> connect in docs (#19060) 4 days ago
gen_doc_collector_page.py e848a47675 update integrations gen script (#19085) 1 day ago
gen_docs_integrations.py e848a47675 update integrations gen script (#19085) 1 day ago
gen_integrations.py e848a47675 update integrations gen script (#19085) 1 day ago
integrations.js a9409ca1be Regenerate integrations.js (#19088) 1 day ago
integrations.json a9409ca1be Regenerate integrations.js (#19088) 1 day ago

README.md

To generate a copy of integrations.js locally, you will need:

  • Python 3.6 or newer (only tested on Python 3.10 currently, should work on any version of Python newer than 3.6).
  • The following third-party Python modules:
    • jsonschema
    • referencing
    • jinja2
    • ruamel.yaml
  • A local checkout of https://github.com/netdata/netdata
  • A local checkout of https://github.com/netdata/go.d.plugin. The script expects this to be checked out in a directory called go.d.plugin in the root directory of the Agent repo, though a symlink with that name pointing at the actual location of the repo will work as well.

The first two parts can be easily covered in a Linux environment, such as a VM or Docker container:

  • On Debian or Ubuntu: apt-get install python3-jsonschema python3-referencing python3-jinja2 python3-ruamel.yaml
  • On Alpine: apk add py3-jsonschema py3-referencing py3-jinja2 py3-ruamel.yaml
  • On Fedora or RHEL (EPEL is required on RHEL systems): dnf install python3-jsonschema python3-referencing python3-jinja2 python3-ruamel-yaml

Once the environment is set up, simply run integrations/gen_integrations.py from the Agent repo. Note that the script must be run from this specific location, as it uses it’s own path to figure out where all the files it needs are.