Both site owners and server administrators should be concerned about automatic resource consumption left unchecked. We suggest how one might check up on logging past and present.
# Owners
Stop Datalogs when not in use.
Find Datalogs that might have been forgotten.
ITEM datalog
# Administrators
Find space used by logs.
(cd ~/.wiki; du -h */assets/plugins/datalog/*)
Find timer intervals used by plugin.
find ~/.wiki -name 'schedules.json' | \ while read s do echo $s jq '.[].interval' $s done