mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 00:21:30 +00:00
platform: Fix bytes format
This commit is contained in:
parent
14a0f180c8
commit
a3a5185b15
|
@ -25,9 +25,9 @@ func init() {
|
||||||
runtime.ReadMemStats(&memStats)
|
runtime.ReadMemStats(&memStats)
|
||||||
|
|
||||||
var memObject badjson.JSONObject
|
var memObject badjson.JSONObject
|
||||||
memObject.Put("heap", humanize.Bytes(memStats.HeapInuse))
|
memObject.Put("heap", humanize.IBytes(memStats.HeapInuse))
|
||||||
memObject.Put("stack", humanize.Bytes(memStats.StackInuse))
|
memObject.Put("stack", humanize.IBytes(memStats.StackInuse))
|
||||||
memObject.Put("idle", humanize.Bytes(memStats.HeapIdle-memStats.HeapReleased))
|
memObject.Put("idle", humanize.IBytes(memStats.HeapIdle-memStats.HeapReleased))
|
||||||
memObject.Put("goroutines", runtime.NumGoroutine())
|
memObject.Put("goroutines", runtime.NumGoroutine())
|
||||||
memObject.Put("rss", rusageMaxRSS())
|
memObject.Put("rss", rusageMaxRSS())
|
||||||
|
|
||||||
|
|
|
@ -17,5 +17,5 @@ func Version() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func FormatBytes(length int64) string {
|
func FormatBytes(length int64) string {
|
||||||
return humanize.Bytes(uint64(length))
|
return humanize.IBytes(uint64(length))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue