runtime: Fix ordering of trace spans

A significant number of trace calls did not use a parent context that
would create proper span ordering in trace output. Add local context to
functions for use in trace calls to facilitate proper span ordering.
Additionally, change whether trace function returns context in some
functions in virtcontainers and use existing context rather than
background context in bindMount() so that span exists as a child of a
parent span.

Fixes #1355

Signed-off-by: Chelsea Mafrica <chelsea.e.mafrica@intel.com>
This commit is contained in:
Chelsea Mafrica
2021-02-09 16:30:50 -08:00
parent 50f317dcff
commit 6b0dc60dda
67 changed files with 1103 additions and 1056 deletions

View File

@@ -6,6 +6,7 @@
package virtcontainers
import (
"context"
"sync"
"time"
@@ -36,7 +37,7 @@ func newMonitor(s *Sandbox) *monitor {
}
}
func (m *monitor) newWatcher() (chan error, error) {
func (m *monitor) newWatcher(ctx context.Context) (chan error, error) {
m.Lock()
defer m.Unlock()
@@ -57,8 +58,8 @@ func (m *monitor) newWatcher() (chan error, error) {
m.wg.Done()
return
case <-tick.C:
m.watchHypervisor()
m.watchAgent()
m.watchHypervisor(ctx)
m.watchAgent(ctx)
}
}
}()
@@ -67,8 +68,8 @@ func (m *monitor) newWatcher() (chan error, error) {
return watcher, nil
}
func (m *monitor) notify(err error) {
m.sandbox.agent.markDead()
func (m *monitor) notify(ctx context.Context, err error) {
m.sandbox.agent.markDead(ctx)
m.Lock()
defer m.Unlock()
@@ -127,17 +128,17 @@ func (m *monitor) stop() {
}
}
func (m *monitor) watchAgent() {
err := m.sandbox.agent.check()
func (m *monitor) watchAgent(ctx context.Context) {
err := m.sandbox.agent.check(ctx)
if err != nil {
// TODO: define and export error types
m.notify(errors.Wrapf(err, "failed to ping agent"))
m.notify(ctx, errors.Wrapf(err, "failed to ping agent"))
}
}
func (m *monitor) watchHypervisor() error {
func (m *monitor) watchHypervisor(ctx context.Context) error {
if err := m.sandbox.hypervisor.check(); err != nil {
m.notify(errors.Wrapf(err, "failed to ping hypervisor process"))
m.notify(ctx, errors.Wrapf(err, "failed to ping hypervisor process"))
return err
}
return nil