diff options
Diffstat (limited to 'cmd/podman/stop.go')
-rw-r--r-- | cmd/podman/stop.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/podman/stop.go b/cmd/podman/stop.go index 15c3984f4..94fdf321e 100644 --- a/cmd/podman/stop.go +++ b/cmd/podman/stop.go @@ -8,6 +8,7 @@ import ( "github.com/containers/libpod/cmd/podman/shared" "github.com/containers/libpod/libpod" "github.com/containers/libpod/pkg/rootless" + opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/sirupsen/logrus" "github.com/spf13/cobra" @@ -48,6 +49,10 @@ func init() { } func stopCmd(c *cliconfig.StopValues) error { + if c.Bool("trace") { + span, _ := opentracing.StartSpanFromContext(Ctx, "stopCmd") + defer span.Finish() + } if err := checkAllAndLatest(&c.PodmanCommand); err != nil { return err |