mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-11 02:36:17 +00:00
Correct the memory stats in perfstats-*.csv
This commit is contained in:
parent
9e395eb883
commit
97dda6a4bb
@ -40,6 +40,6 @@ func savePerfStats(file string) {
|
|||||||
|
|
||||||
startms := int(t.Sub(t0).Seconds() * 1000)
|
startms := int(t.Sub(t0).Seconds() * 1000)
|
||||||
|
|
||||||
fmt.Fprintf(fd, "%d\t%f\t%d\t%d\n", startms, cpuUsagePercent, memstats.Alloc, memstats.Sys)
|
fmt.Fprintf(fd, "%d\t%f\t%d\t%d\n", startms, cpuUsagePercent, memstats.Alloc, memstats.Sys-memstats.HeapReleased)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user