forked from TrueCloudLab/rclone
rc: added core/stats to return the stats - fixes #2405
This commit is contained in:
parent
f7c1c61dda
commit
6bfdabab6d
2 changed files with 116 additions and 0 deletions
|
@ -280,6 +280,36 @@ func (acc *Account) String() string {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RemoteStats produces stats for this file
|
||||||
|
func (acc *Account) RemoteStats() (out map[string]interface{}) {
|
||||||
|
out = make(map[string]interface{})
|
||||||
|
a, b := acc.progress()
|
||||||
|
out["bytes"] = a
|
||||||
|
out["size"] = b
|
||||||
|
spd, cur := acc.speed()
|
||||||
|
out["speed"] = spd
|
||||||
|
out["speedAvg"] = cur
|
||||||
|
|
||||||
|
eta, etaok := acc.eta()
|
||||||
|
out["eta"] = nil
|
||||||
|
if etaok {
|
||||||
|
if eta > 0 {
|
||||||
|
out["eta"] = eta.Seconds()
|
||||||
|
} else {
|
||||||
|
out["eta"] = 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
out["name"] = acc.name
|
||||||
|
|
||||||
|
percentageDone := 0
|
||||||
|
if b > 0 {
|
||||||
|
percentageDone = int(100 * float64(a) / float64(b))
|
||||||
|
}
|
||||||
|
out["percentage"] = percentageDone
|
||||||
|
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
// OldStream returns the top io.Reader
|
// OldStream returns the top io.Reader
|
||||||
func (acc *Account) OldStream() io.Reader {
|
func (acc *Account) OldStream() io.Reader {
|
||||||
acc.mu.Lock()
|
acc.mu.Lock()
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ncw/rclone/fs"
|
"github.com/ncw/rclone/fs"
|
||||||
|
"github.com/ncw/rclone/fs/rc"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -18,6 +19,45 @@ var (
|
||||||
func init() {
|
func init() {
|
||||||
// Set the function pointer up in fs
|
// Set the function pointer up in fs
|
||||||
fs.CountError = Stats.Error
|
fs.CountError = Stats.Error
|
||||||
|
|
||||||
|
rc.Add(rc.Call{
|
||||||
|
Path: "core/stats",
|
||||||
|
Fn: Stats.RemoteStats,
|
||||||
|
Title: "Returns stats about current transfers.",
|
||||||
|
Help: `
|
||||||
|
This returns all available stats
|
||||||
|
|
||||||
|
rclone rc core/stats
|
||||||
|
|
||||||
|
Returns following values:
|
||||||
|
{
|
||||||
|
"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,
|
||||||
|
"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
|
||||||
|
[]
|
||||||
|
}
|
||||||
|
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.
|
||||||
|
`,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// StatsInfo accounts all transfers
|
// StatsInfo accounts all transfers
|
||||||
|
@ -45,6 +85,52 @@ func NewStats() *StatsInfo {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RemoteStats returns stats for rc
|
||||||
|
func (s *StatsInfo) RemoteStats(in rc.Params) (out rc.Params, err error) {
|
||||||
|
out = make(rc.Params)
|
||||||
|
s.mu.RLock()
|
||||||
|
dt := time.Now().Sub(s.start)
|
||||||
|
dtSeconds := dt.Seconds()
|
||||||
|
speed := 0.0
|
||||||
|
if dt > 0 {
|
||||||
|
speed = float64(s.bytes) / dtSeconds
|
||||||
|
}
|
||||||
|
out["speed"] = speed
|
||||||
|
out["bytes"] = s.bytes
|
||||||
|
out["errors"] = s.errors
|
||||||
|
out["checks"] = s.checks
|
||||||
|
out["transfers"] = s.transfers
|
||||||
|
out["deletes"] = s.deletes
|
||||||
|
out["elapsedTime"] = dtSeconds
|
||||||
|
s.mu.RUnlock()
|
||||||
|
if !s.checking.empty() {
|
||||||
|
var c []string
|
||||||
|
s.checking.mu.RLock()
|
||||||
|
defer s.checking.mu.RUnlock()
|
||||||
|
for name := range s.checking.items {
|
||||||
|
c = append(c, name)
|
||||||
|
}
|
||||||
|
out["checking"] = c
|
||||||
|
}
|
||||||
|
if !s.transferring.empty() {
|
||||||
|
var t []interface{}
|
||||||
|
s.transferring.mu.RLock()
|
||||||
|
defer s.transferring.mu.RUnlock()
|
||||||
|
for name := range s.transferring.items {
|
||||||
|
if acc := s.inProgress.get(name); acc != nil {
|
||||||
|
t = append(t, acc.RemoteStats())
|
||||||
|
} else {
|
||||||
|
t = append(t, name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
out["transferring"] = t
|
||||||
|
}
|
||||||
|
if s.errors > 0 {
|
||||||
|
out["lastError"] = s.lastError
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
// String convert the StatsInfo to a string for printing
|
// String convert the StatsInfo to a string for printing
|
||||||
func (s *StatsInfo) String() string {
|
func (s *StatsInfo) String() string {
|
||||||
s.mu.RLock()
|
s.mu.RLock()
|
||||||
|
|
Loading…
Reference in a new issue