node.d.conf 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "___help_1": "Default options for node.d.plugin - this is a JSON file.",
  3. "___help_2": "Use http://jsonlint.com/ to verify it is valid JSON.",
  4. "___help_3": "------------------------------------------------------------",
  5. "___help_update_every": "Minimum data collection frequency for all node.d/*.node.js modules. Set it to 0 to inherit it from netdata.",
  6. "update_every": 0,
  7. "___help_modules_enable_autodetect": "Enable/disable auto-detection for node.d/*.node.js modules that support it.",
  8. "modules_enable_autodetect": true,
  9. "___help_modules_enable_all": "Enable all node.d/*.node.js modules by default.",
  10. "modules_enable_all": true,
  11. "___help_modules": "Enable/disable the following modules. Give only XXX for node.d/XXX.node.js",
  12. "modules": {
  13. "snmp": {
  14. "enabled": true
  15. }
  16. },
  17. "___help_paths": "Paths that control the operation of node.d.plugin",
  18. "paths": {
  19. "___help_plugins": "The full path to the modules javascript node.d/ directory",
  20. "plugins": null,
  21. "___help_config": "The full path to the modules configs node.d/ directory",
  22. "config": null,
  23. "___help_modules": "Array of paths to add to node.js when searching for node_modules",
  24. "modules": []
  25. }
  26. }