op Operation,
namespaceName, workflowType string,
tags := []metrics.Tag{
metrics.NamespaceTag(namespaceName),
metrics.NexusEndpointTag(op.Endpoint),
metrics.WorkflowTypeTag(workflowType),
}
if tagConfig.IncludeServiceTag {
tags = append(tags, metrics.NexusServiceTag(op.Service))
}
tags = append(tags, metrics.NexusOperationTag(op.Operation))
}
}