diff --git a/docs/metrics.md b/docs/metrics.md index 9d1f4e8..bfe83c8 100644 --- a/docs/metrics.md +++ b/docs/metrics.md @@ -72,6 +72,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "clickedContainerTabCount": , "event": "open-tab", @@ -83,6 +84,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "event": "edit-containers" } ``` @@ -91,6 +93,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "event": "edit-container" } @@ -100,6 +103,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "event": "delete-container" } @@ -109,6 +113,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "event": "add-container" } @@ -118,8 +123,10 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "event": "sort-tabs", "totalContainerTabsCount": + "totalNonContainerTabsCount": } ``` @@ -127,6 +134,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "clickedContainerTabCount": , "event": "hide-tabs", @@ -138,6 +146,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "clickedContainerTabCount": , "event": "show-tabs" @@ -148,6 +157,7 @@ of a `testpilottest` telemetry ping for each scenario. ```js { + "uuid": , "userContextId": , "clickedContainerTabCount": , "event": "move-tabs-to-window" @@ -159,12 +169,14 @@ of a `testpilottest` telemetry ping for each scenario. ```lua local schema = { -- column name field type length attributes field name - {"userContextId", "INTEGER", 255, nil, "Fields[payload.container]"}, + {"uuid", "VARCHAR", 255, nil, "Fields[payload.uuid]"}, + {"userContextId", "INTEGER", 255, nil, "Fields[payload.userContextId]"}, {"clickedContainerTabCount", "INTEGER", 255, nil, "Fields[payload.clickedContainerTabCount]"}, {"eventSource", "VARCHAR", 255, nil, "Fields[payload.eventSource]"}, {"event", "VARCHAR", 255, nil, "Fields[payload.event]"}, {"hiddenContainersCount", "INTEGER", 255, nil, "Fields[payload.hiddenContainersCount]"}, {"totalContainerTabsCount", "INTEGER", 255, nil, "Fields[payload.totalContainerTabsCount]"}, + {"totalNonContainerTabsCount", "INTEGER", 255, nil, "Fields[payload.totalNonContainerTabsCount]"} } ```