in src/plugins/AWS2SQSPlugin.ts [46:55]
sqs[name] = function (params: any, callback: any) {
const queueUrl = params.QueueUrl;
const operation = `AWS/SQS/${name}/${queueUrl.slice(queueUrl.lastIndexOf('/') + 1)}`;
const span = ContextManager.current.newExitSpan(operation, Component.AWS_SQS, Component.HTTP);
span.component = Component.AWS_SQS;
span.layer = SpanLayer.MQ;
return execute(span, this, _func, addTraceId(params, span), callback, 'mqBroker');
};