diff --git a/server/inspect.go b/server/inspect.go index 5a10f831..0d2a6c12 100644 --- a/server/inspect.go +++ b/server/inspect.go @@ -18,6 +18,7 @@ type ContainerInfo struct { Annotations map[string]string `json:"annotations"` LogPath string `json:"log_path"` Root string `json:"root"` + Sandbox string `json:"sandbox"` } // CrioInfo stores information about the crio daemon @@ -68,6 +69,7 @@ func (s *Server) GetInfoMux() *bone.Mux { Annotations: ctr.Annotations(), Root: ctr.MountPoint(), LogPath: filepath.Dir(ctr.LogPath()), + Sandbox: ctr.Sandbox(), } js, err := json.Marshal(ci) if err != nil {