We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 436d75c + 030e82a commit 189f5b9Copy full SHA for 189f5b9
storage/statsd/statsd.go
@@ -41,6 +41,8 @@ const (
41
colMemoryUsage string = "memory_usage"
42
// Working set size
43
colMemoryWorkingSet string = "memory_working_set"
44
+ // Resident set size
45
+ colMemoryRSS string = "memory_rss"
46
// Cumulative count of bytes received.
47
colRxBytes string = "rx_bytes"
48
// Cumulative count of receive errors encountered.
@@ -80,6 +82,9 @@ func (self *statsdStorage) containerStatsToValues(
80
82
81
83
series[colMemoryWorkingSet] = stats.Memory.WorkingSet
84
85
86
+ series[colMemoryRSS] = stats.Memory.RSS
87
+
88
// Network stats.
89
series[colRxBytes] = stats.Network.RxBytes
90
series[colRxErrors] = stats.Network.RxErrors
0 commit comments