fix: Add extra span naming closes #3266

This commit is contained in:
Tom Moor
2022-03-18 20:12:49 -07:00
parent 4b626de24e
commit dc9c45ef6c
7 changed files with 28 additions and 7 deletions

View File

@@ -205,4 +205,7 @@ async function teamPermanentDeleter(team: Team) {
}
}
export default APM.traceFunction({})(teamPermanentDeleter);
export default APM.traceFunction({
serviceName: "command",
spanName: "teamPermanentDeleter",
})(teamPermanentDeleter);