11 lines
233 B
Go
11 lines
233 B
Go
|
package host
|
||
|
|
||
|
import "git.staur.ca/stobbsm/clustvirt/lib/stats"
|
||
|
|
||
|
// CollectMemUsage sends the current used memory of the host
|
||
|
// over the given channel
|
||
|
func (h *Host) CollectMemUsage(u chan<- stats.StatValue) error {
|
||
|
|
||
|
return nil
|
||
|
}
|