-
Notifications
You must be signed in to change notification settings - Fork 17
feat: Add amplitude key to helm chart #147
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
Conversation
values.yaml
Outdated
|
|
||
| # metrics -- Configure various metrics to gain observability into Coder. | ||
| metrics: | ||
| # metrics.amplitudeKey -- Enables telemetry pushing to Amplitude. Keep empty to disable |
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.
We should add a link to Amplitude here, along with a bit of information with what specificially gets tracked. Is it anonymized?
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.
Will do. We will not store any PII.
We store ID's so it's not really anonymized, but it is pseudonymous.
| # metrics -- Configure various metrics to gain observability into Coder. | ||
| metrics: | ||
| # metrics.amplitudeKey -- Enables telemetry pushing to Amplitude. Amplitude records how users | ||
| # interact with Coder, which is used to improve the product. No events store any personal | ||
| # information. Amplitude can be found here: https://amplitude.com/ | ||
| # Keep empty to disable. | ||
| amplitudeKey: "" | ||
|
|
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.
@kylecarbs Better? I do not want to commit to "anonymized" data at this time. We can definitely fully anonymize data, but for SaaS we want some ways to indicate which deployment the data came from.
I think it'll be easier to draw some lines of where to fully anonymize and where not too once we have some data to play with.
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.
This is awesome!
What this does
Adds a
metricssection with theamplitudeKeyvalue to enable amplitude oncoderd.We will use a different key for master than SaaS, so using an env var makes sense.