Files
troubleshoot/pkg/collect/host_filesystem_performance_windows.go

11 lines
380 B
Go

package collect
import (
"github.com/pkg/errors"
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
)
func collectHostFilesystemPerformance(hostCollector *troubleshootv1beta2.FilesystemPerformance, bundlePath string) (map[string][]byte, error) {
return nil, errors.New("Filesystem performance collector is only implemented for Linux")
}