Skip to content

Commit 127ca72

Browse files
authored
add telemetry for remote debugging (#1061)
## Problem add telemetry for remote debugging ## Solution <!--- REMINDER: - Read CONTRIBUTING.md first. - Add test coverage for your changes. - Link to related issues/commits. - Testing: how did you test your changes? - Screenshots if applicable --> ## License By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent df347e3 commit 127ca72

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

telemetry/definitions/commonDefinitions.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7258,13 +7258,21 @@
72587258
"name": "lambda_invokeRemote",
72597259
"description": "Called when invoking lambdas remotely",
72607260
"metadata": [
7261+
{
7262+
"type": "action",
7263+
"required": false
7264+
},
72617265
{
72627266
"type": "result"
72637267
},
72647268
{
72657269
"type": "runtime",
72667270
"required": false
72677271
},
7272+
{
7273+
"type": "runtimeString",
7274+
"required": false
7275+
},
72687276
{
72697277
"type": "source",
72707278
"required": false
@@ -7316,6 +7324,44 @@
73167324
}
73177325
]
73187326
},
7327+
{
7328+
"name": "lambda_remoteDebugPrecheck",
7329+
"description": "user click remote debug checkbox",
7330+
"metadata": [
7331+
{
7332+
"type": "action",
7333+
"required": false
7334+
},
7335+
{
7336+
"type": "runtimeString",
7337+
"required": false
7338+
}
7339+
]
7340+
},
7341+
{
7342+
"name": "lambda_remoteDebugStart",
7343+
"description": "user start remote debugging",
7344+
"metadata": [
7345+
{
7346+
"type": "action",
7347+
"required": false
7348+
},
7349+
{
7350+
"type": "runtimeString",
7351+
"required": false
7352+
}
7353+
]
7354+
},
7355+
{
7356+
"name": "lambda_remoteDebugStop",
7357+
"description": "user stop remote debugging",
7358+
"metadata": [
7359+
{
7360+
"type": "sessionDuration",
7361+
"required": false
7362+
}
7363+
]
7364+
},
73197365
{
73207366
"name": "lambda_updateFunctionCode",
73217367
"description": "Called when updating a Lambda function's code outside the context of a SAM template",

0 commit comments

Comments
 (0)