We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acc3b83 + 7ea75ef commit 9fe52f6Copy full SHA for 9fe52f6
cmd/ctr/commands/tasks/metrics.go
@@ -90,9 +90,12 @@ var metricsCommand = cli.Command{
90
91
fmt.Fprintf(w, "METRIC\tVALUE\t\n")
92
fmt.Fprintf(w, "memory.usage_in_bytes\t%d\t\n", data.Memory.Usage.Usage)
93
+ fmt.Fprintf(w, "memory.limit_in_bytes\t%d\t\n", data.Memory.Usage.Limit)
94
fmt.Fprintf(w, "memory.stat.cache\t%d\t\n", data.Memory.TotalCache)
95
fmt.Fprintf(w, "cpuacct.usage\t%d\t\n", data.CPU.Usage.Total)
96
fmt.Fprintf(w, "cpuacct.usage_percpu\t%v\t\n", data.CPU.Usage.PerCPU)
97
+ fmt.Fprintf(w, "pids.current\t%v\t\n", data.Pids.Current)
98
+ fmt.Fprintf(w, "pids.limit\t%v\t\n", data.Pids.Limit)
99
return w.Flush()
100
case formatJSON:
101
marshaledJSON, err := json.MarshalIndent(data, "", " ")
0 commit comments