mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 00:13:49 +01:00
docs: update documentation for stats
This commit is contained in:
parent
68e641f6cf
commit
ff235e4e56
@ -150,6 +150,9 @@ The rc interface supports some special parameters which apply to
|
||||
|
||||
### Running asynchronous jobs with _async = true
|
||||
|
||||
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.
|
||||
|
||||
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
|
||||
@ -210,6 +213,25 @@ $ rclone rc job/list
|
||||
}
|
||||
```
|
||||
|
||||
### 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
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
## Supported commands
|
||||
<!--- autogenerated start - run make rcdocs - don't edit here -->
|
||||
### cache/expire: Purge a remote from cache
|
||||
@ -342,18 +364,53 @@ This sets the bandwidth limit to that passed in.
|
||||
|
||||
Eg
|
||||
|
||||
rclone rc core/bwlimit rate=1M
|
||||
rclone rc core/bwlimit rate=off
|
||||
{
|
||||
"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"
|
||||
}
|
||||
|
||||
The format of the parameter is exactly the same as passed to --bwlimit
|
||||
except only one bandwidth may be specified.
|
||||
|
||||
In either case "rate" is returned as a human readable string, and
|
||||
"bytesPerSecond" is returned as a number.
|
||||
|
||||
### core/gc: Runs a garbage collection.
|
||||
|
||||
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.
|
||||
|
||||
### core/group_list: Returns list of stats.
|
||||
|
||||
This returns list of stats groups currently in memory.
|
||||
|
||||
Returns the following values:
|
||||
```
|
||||
{
|
||||
"groups": an array of group names:
|
||||
[
|
||||
"group1",
|
||||
"group2",
|
||||
...
|
||||
]
|
||||
}
|
||||
|
||||
### core/memstats: Returns the memory statistics
|
||||
|
||||
This returns the memory statistics of the running program. What the values mean
|
||||
@ -381,10 +438,16 @@ Useful for stopping rclone process.
|
||||
|
||||
### core/stats: Returns stats about current transfers.
|
||||
|
||||
This returns all available stats
|
||||
This returns all available stats:
|
||||
|
||||
rclone rc core/stats
|
||||
|
||||
If group is not provided then summed up stats for all groups will be
|
||||
returned.
|
||||
|
||||
Parameters
|
||||
- group - name of the stats group (string)
|
||||
|
||||
Returns the following values:
|
||||
|
||||
```
|
||||
@ -418,6 +481,35 @@ Returns the following values:
|
||||
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.
|
||||
|
||||
### core/transferred: Returns stats about completed transfers.
|
||||
|
||||
This returns stats about completed transfers:
|
||||
|
||||
rclone rc core/transferred
|
||||
|
||||
If group is not provided then completed transfers for all groups will be
|
||||
returned.
|
||||
|
||||
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
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
### core/version: Shows the current version of rclone and the go runtime.
|
||||
|
||||
This shows the current version of go and the go runtime
|
||||
@ -451,6 +543,12 @@ Results
|
||||
- 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
|
||||
- progress - output of the progress related to the underlying job
|
||||
|
||||
### job/stop: Stop the running job
|
||||
|
||||
Parameters
|
||||
- jobid - id of the job (integer)
|
||||
|
||||
### operations/about: Return the space used on the remote
|
||||
|
||||
|
@ -63,10 +63,16 @@ func init() {
|
||||
Fn: remoteStats,
|
||||
Title: "Returns stats about current transfers.",
|
||||
Help: `
|
||||
This returns all available stats
|
||||
This returns all available stats:
|
||||
|
||||
rclone rc core/stats
|
||||
|
||||
If group is not provided then summed up stats for all groups will be
|
||||
returned.
|
||||
|
||||
Parameters
|
||||
- group - name of the stats group (string)
|
||||
|
||||
Returns the following values:
|
||||
|
||||
` + "```" + `
|
||||
|
Loading…
Reference in New Issue
Block a user