mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
2ace044e0b
Addresses https://github.com/coder/nexus/issues/175. ## Changes - Adds the `telemetry_items` database table. It's a key value store for telemetry events that don't fit any other database tables. - Adds a telemetry report when HTML is served for the first time in `site.go`.
5 lines
90 B
SQL
5 lines
90 B
SQL
INSERT INTO
|
|
telemetry_items (key, value)
|
|
VALUES
|
|
('example_key', 'example_value');
|