Hi is it possible to set transaction name when using PyramidIntegration?
I tried setting scope.transaction = "mycustomname" but it seems that integration itself does:
try:
if integration.transaction_style == "route_name":
event["transaction"] = request.matched_route.name
elif integration.transaction_style == "route_pattern":
event["transaction"] = request.matched_route.pattern
except Exception:
pass
And I suspect that overwrites anything I've set up earlier?
Hi is it possible to set transaction name when using PyramidIntegration?
I tried setting
scope.transaction = "mycustomname"but it seems that integration itself does:And I suspect that overwrites anything I've set up earlier?