Skip to content

Commit 1df8532

Browse files
authored
Add cloud instance & accelerator types telemetry (#1242)
1 parent bb04076 commit 1df8532

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bin/cml/runner/launch.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,8 @@ exports.options = kebabcaseKeys({
495495
cloudType: {
496496
type: 'string',
497497
description:
498-
'Instance type. Choices: [m, l, xl]. Also supports native types like i.e. t2.micro'
498+
'Instance type. Choices: [m, l, xl]. Also supports native types like i.e. t2.micro',
499+
telemetryData: 'full'
499500
},
500501
cloudPermissionSet: {
501502
type: 'string',
@@ -518,7 +519,8 @@ exports.options = kebabcaseKeys({
518519
type: 'string',
519520
description:
520521
'GPU type. Choices: k80, v100, or native types e.g. nvidia-tesla-t4',
521-
coerce: (val) => (val === 'nogpu' ? undefined : val)
522+
coerce: (val) => (val === 'nogpu' ? undefined : val),
523+
telemetryData: 'full'
522524
},
523525
cloudHddSize: {
524526
type: 'number',

0 commit comments

Comments
 (0)