...

Source file src/github.com/Microsoft/hcsshim/internal/vm/remotevm/stats.go

Documentation: github.com/Microsoft/hcsshim/internal/vm/remotevm

     1  //go:build windows
     2  
     3  package remotevm
     4  
     5  import (
     6  	"context"
     7  
     8  	"github.com/Microsoft/hcsshim/cmd/containerd-shim-runhcs-v1/stats"
     9  	"github.com/Microsoft/hcsshim/internal/vm"
    10  )
    11  
    12  func (uvm *utilityVM) Stats(ctx context.Context) (*stats.VirtualMachineStatistics, error) {
    13  	return nil, vm.ErrNotSupported
    14  }
    15  

View as plain text