Это перевод страницы документации с английского языка. Помогите нам сделать его лучше.

Troubleshooting

This section provides troubleshooting suggestions for custom modules and widgets. It will be expanded based on user feedback.

Module is not detected

If Zabbix frontend does not discover a module or widget, make sure that:

  • The file manifest.json is correctly formatted and all required keys are present.
  • The web server user has:
    • read and execute (+rx) access to your module directory;
    • read and execute (+rx) access to all the directories inside it;
    • read (+r) access to all the files inside it.

The permissions can be fixed by running the following commands:

find <ModuleName> -type d -exec chmod a+rx '{}' \;
       find <ModuleName> -type f -exec chmod a+r '{}' \;

Replace <ModuleName> with the directory of your module or widget.