-
Notifications
You must be signed in to change notification settings - Fork 899
feat: Add anonymized telemetry to report product usage #2273
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
Changes from 1 commit
17e9900
9ed5ecd
5293285
9a31eb3
e09a673
09fdade
9b690bd
b74d127
9e8b696
35aac55
67a567e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
This adds a background service to report telemetry to a Coder server for usage data. There will be realtime event data sent in the future, but for now usage will report on a CRON.
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE site_config; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
CREATE TABLE IF NOT EXISTS site_config ( | ||
kylecarbs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
key varchar(256) NOT NULL UNIQUE, | ||
value varchar(8192) NOT NULL | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using |
||
); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.