Rclone Mount upload progress

Hi, im having trouble trying to get the progress of uploads through my Rclone Mount to Google Drive..

It doesnt tell me what file is being uploaded, or how far along the progress is.. it just shows me information about the cache... How can i see what file is being processed, and the progress of the upload?

Below is my mount code:
mount gdrive_media_vfsR: R:
--transfers=5
--fast-list
--progress
--stats-one-line
--allow-other
--dir-cache-time=160h
--cache-chunk-size=10M
--cache-info-age=168h
--cache-workers=5
--attr-timeout=1s
--vfs-read-chunk-size=128M
--vfs-cache-max-age=1h
--vfs-cache-mode writes
--cache-dir "G:\Rclone_Cache_R\Upload\vfs_cache"
--buffer-size=16M
--cache-tmp-upload-path "G:\Rclone_Cache_R\Upload"
--cache-tmp-wait-time 30m
--cache-db-path "E:\Rclone_Cache_R\Cache"
--log-file "G:\Rclone\Logs\R_Mount.txt"
--log-level INFO
--config "D:\Rclone\rclone.conf"

Below is my log output:
2020/04/11 16:52:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:53:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:54:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:55:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:56:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:57:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:58:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 16:59:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 17:00:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)

what are you using to copy and moves inside the remote?
windows explorer or what?

if you copy or move a file, it should show up in the log file.
2020/04/11 10:40:42 INFO : test.txt: Copied (new)

Im using Radarr/Sonarr, pointing path to the mounted Rclone Drive.. So when my NZB Get finishes downloading, it should move/copy it to the mounted drive automatically (it does, but i only see the cache info in the log)

Well, and the copied part:
2020/04/11 16:59:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 17:00:46 INFO : Cleaned the cache: objects 6 (was 6), total size 3.060G (was 3.060G)
2020/04/11 17:01:16 INFO : TV Shows/The Letter for the King/Season 1/The.Letter.for.the.King.S01E03.mkv: Copied (new)

But is there a way to show like copy started,% progress etc??

You can use --stats 1m with rclone mount to get it to print more statistics on transfers.

thank you, thats closer to what im looking for, it now shows:

2020/04/11 19:07:23 INFO : 420.004M / 1.867 GBytes, 22%, 1.906 MBytes/s, ETA 13m2s

Is there any way to show the filename its uploading?

It should be showing file names it is transferring right now just under that line.

All im getting is:

2020/04/12 13:42:38 INFO : 27.860G / 33.532 GBytes, 83%, 1.853 MBytes/s, ETA 52m14s
2020/04/12 13:42:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 2.484G)
2020/04/12 13:43:38 INFO : 28.005G / 33.532 GBytes, 84%, 1.848 MBytes/s, ETA 51m2s
2020/04/12 13:43:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)
2020/04/12 13:44:38 INFO : 28.149G / 33.532 GBytes, 84%, 1.843 MBytes/s, ETA 49m50s
2020/04/12 13:44:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)
2020/04/12 13:45:38 INFO : 28.292G / 33.532 GBytes, 84%, 1.839 MBytes/s, ETA 48m38s
2020/04/12 13:45:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)
2020/04/12 13:46:38 INFO : 28.433G / 33.532 GBytes, 85%, 1.834 MBytes/s, ETA 47m27s
2020/04/12 13:46:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)
2020/04/12 13:47:38 INFO : 28.577G / 33.532 GBytes, 85%, 1.829 MBytes/s, ETA 46m13s
2020/04/12 13:47:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)
2020/04/12 13:48:38 INFO : 28.720G / 33.532 GBytes, 86%, 1.825 MBytes/s, ETA 45m
2020/04/12 13:48:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)
2020/04/12 13:49:38 INFO : 28.865G / 33.532 GBytes, 86%, 1.820 MBytes/s, ETA 43m45s
2020/04/12 13:49:38 INFO : Cleaned the cache: objects 6 (was 6), total size 5.741G (was 5.741G)

Have you got --stats-one-line set?

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.