Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions model/description/faas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"brief": "Serverless (FAAS)",
"operations": [
{
"name": "Serverless function execution",
"brief": "The invocation of a serverless function on a cloud provider.",
"ops": ["function.aws", "function.gcp", "function.azure"],
"templates": ["{{faas.name}}"],
"examples": ["my_function", "process-upload"]
}
]
}
13 changes: 13 additions & 0 deletions model/name/faas.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"brief": "Serverless (FAAS)",
"operations": [
{
"name": "Serverless function execution",
"brief": "The invocation of a serverless function on a cloud provider.",
"is_in_otel": false,
"ops": ["function.aws", "function.gcp", "function.azure"],

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rules omit production FAAS ops

Medium Severity

The new name and description rules list function.aws, function.gcp, and function.azure, but Sentry SDKs emit function.aws.lambda for AWS Lambda invocations. Relay matches ops exactly, so those spans will not receive faas.name-based names or descriptions.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2620e5b. Configure here.

@Lms24 Lms24 Sep 3, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

technically correct but: this op is not registered in conventions and it's no longer sent by the JS SDK in v11 (function.aws is sent instead). I think it's fine to omit for now. I might add it later once #622 lands so that we could theoretically add an op as deprecated and then use it here.

"templates": ["{{faas.name}}", "Serverless function execution"],
"examples": ["my_function", "process-upload", "Serverless function execution"]
}
]
}
Loading