airdcpp-share-monitor
v1.2.0
Published
Real time share monitoring
Downloads
1,678
Maintainers
Readme
airdcpp-share-monitor
AirDC++ extension that will monitor the shared directories for changes and apply them in share.
What's new in each version
Troubleshooting
Enable extension debug mode from application settings and check the extension error logs (Settings\extensions\airdcpp-search-sites\logs
) for additional information.
Common issues
The extension exits with "EISDIR: illegal operation on a directory" in the error log
This means that your system or the specific storage solution doesn't support file watching. File watching is typically supported on Windows, Linux and macOS, but it may not work with all network storage solutions or when using virtualization.
The extension exits with "Error: watch /share/root/ ENOSPC" in the error log (Linux only)
The maximum limit for directory watchers was reached. You may see the current limit on your system by executing the command cat /proc/sys/fs/inotify/max_user_watches
in terminal.
As Linux doesn't have support for watching directories for changes recursively, the extension needs to go through all roots and their subdirectories and add an individual watcher for each of them. If the total number of directories in your share is larger than the system limit for directory watchers, adding of watchers will fail.
Solution 1
If you don't need to watch all shared directories for changes, you may set some of the root as Incoming on the Share page and configure the extension to monitor incoming roots only.
Solution 2
You may increase the maximum watcher limit on your system (instructions)
Extension airdcpp-share-monitor timed out and was restarted
Common reasons that may cause a timeout:
- The extension became unresponsive because of an unusually high system load
- System was hibernated
If such timeouts happen often when the system is under heavy load, you can increase the ping timeout period from the Web UI (Settings -> System -> Advanced server settings -> Socket ping timeout).
Development
Help wanted
Pull requests with new validation modules are welcome. When developing new modules, please write tests as well.
This extension is based on the airdcpp-create-extension example project, that provides instructions for AirDC++ extension development.
You may run the tests with npm run test
.