netdata-updater.conf 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Configuration for netdata-updater.sh script.
  2. #
  3. # When run non-interactively, the updater script will delay some
  4. # random number of seconds up to NETDATA_UPDATER_JITTER before
  5. # actually running the update. The default is 3600 (one hour). Most
  6. # users should not need to change this.
  7. #NETDATA_UPDATER_JITTER="3600"
  8. # By default, the updater will update to new major versions without asking
  9. # for user confirmation once we consider them ready for general usage.
  10. #
  11. # You can override this behavior by setting NETDATA_ACCEPT_MAJOR_VERSIONS
  12. # to a space separated list of major versions you are willing to update
  13. # to. Attempts to update to newer major versions not listed in this variable
  14. # will be treated as a fatal error.
  15. #
  16. # An empty value is equivalent to the default behavior.
  17. #
  18. # This only applies to static builds and local builds. If you are using
  19. # our native packages, use your package manager’s existing functionality
  20. # to prevent updates (for example, pinning versions on APT-based systems,
  21. # or the DNF versionlock plugin on RHEL/Fedora).
  22. #
  23. # To lock yourself to a specific major version, set this value to exactly
  24. # that major version number. For example, to stay on version 1.x even
  25. # if 2.x has been released, set this to a value of `1`.
  26. #NETDATA_ACCEPT_MAJOR_VERSIONS=''
  27. # On systems using our native packages, the updater will by default
  28. # attempt to install optional plugin packages that would be installed by
  29. # default on clean installs if those packages are supported on the system.
  30. #
  31. # This behavior can be disabled on a per-package basis using the below
  32. # variables. Setting the variable to a value other than 0 will disable
  33. # the corresponding package (note that you still need to remove the package
  34. # yourself if you don't want it, this just controls whether the updater
  35. # will try to ensure it’s installed or not).
  36. #
  37. # NETDATA_NO_SYSTEMD_JOURNAL controls the `netdata-plugin-systemd-journal`
  38. # package, which provides the systemd journal plugin for Netdata.
  39. #NETDATA_NO_SYSTEMD_JOURNAL="0"