(core) Add earliestDocCreatedAt to telemetry

Summary: This tracks the earliest document creation time, if any, for each site.

Test Plan: Server tests.

Reviewers: jarek

Reviewed By: jarek

Differential Revision: https://phab.getgrist.com/D3991
This commit is contained in:
George Gevoian
2023-08-08 00:26:28 -07:00
parent efb5fc63d7
commit 24bbf375f9
4 changed files with 9 additions and 0 deletions

View File

@@ -761,6 +761,10 @@ export const TelemetryContracts: TelemetryContracts = {
description: 'A timestamp of the most recent update made to a site document.',
dataType: 'date',
},
earliestDocCreatedAt: {
description: 'A timestamp of the earliest non-deleted document creation time.',
dataType: 'date',
},
},
},
tutorialProgressChanged: {

View File

@@ -137,6 +137,7 @@ export const ThemeColors = t.iface([], {
"selection-opaque-fg": "string",
"selection-opaque-bg": "string",
"selection-opaque-dark-bg": "string",
"selection-header": "string",
"widget-bg": "string",
"widget-border": "string",
"widget-active-border": "string",