Skip to content

Commit 9fe52f6

Browse files
Merge pull request #2721 from Ace-Tang/master
ctr: add some metric item
2 parents acc3b83 + 7ea75ef commit 9fe52f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cmd/ctr/commands/tasks/metrics.go

+3
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,12 @@ var metricsCommand = cli.Command{
9090

9191
fmt.Fprintf(w, "METRIC\tVALUE\t\n")
9292
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)
9394
fmt.Fprintf(w, "memory.stat.cache\t%d\t\n", data.Memory.TotalCache)
9495
fmt.Fprintf(w, "cpuacct.usage\t%d\t\n", data.CPU.Usage.Total)
9596
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)
9699
return w.Flush()
97100
case formatJSON:
98101
marshaledJSON, err := json.MarshalIndent(data, "", " ")

0 commit comments

Comments
 (0)