Skip to content

Commit

Permalink
Properly export method as part of Sigar interface
Browse files Browse the repository at this point in the history
[#179517901] Update Bosh Agent to correctly report memory used in `bosh vms --vitals` and related code paths, and publish new stemcells

Signed-off-by: Brian Upton <bupton@vmware.com>
  • Loading branch information
klakin-pivotal authored and ystros committed Sep 9, 2021
1 parent 93c7b08 commit 441475d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sigar_interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ type Sigar interface {
CollectCpuStats(collectionInterval time.Duration) (<-chan Cpu, chan<- struct{})
GetLoadAverage() (LoadAverage, error)
GetMem() (Mem, error)
GetMemIgnoringCGroups() (Mem, error)
GetSwap() (Swap, error)
GetFileSystemUsage(string) (FileSystemUsage, error)
}
Expand Down

0 comments on commit 441475d

Please sign in to comment.