I’m currently using the latest stable Rclone with a template of @Animosity022’s configs and wanted to know if there is a way to monitor the speed of Rclone transfers using mount with cache. When I was trying the highest verbose level I’d get this
2018/04/10 05:58:44 DEBUG : **ENCRYPTED**: Sending chunk 1056964608 length 8388608
2018/04/10 05:58:44 DEBUG : **ENCRYPTED**: Sending chunk 1065353216 length 8388608
2018/04/10 05:58:45 DEBUG : **ENCRYPTED**: Sending chunk 1073741824 length 262176
Log can be found here hastebin.com/ivesijubos.md
For reference the config I’m using is similar to
/usr/bin/rclone mount gmedia: /gmedia \
   --allow-other \
   --dir-cache-time=160h \
   --cache-chunk-size=5M \
   --cache-info-age=168h \
   --cache-workers=5 \
   --cache-tmp-upload-path /data/rclone_upload \
   --cache-tmp-wait-time 60m \
   --buffer-size 0M \
   --attr-timeout=1s \
   --syslog \
   --umask 002 \
   --rc \
   --log-level DEBUG
I was able to find out by the chunks and how many happened per second the speed but I thought rclone had a speed meter available through its logging if I’m not mistaken