github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/monitor/internal/k8s/runtime_cache_unsupported.go (about) 1 // +build !linux,!windows 2 3 package k8smonitor 4 5 import ( 6 "errors" 7 ) 8 9 func sandboxIsRunning(pid int) (bool, error) { 10 return false, errors.New("unsupported platform") 11 }