clustvirt/lib/host/stats.go

11 lines
233 B
Go
Raw Normal View History

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
}