-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing Event for logging when users toggle telemetry on/off #650
Conversation
…telemetry on or off
"name": "toolkitTelemetryStatusType", | ||
"type": "string", | ||
"description": "The type to determine the users status of having telemetry event submitted or not.", | ||
"allowedValues": ["OFF", "ON"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is a new type needed for this or could it use this:
aws-toolkit-common/telemetry/definitions/commonDefinitions.json
Lines 257 to 260 in ffab908
"name": "enabled", | |
"type": "boolean", | |
"description": "True if turned on, false if turned off" | |
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we do carry this out, I would like to re-use types. I will delete this type from the PR.
The telemetry system implemented into each of the three Toolkits does not support this use case. Those systems are deliberately designed to ensure that metrics are not transmitted when users opt-out of telemetry. I'm closing this PR, since there is no value in defining a metric that can't be used the way you've intended. |
Problem
We do not log when users turn off/on telemetry
Solution
License
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.