mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-05-01 21:24:36 +00:00
runtime: set tags for trace span
Set tags for trace span in hook.go and remove FIXME. Fixes: #2749 Signed-off-by: bin <bin@hyper.sh>
This commit is contained in:
parent
05995632c3
commit
46720c61c1
@ -35,11 +35,8 @@ func hookLogger() *logrus.Entry {
|
||||
func runHook(ctx context.Context, hook specs.Hook, cid, bundlePath string) error {
|
||||
span, _ := katatrace.Trace(ctx, hookLogger(), "runHook", hookTracingTags)
|
||||
defer span.End()
|
||||
|
||||
// FIXME
|
||||
// span.LogFields(
|
||||
// log.String("hook-name", hook.Path),
|
||||
// log.String("hook-args", strings.Join(hook.Args, " ")))
|
||||
katatrace.AddTag(span, "path", hook.Path)
|
||||
katatrace.AddTag(span, "args", hook.Args)
|
||||
|
||||
state := specs.State{
|
||||
Pid: syscall.Gettid(),
|
||||
|
Loading…
Reference in New Issue
Block a user