2018-03-05 12:44:16 +01:00
|
|
|
---
|
|
|
|
title: "Remote Control"
|
|
|
|
description: "Remote controlling rclone"
|
|
|
|
date: "2018-03-05"
|
|
|
|
---
|
|
|
|
|
|
|
|
# Remote controlling rclone #
|
|
|
|
|
|
|
|
If rclone is run with the `--rc` flag then it starts an http server
|
|
|
|
which can be used to remote control rclone.
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
If you just want to run a remote control then see the [rcd command](/commands/rclone_rcd/).
|
|
|
|
|
2018-03-16 21:45:34 +01:00
|
|
|
**NB** this is experimental and everything here is subject to change!
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
## Supported parameters
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
Flag to start the http server listen on remote requests
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-addr=IP
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
IPaddress:Port or :Port to bind server to. (default "localhost:5572")
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-cert=KEY
|
2018-03-14 20:48:37 +01:00
|
|
|
SSL PEM key (concatenation of certificate and CA certificate)
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-client-ca=PATH
|
2018-03-14 20:48:37 +01:00
|
|
|
Client certificate authority to verify clients with
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-htpasswd=PATH
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
htpasswd file - if not provided no authentication is done
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-key=PATH
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
SSL PEM Private key
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-max-header-bytes=VALUE
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
Maximum size of request header (default 4096)
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-user=VALUE
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
User name for authentication.
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-pass=VALUE
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
Password for authentication.
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-realm=VALUE
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
Realm for authentication (default "rclone")
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-server-read-timeout=DURATION
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
Timeout for server reading data (default 1h0m0s)
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-server-write-timeout=DURATION
|
|
|
|
|
2018-03-14 20:48:37 +01:00
|
|
|
Timeout for server writing data (default 1h0m0s)
|
2018-03-05 12:44:16 +01:00
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
### --rc-serve
|
|
|
|
|
|
|
|
Enable the serving of remote objects via the HTTP interface. This
|
|
|
|
means objects will be accessible at http://127.0.0.1:5572/ by default,
|
|
|
|
so you can browse to http://127.0.0.1:5572/ or http://127.0.0.1:5572/*
|
|
|
|
to see a listing of the remotes. Objects may be requested from
|
|
|
|
remotes using this syntax http://127.0.0.1:5572/[remote:path]/path/to/object
|
|
|
|
|
|
|
|
Default Off.
|
|
|
|
|
|
|
|
### --rc-files /path/to/directory
|
|
|
|
|
|
|
|
Path to local files to serve on the HTTP server.
|
|
|
|
|
|
|
|
If this is set then rclone will serve the files in that directory. It
|
|
|
|
will also open the root in the web browser if specified. This is for
|
|
|
|
implementing browser based GUIs for rclone functions.
|
|
|
|
|
2018-11-04 12:34:16 +01:00
|
|
|
If `--rc-user` or `--rc-pass` is set then the URL that is opened will
|
|
|
|
have the authorization in the URL in the `http://user:pass@localhost/`
|
|
|
|
style.
|
|
|
|
|
2018-10-28 15:31:24 +01:00
|
|
|
Default Off.
|
|
|
|
|
2019-08-12 14:44:08 +02:00
|
|
|
### --rc-web-gui
|
|
|
|
|
|
|
|
Set this flag to serve the default web gui on the same port as rclone.
|
|
|
|
|
|
|
|
Default Off.
|
|
|
|
|
|
|
|
### --rc-allow-origin
|
|
|
|
|
|
|
|
Set the allowed Access-Control-Allow-Origin for rc requests.
|
|
|
|
|
|
|
|
Can be used with --rc-web-gui if the rclone is running on different IP than the web-gui.
|
|
|
|
|
|
|
|
Default is IP address on which rc is running.
|
|
|
|
|
|
|
|
### --rc-web-fetch-url
|
|
|
|
|
|
|
|
Set the URL to fetch the rclone-web-gui files from.
|
|
|
|
|
|
|
|
Default https://api.github.com/repos/rclone/rclone-webui-react/releases/latest.
|
|
|
|
|
|
|
|
### --rc-web-gui-update
|
|
|
|
|
|
|
|
Set this flag to Download / Force update rclone-webui-react from the rc-web-fetch-url.
|
|
|
|
|
|
|
|
Default Off.
|
|
|
|
|
2019-06-13 14:04:59 +02:00
|
|
|
### --rc-job-expire-duration=DURATION
|
|
|
|
|
|
|
|
Expire finished async jobs older than DURATION (default 60s).
|
|
|
|
|
|
|
|
### --rc-job-expire-interval=DURATION
|
|
|
|
|
|
|
|
Interval duration to check for expired async jobs (default 10s).
|
|
|
|
|
2018-11-03 17:37:09 +01:00
|
|
|
### --rc-no-auth
|
|
|
|
|
|
|
|
By default rclone will require authorisation to have been set up on
|
|
|
|
the rc interface in order to use any methods which access any rclone
|
|
|
|
remotes. Eg `operations/list` is denied as it involved creating a
|
|
|
|
remote as is `sync/copy`.
|
|
|
|
|
|
|
|
If this is set then no authorisation will be required on the server to
|
|
|
|
use these methods. The alternative is to use `--rc-user` and
|
|
|
|
`--rc-pass` and use these credentials in the request.
|
|
|
|
|
|
|
|
Default Off.
|
|
|
|
|
2018-03-05 12:44:16 +01:00
|
|
|
## Accessing the remote control via the rclone rc command
|
|
|
|
|
|
|
|
Rclone itself implements the remote control protocol in its `rclone
|
|
|
|
rc` command.
|
|
|
|
|
|
|
|
You can use it like this
|
|
|
|
|
2018-03-16 21:45:34 +01:00
|
|
|
```
|
|
|
|
$ rclone rc rc/noop param1=one param2=two
|
|
|
|
{
|
|
|
|
"param1": "one",
|
|
|
|
"param2": "two"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Run `rclone rc` on its own to see the help for the installed remote
|
|
|
|
control commands.
|
|
|
|
|
2018-10-26 15:45:44 +02:00
|
|
|
`rclone rc` also supports a `--json` flag which can be used to send
|
|
|
|
more complicated input parameters.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ rclone rc --json '{ "p1": [1,"2",null,4], "p2": { "a":1, "b":2 } }' rc/noop
|
|
|
|
{
|
|
|
|
"p1": [
|
|
|
|
1,
|
|
|
|
"2",
|
|
|
|
null,
|
|
|
|
4
|
|
|
|
],
|
|
|
|
"p2": {
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-10-26 15:48:22 +02:00
|
|
|
## Special parameters
|
|
|
|
|
|
|
|
The rc interface supports some special parameters which apply to
|
|
|
|
**all** commands. These start with `_` to show they are different.
|
|
|
|
|
|
|
|
### Running asynchronous jobs with _async = true
|
|
|
|
|
2019-07-19 10:13:17 +02:00
|
|
|
Each rc call is classified as a job and it is assigned its own id. By default
|
|
|
|
jobs are executed immediately as they are created or synchronously.
|
|
|
|
|
2018-10-26 15:48:22 +02:00
|
|
|
If `_async` has a true value when supplied to an rc call then it will
|
|
|
|
return immediately with a job id and the task will be run in the
|
|
|
|
background. The `job/status` call can be used to get information of
|
|
|
|
the background job. The job can be queried for up to 1 minute after
|
|
|
|
it has finished.
|
|
|
|
|
|
|
|
It is recommended that potentially long running jobs, eg `sync/sync`,
|
|
|
|
`sync/copy`, `sync/move`, `operations/purge` are run with the `_async`
|
|
|
|
flag to avoid any potential problems with the HTTP request and
|
|
|
|
response timing out.
|
|
|
|
|
|
|
|
Starting a job with the `_async` flag:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ rclone rc --json '{ "p1": [1,"2",null,4], "p2": { "a":1, "b":2 }, "_async": true }' rc/noop
|
|
|
|
{
|
|
|
|
"jobid": 2
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Query the status to see if the job has finished. For more information
|
|
|
|
on the meaning of these return parameters see the `job/status` call.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ rclone rc --json '{ "jobid":2 }' job/status
|
|
|
|
{
|
|
|
|
"duration": 0.000124163,
|
|
|
|
"endTime": "2018-10-27T11:38:07.911245881+01:00",
|
|
|
|
"error": "",
|
|
|
|
"finished": true,
|
|
|
|
"id": 2,
|
|
|
|
"output": {
|
|
|
|
"_async": true,
|
|
|
|
"p1": [
|
|
|
|
1,
|
|
|
|
"2",
|
|
|
|
null,
|
|
|
|
4
|
|
|
|
],
|
|
|
|
"p2": {
|
|
|
|
"a": 1,
|
|
|
|
"b": 2
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"startTime": "2018-10-27T11:38:07.911121728+01:00",
|
|
|
|
"success": true
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
`job/list` can be used to show the running or recently completed jobs
|
|
|
|
|
|
|
|
```
|
|
|
|
$ rclone rc job/list
|
|
|
|
{
|
|
|
|
"jobids": [
|
|
|
|
2
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-07-19 10:13:17 +02:00
|
|
|
### Assigning operations to groups with _group = <value>
|
|
|
|
|
|
|
|
Each rc call has it's own stats group for tracking it's metrics. By default
|
|
|
|
grouping is done by the composite group name from prefix `job/` and id of the
|
|
|
|
job like so `job/1`.
|
|
|
|
|
|
|
|
If `_group` has a value then stats for that request will be grouped under that
|
|
|
|
value. This allows caller to group stats under their own name.
|
|
|
|
|
|
|
|
Stats for specific group can be accessed by passing `group` to `core/stats`:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ rclone rc --json '{ "group": "job/1" }' core/stats
|
|
|
|
{
|
|
|
|
"speed": 12345
|
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-03-16 21:45:34 +01:00
|
|
|
## Supported commands
|
2018-04-23 21:44:44 +02:00
|
|
|
<!--- autogenerated start - run make rcdocs - don't edit here -->
|
2019-08-13 12:54:13 +02:00
|
|
|
### cache/expire: Purge a remote from cache {#cache/expire}
|
2018-04-23 21:44:44 +02:00
|
|
|
|
|
|
|
Purge a remote from the cache backend. Supports either a directory or a file.
|
|
|
|
Params:
|
|
|
|
- remote = path to remote (required)
|
|
|
|
- withData = true/false to delete cached data (chunks) as well (optional)
|
|
|
|
|
|
|
|
Eg
|
|
|
|
|
|
|
|
rclone rc cache/expire remote=path/to/sub/folder/
|
|
|
|
rclone rc cache/expire remote=/ withData=true
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### cache/fetch: Fetch file chunks {#cache/fetch}
|
2018-10-15 12:03:08 +02:00
|
|
|
|
|
|
|
Ensure the specified file chunks are cached on disk.
|
|
|
|
|
|
|
|
The chunks= parameter specifies the file chunks to check.
|
|
|
|
It takes a comma separated list of array slice indices.
|
|
|
|
The slice indices are similar to Python slices: start[:end]
|
|
|
|
|
|
|
|
start is the 0 based chunk number from the beginning of the file
|
|
|
|
to fetch inclusive. end is 0 based chunk number from the beginning
|
2019-02-09 11:42:57 +01:00
|
|
|
of the file to fetch exclusive.
|
2018-10-15 12:03:08 +02:00
|
|
|
Both values can be negative, in which case they count from the back
|
|
|
|
of the file. The value "-5:" represents the last 5 chunks of a file.
|
|
|
|
|
|
|
|
Some valid examples are:
|
|
|
|
":5,-5:" -> the first and last five chunks
|
|
|
|
"0,-2" -> the first and the second last chunk
|
|
|
|
"0:10" -> the first ten chunks
|
|
|
|
|
|
|
|
Any parameter with a key that starts with "file" can be used to
|
|
|
|
specify files to fetch, eg
|
|
|
|
|
|
|
|
rclone rc cache/fetch chunks=0 file=hello file2=home/goodbye
|
|
|
|
|
|
|
|
File names will automatically be encrypted when the a crypt remote
|
|
|
|
is used on top of the cache.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### cache/stats: Get cache stats {#cache/stats}
|
2018-04-23 21:44:44 +02:00
|
|
|
|
|
|
|
Show statistics for the cache remote.
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/create: create the config for a remote. {#config/create}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- name - name of remote
|
2019-09-03 09:29:44 +02:00
|
|
|
- parameters - a map of \{ "key": "value" \} pairs
|
2018-11-04 21:44:47 +01:00
|
|
|
- type - type of the new remote
|
|
|
|
|
|
|
|
|
|
|
|
See the [config create command](/commands/rclone_config_create/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/delete: Delete a remote in the config file. {#config/delete}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Parameters:
|
2019-09-03 09:29:44 +02:00
|
|
|
|
2018-11-04 21:44:47 +01:00
|
|
|
- name - name of remote to delete
|
|
|
|
|
|
|
|
See the [config delete command](/commands/rclone_config_delete/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/dump: Dumps the config file. {#config/dump}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Returns a JSON object:
|
|
|
|
- key: value
|
|
|
|
|
|
|
|
Where keys are remote names and values are the config parameters.
|
|
|
|
|
|
|
|
See the [config dump command](/commands/rclone_config_dump/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/get: Get a remote in the config file. {#config/get}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- name - name of remote to get
|
|
|
|
|
|
|
|
See the [config dump command](/commands/rclone_config_dump/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/listremotes: Lists the remotes in the config file. {#config/listremotes}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Returns
|
|
|
|
- remotes - array of remote names
|
|
|
|
|
|
|
|
See the [listremotes command](/commands/rclone_listremotes/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/password: password the config for a remote. {#config/password}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- name - name of remote
|
2019-09-03 09:29:44 +02:00
|
|
|
- parameters - a map of \{ "key": "value" \} pairs
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
See the [config password command](/commands/rclone_config_password/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/providers: Shows how providers are configured in the config file. {#config/providers}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Returns a JSON object:
|
|
|
|
- providers - array of objects
|
|
|
|
|
|
|
|
See the [config providers command](/commands/rclone_config_providers/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### config/update: update the config for a remote. {#config/update}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- name - name of remote
|
2019-09-03 09:29:44 +02:00
|
|
|
- parameters - a map of \{ "key": "value" \} pairs
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
See the [config update command](/commands/rclone_config_update/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/bwlimit: Set the bandwidth limit. {#core/bwlimit}
|
2018-03-16 22:45:09 +01:00
|
|
|
|
|
|
|
This sets the bandwidth limit to that passed in.
|
|
|
|
|
|
|
|
Eg
|
|
|
|
|
2018-03-22 16:10:34 +01:00
|
|
|
rclone rc core/bwlimit rate=off
|
2019-07-19 10:13:17 +02:00
|
|
|
{
|
|
|
|
"bytesPerSecond": -1,
|
|
|
|
"rate": "off"
|
|
|
|
}
|
|
|
|
rclone rc core/bwlimit rate=1M
|
|
|
|
{
|
|
|
|
"bytesPerSecond": 1048576,
|
|
|
|
"rate": "1M"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
If the rate parameter is not suppied then the bandwidth is queried
|
|
|
|
|
|
|
|
rclone rc core/bwlimit
|
|
|
|
{
|
|
|
|
"bytesPerSecond": 1048576,
|
|
|
|
"rate": "1M"
|
|
|
|
}
|
2018-03-16 22:45:09 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
The format of the parameter is exactly the same as passed to --bwlimit
|
|
|
|
except only one bandwidth may be specified.
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2019-07-19 10:13:17 +02:00
|
|
|
In either case "rate" is returned as a human readable string, and
|
|
|
|
"bytesPerSecond" is returned as a number.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/gc: Runs a garbage collection. {#core/gc}
|
2018-05-11 14:53:13 +02:00
|
|
|
|
|
|
|
This tells the go runtime to do a garbage collection run. It isn't
|
|
|
|
necessary to call this normally, but it can be useful for debugging
|
|
|
|
memory problems.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/group-list: Returns list of stats. {#core/group-list}
|
2019-07-19 10:13:17 +02:00
|
|
|
|
|
|
|
This returns list of stats groups currently in memory.
|
|
|
|
|
|
|
|
Returns the following values:
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"groups": an array of group names:
|
|
|
|
[
|
|
|
|
"group1",
|
|
|
|
"group2",
|
|
|
|
...
|
|
|
|
]
|
|
|
|
}
|
2019-10-13 06:59:12 +02:00
|
|
|
```
|
2019-07-19 10:13:17 +02:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/memstats: Returns the memory statistics {#core/memstats}
|
2018-03-16 22:45:09 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
This returns the memory statistics of the running program. What the values mean
|
|
|
|
are explained in the go docs: https://golang.org/pkg/runtime/#MemStats
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
The most interesting values for most people are:
|
2018-03-22 16:10:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
* HeapAlloc: This is the amount of memory rclone is actually using
|
|
|
|
* HeapSys: This is the amount of memory rclone has obtained from the OS
|
|
|
|
* Sys: this is the total amount of memory requested from the OS
|
|
|
|
* It is virtual memory so may include unused memory
|
2018-03-22 16:10:34 +01:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/obscure: Obscures a string passed in. {#core/obscure}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Pass a clear string and rclone will obscure it for the config file:
|
|
|
|
- clear - string
|
|
|
|
|
|
|
|
Returns
|
|
|
|
- obscured - string
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/pid: Return PID of current process {#core/pid}
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
This returns PID of current process.
|
|
|
|
Useful for stopping rclone process.
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2019-10-26 12:04:54 +02:00
|
|
|
### core/quit: Terminates the app. {#core/quit}
|
|
|
|
|
|
|
|
(optional) Pass an exit code to be used for terminating the app:
|
|
|
|
- exitCode - int
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/stats: Returns stats about current transfers. {#core/stats}
|
2018-08-07 21:58:00 +02:00
|
|
|
|
2019-07-19 10:13:17 +02:00
|
|
|
This returns all available stats:
|
2018-08-07 21:58:00 +02:00
|
|
|
|
|
|
|
rclone rc core/stats
|
|
|
|
|
2019-07-19 10:13:17 +02:00
|
|
|
If group is not provided then summed up stats for all groups will be
|
|
|
|
returned.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
- group - name of the stats group (string)
|
|
|
|
|
2018-08-07 22:05:21 +02:00
|
|
|
Returns the following values:
|
|
|
|
|
|
|
|
```
|
2018-08-07 21:58:00 +02:00
|
|
|
{
|
|
|
|
"speed": average speed in bytes/sec since start of the process,
|
|
|
|
"bytes": total transferred bytes since the start of the process,
|
|
|
|
"errors": number of errors,
|
2018-10-15 12:03:08 +02:00
|
|
|
"fatalError": whether there has been at least one FatalError,
|
|
|
|
"retryError": whether there has been at least one non-NoRetryError,
|
2018-08-07 21:58:00 +02:00
|
|
|
"checks": number of checked files,
|
|
|
|
"transfers": number of transferred files,
|
|
|
|
"deletes" : number of deleted files,
|
|
|
|
"elapsedTime": time in seconds since the start of the process,
|
|
|
|
"lastError": last occurred error,
|
|
|
|
"transferring": an array of currently active file transfers:
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"bytes": total transferred bytes for this file,
|
|
|
|
"eta": estimated time in seconds until file transfer completion
|
|
|
|
"name": name of the file,
|
|
|
|
"percentage": progress of the file transfer in percent,
|
|
|
|
"speed": speed in bytes/sec,
|
|
|
|
"speedAvg": speed in bytes/sec as an exponentially weighted moving average,
|
|
|
|
"size": size of the file in bytes
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"checking": an array of names of currently active file checks
|
|
|
|
[]
|
|
|
|
}
|
2018-08-07 22:05:21 +02:00
|
|
|
```
|
2018-08-07 21:58:00 +02:00
|
|
|
Values for "transferring", "checking" and "lastError" are only assigned if data is available.
|
|
|
|
The value for "eta" is null if an eta cannot be determined.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/stats-reset: Reset stats. {#core/stats-reset}
|
2019-07-30 13:22:06 +02:00
|
|
|
|
|
|
|
This clears counters and errors for all stats or specific stats group if group
|
|
|
|
is provided.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
- group - name of the stats group (string)
|
2019-10-26 12:04:54 +02:00
|
|
|
```
|
2019-07-30 13:22:06 +02:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/transferred: Returns stats about completed transfers. {#core/transferred}
|
2019-07-19 10:13:17 +02:00
|
|
|
|
|
|
|
This returns stats about completed transfers:
|
|
|
|
|
|
|
|
rclone rc core/transferred
|
|
|
|
|
|
|
|
If group is not provided then completed transfers for all groups will be
|
|
|
|
returned.
|
|
|
|
|
2019-10-26 12:04:54 +02:00
|
|
|
Note only the last 100 completed transfers are returned.
|
|
|
|
|
2019-07-19 10:13:17 +02:00
|
|
|
Parameters
|
|
|
|
- group - name of the stats group (string)
|
|
|
|
|
|
|
|
Returns the following values:
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"transferred": an array of completed transfers (including failed ones):
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": name of the file,
|
|
|
|
"size": size of the file in bytes,
|
|
|
|
"bytes": total transferred bytes for this file,
|
|
|
|
"checked": if the transfer is only checked (skipped, deleted),
|
|
|
|
"timestamp": integer representing millisecond unix epoch,
|
|
|
|
"error": string description of the error (empty if successfull),
|
|
|
|
"jobid": id of the job that this transfer belongs to
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-10-13 06:59:12 +02:00
|
|
|
```
|
2019-07-19 10:13:17 +02:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### core/version: Shows the current version of rclone and the go runtime. {#core/version}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This shows the current version of go and the go runtime
|
|
|
|
- version - rclone version, eg "v1.44"
|
|
|
|
- decomposed - version number as [major, minor, patch, subpatch]
|
|
|
|
- note patch and subpatch will be 999 for a git compiled version
|
|
|
|
- isGit - boolean - true if this was compiled from the git version
|
|
|
|
- os - OS in use as according to Go
|
|
|
|
- arch - cpu architecture in use according to Go
|
|
|
|
- goVersion - version of Go runtime in use
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### job/list: Lists the IDs of the running jobs {#job/list}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Parameters - None
|
|
|
|
|
|
|
|
Results
|
|
|
|
- jobids - array of integer job ids
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### job/status: Reads the status of the job ID {#job/status}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
- jobid - id of the job (integer)
|
|
|
|
|
|
|
|
Results
|
|
|
|
- finished - boolean
|
|
|
|
- duration - time in seconds that the job ran for
|
|
|
|
- endTime - time the job finished (eg "2018-10-26T18:50:20.528746884+01:00")
|
|
|
|
- error - error from the job or empty string for no error
|
|
|
|
- finished - boolean whether the job has finished or not
|
|
|
|
- id - as passed in above
|
|
|
|
- startTime - time the job started (eg "2018-10-26T18:50:20.528336039+01:00")
|
|
|
|
- success - boolean - true for success false otherwise
|
|
|
|
- output - output of the job as would have been returned if called synchronously
|
2019-07-19 10:13:17 +02:00
|
|
|
- progress - output of the progress related to the underlying job
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### job/stop: Stop the running job {#job/stop}
|
2019-07-19 10:13:17 +02:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
- jobid - id of the job (integer)
|
2018-11-04 21:44:47 +01:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/about: Return the space used on the remote {#operations/about}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
|
|
|
|
The result is as returned from rclone about --json
|
|
|
|
|
2019-06-15 13:01:29 +02:00
|
|
|
See the [about command](/commands/rclone_size/) command for more information on the above.
|
|
|
|
|
2018-11-04 21:44:47 +01:00
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/cleanup: Remove trashed files in the remote or path {#operations/cleanup}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
|
|
|
|
See the [cleanup command](/commands/rclone_cleanup/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/copyfile: Copy a file from source remote to destination remote {#operations/copyfile}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- srcFs - a remote name string eg "drive:" for the source
|
|
|
|
- srcRemote - a path within that remote eg "file.txt" for the source
|
|
|
|
- dstFs - a remote name string eg "drive2:" for the destination
|
|
|
|
- dstRemote - a path within that remote eg "file2.txt" for the destination
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/copyurl: Copy the URL to the object {#operations/copyurl}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
- url - string, URL to read from
|
2019-10-26 12:04:54 +02:00
|
|
|
- autoFilename - boolean, set to true to retrieve destination file name from url
|
2018-11-04 21:44:47 +01:00
|
|
|
See the [copyurl command](/commands/rclone_copyurl/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/delete: Remove files in the path {#operations/delete}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
|
|
|
|
See the [delete command](/commands/rclone_delete/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/deletefile: Remove the single file pointed to {#operations/deletefile}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
|
|
|
|
See the [deletefile command](/commands/rclone_deletefile/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/fsinfo: Return information about the remote {#operations/fsinfo}
|
2019-06-15 13:01:29 +02:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
|
|
|
|
This returns info about the remote passed in;
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
// optional features and whether they are available or not
|
|
|
|
"Features": {
|
|
|
|
"About": true,
|
|
|
|
"BucketBased": false,
|
|
|
|
"CanHaveEmptyDirectories": true,
|
|
|
|
"CaseInsensitive": false,
|
|
|
|
"ChangeNotify": false,
|
|
|
|
"CleanUp": false,
|
|
|
|
"Copy": false,
|
|
|
|
"DirCacheFlush": false,
|
|
|
|
"DirMove": true,
|
|
|
|
"DuplicateFiles": false,
|
|
|
|
"GetTier": false,
|
|
|
|
"ListR": false,
|
|
|
|
"MergeDirs": false,
|
|
|
|
"Move": true,
|
|
|
|
"OpenWriterAt": true,
|
|
|
|
"PublicLink": false,
|
|
|
|
"Purge": true,
|
|
|
|
"PutStream": true,
|
|
|
|
"PutUnchecked": false,
|
|
|
|
"ReadMimeType": false,
|
|
|
|
"ServerSideAcrossConfigs": false,
|
|
|
|
"SetTier": false,
|
|
|
|
"SetWrapper": false,
|
|
|
|
"UnWrap": false,
|
|
|
|
"WrapFs": false,
|
|
|
|
"WriteMimeType": false
|
|
|
|
},
|
|
|
|
// Names of hashes available
|
|
|
|
"Hashes": [
|
|
|
|
"MD5",
|
|
|
|
"SHA-1",
|
|
|
|
"DropboxHash",
|
|
|
|
"QuickXorHash"
|
|
|
|
],
|
|
|
|
"Name": "local", // Name as created
|
|
|
|
"Precision": 1, // Precision of timestamps in ns
|
|
|
|
"Root": "/", // Path as created
|
|
|
|
"String": "Local file system at /" // how the remote will appear in logs
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
This command does not have a command line equivalent so use this instead:
|
|
|
|
|
|
|
|
rclone rc --loopback operations/fsinfo fs=remote:
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/list: List the given remote and path in JSON format {#operations/list}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
- opt - a dictionary of options to control the listing (optional)
|
|
|
|
- recurse - If set recurse directories
|
|
|
|
- noModTime - If set return modification time
|
|
|
|
- showEncrypted - If set show decrypted names
|
|
|
|
- showOrigIDs - If set show the IDs for each item if known
|
|
|
|
- showHash - If set return a dictionary of hashes
|
|
|
|
|
|
|
|
The result is
|
|
|
|
|
|
|
|
- list
|
|
|
|
- This is an array of objects as described in the lsjson command
|
|
|
|
|
2019-06-15 13:01:29 +02:00
|
|
|
See the [lsjson command](/commands/rclone_lsjson/) for more information on the above and examples.
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/mkdir: Make a destination directory or container {#operations/mkdir}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
|
|
|
|
See the [mkdir command](/commands/rclone_mkdir/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/movefile: Move a file from source remote to destination remote {#operations/movefile}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- srcFs - a remote name string eg "drive:" for the source
|
|
|
|
- srcRemote - a path within that remote eg "file.txt" for the source
|
|
|
|
- dstFs - a remote name string eg "drive2:" for the destination
|
|
|
|
- dstRemote - a path within that remote eg "file2.txt" for the destination
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/publiclink: Create or retrieve a public link to the given file or folder. {#operations/publiclink}
|
2019-03-11 17:59:27 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
|
|
|
|
Returns
|
|
|
|
|
|
|
|
- url - URL of the resource
|
|
|
|
|
|
|
|
See the [link command](/commands/rclone_link/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/purge: Remove a directory or container and all of its contents {#operations/purge}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
|
|
|
|
See the [purge command](/commands/rclone_purge/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/rmdir: Remove an empty directory or container {#operations/rmdir}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
|
|
|
|
See the [rmdir command](/commands/rclone_rmdir/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/rmdirs: Remove all the empty directories in the path {#operations/rmdirs}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:"
|
|
|
|
- remote - a path within that remote eg "dir"
|
|
|
|
- leaveRoot - boolean, set to true not to delete the root
|
|
|
|
|
|
|
|
See the [rmdirs command](/commands/rclone_rmdirs/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### operations/size: Count the number of bytes and files in remote {#operations/size}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- fs - a remote name string eg "drive:path/to/dir"
|
|
|
|
|
|
|
|
Returns
|
|
|
|
|
|
|
|
- count - number of files
|
|
|
|
- bytes - number of bytes in those files
|
|
|
|
|
|
|
|
See the [size command](/commands/rclone_size/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### options/blocks: List all the option blocks {#options/blocks}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Returns
|
|
|
|
- options - a list of the options block names
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### options/get: Get all the options {#options/get}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Returns an object where keys are option block names and values are an
|
|
|
|
object with the current option values in.
|
|
|
|
|
|
|
|
This shows the internal names of the option within rclone which should
|
|
|
|
map to the external options very easily with a few exceptions.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### options/set: Set an option {#options/set}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
|
|
|
|
- option block name containing an object with
|
|
|
|
- key: value
|
|
|
|
|
|
|
|
Repeated as often as required.
|
|
|
|
|
|
|
|
Only supply the options you wish to change. If an option is unknown
|
|
|
|
it will be silently ignored. Not all options will have an effect when
|
|
|
|
changed like this.
|
|
|
|
|
2019-02-09 11:42:57 +01:00
|
|
|
For example:
|
|
|
|
|
|
|
|
This sets DEBUG level logs (-vv)
|
|
|
|
|
|
|
|
rclone rc options/set --json '{"main": {"LogLevel": 8}}'
|
|
|
|
|
|
|
|
And this sets INFO level logs (-v)
|
|
|
|
|
|
|
|
rclone rc options/set --json '{"main": {"LogLevel": 7}}'
|
|
|
|
|
|
|
|
And this sets NOTICE level logs (normal without -v)
|
|
|
|
|
|
|
|
rclone rc options/set --json '{"main": {"LogLevel": 6}}'
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### rc/error: This returns an error {#rc/error}
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
This returns an error with the input as part of its error string.
|
|
|
|
Useful for testing error handling.
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### rc/list: List all the registered remote control commands {#rc/list}
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
This lists all the registered remote control commands as a JSON map in
|
|
|
|
the commands response.
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### rc/noop: Echo the input to the output parameters {#rc/noop}
|
2018-03-16 21:45:34 +01:00
|
|
|
|
|
|
|
This echoes the input parameters to the output parameters for testing
|
|
|
|
purposes. It can be used to check that rclone is still alive and to
|
|
|
|
check that parameter passing is working properly.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### rc/noopauth: Echo the input to the output parameters requiring auth {#rc/noopauth}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This echoes the input parameters to the output parameters for testing
|
|
|
|
purposes. It can be used to check that rclone is still alive and to
|
|
|
|
check that parameter passing is working properly.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### sync/copy: copy a directory from source remote to destination remote {#sync/copy}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- srcFs - a remote name string eg "drive:src" for the source
|
|
|
|
- dstFs - a remote name string eg "drive:dst" for the destination
|
|
|
|
|
|
|
|
|
|
|
|
See the [copy command](/commands/rclone_copy/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### sync/move: move a directory from source remote to destination remote {#sync/move}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- srcFs - a remote name string eg "drive:src" for the source
|
|
|
|
- dstFs - a remote name string eg "drive:dst" for the destination
|
|
|
|
- deleteEmptySrcDirs - delete empty src directories if set
|
|
|
|
|
|
|
|
|
|
|
|
See the [move command](/commands/rclone_move/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### sync/sync: sync a directory from source remote to destination remote {#sync/sync}
|
2018-11-04 21:44:47 +01:00
|
|
|
|
|
|
|
This takes the following parameters
|
|
|
|
|
|
|
|
- srcFs - a remote name string eg "drive:src" for the source
|
|
|
|
- dstFs - a remote name string eg "drive:dst" for the destination
|
|
|
|
|
|
|
|
|
|
|
|
See the [sync command](/commands/rclone_sync/) command for more information on the above.
|
|
|
|
|
|
|
|
Authentication is required for this call.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### vfs/forget: Forget files or directories in the directory cache. {#vfs/forget}
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
This forgets the paths in the directory cache causing them to be
|
|
|
|
re-read from the remote when needed.
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
If no paths are passed in then it will forget all the paths in the
|
|
|
|
directory cache.
|
2018-04-05 16:12:34 +02:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
rclone rc vfs/forget
|
2018-04-05 16:12:34 +02:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
Otherwise pass files or dirs in as file=path or dir=path. Any
|
|
|
|
parameter key starting with file will forget that file and any
|
|
|
|
starting with dir will forget that dir, eg
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
rclone rc vfs/forget file=hello file2=goodbye dir=home/junk
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### vfs/poll-interval: Get the status or update the value of the poll-interval option. {#vfs/poll-interval}
|
2018-10-15 12:03:08 +02:00
|
|
|
|
|
|
|
Without any parameter given this returns the current status of the
|
|
|
|
poll-interval setting.
|
|
|
|
|
|
|
|
When the interval=duration parameter is set, the poll-interval value
|
|
|
|
is updated and the polling function is notified.
|
|
|
|
Setting interval=0 disables poll-interval.
|
|
|
|
|
|
|
|
rclone rc vfs/poll-interval interval=5m
|
|
|
|
|
|
|
|
The timeout=duration parameter can be used to specify a time to wait
|
|
|
|
for the current poll function to apply the new value.
|
|
|
|
If timeout is less or equal 0, which is the default, wait indefinitely.
|
|
|
|
|
|
|
|
The new poll-interval value will only be active when the timeout is
|
|
|
|
not reached.
|
|
|
|
|
|
|
|
If poll-interval is updated or disabled temporarily, some changes
|
|
|
|
might not get picked up by the polling function, depending on the
|
|
|
|
used remote.
|
|
|
|
|
2019-08-13 12:54:13 +02:00
|
|
|
### vfs/refresh: Refresh the directory cache. {#vfs/refresh}
|
2018-08-07 21:58:00 +02:00
|
|
|
|
|
|
|
This reads the directories for the specified paths and freshens the
|
|
|
|
directory cache.
|
|
|
|
|
|
|
|
If no paths are passed in then it will refresh the root directory.
|
|
|
|
|
|
|
|
rclone rc vfs/refresh
|
|
|
|
|
|
|
|
Otherwise pass directories in as dir=path. Any parameter key
|
|
|
|
starting with dir will refresh that directory, eg
|
|
|
|
|
|
|
|
rclone rc vfs/refresh dir=home/junk dir2=data/misc
|
|
|
|
|
|
|
|
If the parameter recursive=true is given the whole directory tree
|
|
|
|
will get refreshed. This refresh will use --fast-list if enabled.
|
|
|
|
|
2018-04-23 21:44:44 +02:00
|
|
|
<!--- autogenerated stop -->
|
2018-03-16 21:45:34 +01:00
|
|
|
|
2018-03-05 12:44:16 +01:00
|
|
|
## Accessing the remote control via HTTP
|
|
|
|
|
|
|
|
Rclone implements a simple HTTP based protocol.
|
|
|
|
|
|
|
|
Each endpoint takes an JSON object and returns a JSON object or an
|
|
|
|
error. The JSON objects are essentially a map of string names to
|
|
|
|
values.
|
|
|
|
|
|
|
|
All calls must made using POST.
|
|
|
|
|
|
|
|
The input objects can be supplied using URL parameters, POST
|
|
|
|
parameters or by supplying "Content-Type: application/json" and a JSON
|
|
|
|
blob in the body. There are examples of these below using `curl`.
|
|
|
|
|
|
|
|
The response will be a JSON blob in the body of the response. This is
|
|
|
|
formatted to be reasonably human readable.
|
|
|
|
|
2018-10-27 19:29:20 +02:00
|
|
|
### Error returns
|
|
|
|
|
|
|
|
If an error occurs then there will be an HTTP error status (eg 500)
|
|
|
|
and the body of the response will contain a JSON encoded error object,
|
|
|
|
eg
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"error": "Expecting string value for key \"remote\" (was float64)",
|
|
|
|
"input": {
|
|
|
|
"fs": "/tmp",
|
|
|
|
"remote": 3
|
|
|
|
},
|
|
|
|
"status": 400
|
|
|
|
"path": "operations/rmdir",
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The keys in the error response are
|
|
|
|
- error - error string
|
|
|
|
- input - the input parameters to the call
|
|
|
|
- status - the HTTP status code
|
|
|
|
- path - the path of the call
|
|
|
|
|
|
|
|
### CORS
|
2018-03-05 12:44:16 +01:00
|
|
|
|
2018-09-14 16:02:09 +02:00
|
|
|
The sever implements basic CORS support and allows all origins for that.
|
|
|
|
The response to a preflight OPTIONS request will echo the requested "Access-Control-Request-Headers" back.
|
|
|
|
|
2018-03-05 12:44:16 +01:00
|
|
|
### Using POST with URL parameters only
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
curl -X POST 'http://localhost:5572/rc/noop?potato=1&sausage=2'
|
2018-03-05 12:44:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Response
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"potato": "1",
|
|
|
|
"sausage": "2"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Here is what an error response looks like:
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
curl -X POST 'http://localhost:5572/rc/error?potato=1&sausage=2'
|
2018-03-05 12:44:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"error": "arbitrary error on input map[potato:1 sausage:2]",
|
|
|
|
"input": {
|
|
|
|
"potato": "1",
|
|
|
|
"sausage": "2"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Note that curl doesn't return errors to the shell unless you use the `-f` option
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
$ curl -f -X POST 'http://localhost:5572/rc/error?potato=1&sausage=2'
|
2018-03-05 12:44:16 +01:00
|
|
|
curl: (22) The requested URL returned error: 400 Bad Request
|
|
|
|
$ echo $?
|
|
|
|
22
|
|
|
|
```
|
|
|
|
|
|
|
|
### Using POST with a form
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
curl --data "potato=1" --data "sausage=2" http://localhost:5572/rc/noop
|
2018-03-05 12:44:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Response
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"potato": "1",
|
|
|
|
"sausage": "2"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Note that you can combine these with URL parameters too with the POST
|
|
|
|
parameters taking precedence.
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
curl --data "potato=1" --data "sausage=2" "http://localhost:5572/rc/noop?rutabaga=3&sausage=4"
|
2018-03-05 12:44:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Response
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"potato": "1",
|
|
|
|
"rutabaga": "3",
|
|
|
|
"sausage": "4"
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
### Using POST with a JSON blob
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
curl -H "Content-Type: application/json" -X POST -d '{"potato":2,"sausage":1}' http://localhost:5572/rc/noop
|
2018-03-05 12:44:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
response
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"password": "xyz",
|
|
|
|
"username": "xyz"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
This can be combined with URL parameters too if required. The JSON
|
|
|
|
blob takes precedence.
|
|
|
|
|
|
|
|
```
|
2018-10-28 15:31:24 +01:00
|
|
|
curl -H "Content-Type: application/json" -X POST -d '{"potato":2,"sausage":1}' 'http://localhost:5572/rc/noop?rutabaga=3&potato=4'
|
2018-03-05 12:44:16 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"potato": 2,
|
|
|
|
"rutabaga": "3",
|
|
|
|
"sausage": 1
|
|
|
|
}
|
|
|
|
```
|
2018-05-11 12:12:58 +02:00
|
|
|
|
|
|
|
## Debugging rclone with pprof ##
|
|
|
|
|
|
|
|
If you use the `--rc` flag this will also enable the use of the go
|
|
|
|
profiling tools on the same port.
|
|
|
|
|
|
|
|
To use these, first [install go](https://golang.org/doc/install).
|
|
|
|
|
2018-11-10 11:18:13 +01:00
|
|
|
### Debugging memory use
|
|
|
|
|
|
|
|
To profile rclone's memory use you can run:
|
2018-05-11 12:12:58 +02:00
|
|
|
|
|
|
|
go tool pprof -web http://localhost:5572/debug/pprof/heap
|
|
|
|
|
|
|
|
This should open a page in your browser showing what is using what
|
|
|
|
memory.
|
|
|
|
|
|
|
|
You can also use the `-text` flag to produce a textual summary
|
|
|
|
|
|
|
|
```
|
|
|
|
$ go tool pprof -text http://localhost:5572/debug/pprof/heap
|
|
|
|
Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
|
|
|
|
flat flat% sum% cum cum%
|
2019-07-28 19:47:38 +02:00
|
|
|
1024.03kB 66.62% 66.62% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.addDecoderNode
|
2018-05-11 12:12:58 +02:00
|
|
|
513kB 33.38% 100% 513kB 33.38% net/http.newBufioWriterSize
|
2019-07-28 19:47:38 +02:00
|
|
|
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/all.init
|
|
|
|
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve.init
|
|
|
|
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/cmd/serve/restic.init
|
|
|
|
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2.init
|
|
|
|
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init
|
|
|
|
0 0% 100% 1024.03kB 66.62% github.com/rclone/rclone/vendor/golang.org/x/net/http2/hpack.init.0
|
2018-05-11 12:12:58 +02:00
|
|
|
0 0% 100% 1024.03kB 66.62% main.init
|
|
|
|
0 0% 100% 513kB 33.38% net/http.(*conn).readRequest
|
|
|
|
0 0% 100% 513kB 33.38% net/http.(*conn).serve
|
|
|
|
0 0% 100% 1024.03kB 66.62% runtime.main
|
|
|
|
```
|
|
|
|
|
2018-11-10 11:18:13 +01:00
|
|
|
### Debugging go routine leaks
|
|
|
|
|
|
|
|
Memory leaks are most often caused by go routine leaks keeping memory
|
|
|
|
alive which should have been garbage collected.
|
|
|
|
|
|
|
|
See all active go routines using
|
|
|
|
|
|
|
|
curl http://localhost:5572/debug/pprof/goroutine?debug=1
|
|
|
|
|
|
|
|
Or go to http://localhost:5572/debug/pprof/goroutine?debug=1 in your browser.
|
|
|
|
|
|
|
|
### Other profiles to look at
|
|
|
|
|
|
|
|
You can see a summary of profiles available at http://localhost:5572/debug/pprof/
|
|
|
|
|
|
|
|
Here is how to use some of them:
|
2018-05-11 12:12:58 +02:00
|
|
|
|
|
|
|
* Memory: `go tool pprof http://localhost:5572/debug/pprof/heap`
|
2018-11-10 11:18:13 +01:00
|
|
|
* Go routines: `curl http://localhost:5572/debug/pprof/goroutine?debug=1`
|
2018-05-11 12:12:58 +02:00
|
|
|
* 30-second CPU profile: `go tool pprof http://localhost:5572/debug/pprof/profile`
|
|
|
|
* 5-second execution trace: `wget http://localhost:5572/debug/pprof/trace?seconds=5`
|
|
|
|
|
|
|
|
See the [net/http/pprof docs](https://golang.org/pkg/net/http/pprof/)
|
|
|
|
for more info on how to use the profiling and for a general overview
|
|
|
|
see [the Go team's blog post on profiling go programs](https://blog.golang.org/profiling-go-programs).
|
|
|
|
|
|
|
|
The profiling hook is [zero overhead unless it is used](https://stackoverflow.com/q/26545159/164234).
|