I've set up rclone RC using the following command in a service: rclone rcd --rc-user <user> --rc-pass <pass> --rc-web-gui --rc-web-gui-no-open-browser --rc-enable-metrics --rc-no-auth --rc-addr :5572
The RC loads, is connected to rclone, shows my mount points and I can browse my remotes.
I am using a separate daemon to mount specific mount points using rclone mount, however, they don't show up in the RC. Can rclone RC somehow import existing mounts?
Ok understood, so the Web GUI is not a GUI that attaches to a single process, it instead launches its own process. As a matter of fact, if I use a cron job to periodically move files from a harddrive to a s3 remote with rclone, the Web UI also won't show any metrics, becuase the move process is from a different process. Is this correct?
The main reason I wanted to spin up the remote console is the /metrics end point. I want to monitor rclone performance, ant the prometheus metrics seemed a good idea for that.
But that doesn't help if it's not catching metrics from different processes.
Is there any other way that rclone mount, move, etc would expose metrics?