56
57
// tags returns the structured log tags describing the call.
58
>
func (c invocationTraceContext) tags() []tag.Tag {
invocation.go
59
>
return []tag.Tag{
60
>
tag.Operation(c.operationTag),
61
>
tag.WorkflowNamespace(c.namespaceName),
62
>
tag.NexusEndpointTargetNamespaceID(c.targetNamespaceID),
63
>
tag.RequestID(c.requestID),
64
>
tag.NexusOperation(c.operation),
65
>
tag.Endpoint(c.endpointName),
66
>
tag.WorkflowID(c.workflowID),
67
>
tag.WorkflowRunID(c.runID),
68
>
tag.AttemptStart(c.attemptStart),
69
>
tag.Attempt(c.attempt),
70
>
}
71
>
}
72
73
type invocation interface {