You are viewing documentation for the development version, it may be incomplete.
Join our translation project and help translate Zabbix documentation into your native language.

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.