From d391ac73315f4811bf7fef27c744af7de44e2c93 Mon Sep 17 00:00:00 2001 From: groovecoder Date: Fri, 10 Feb 2017 11:02:20 -0600 Subject: [PATCH] for #3: metrics from review meeting --- docs/metrics.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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]"} } ```