for #3: metrics from review meeting

This commit is contained in:
groovecoder 2017-02-10 11:02:20 -06:00
parent 4063f44552
commit d391ac7331

View file

@ -72,6 +72,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"clickedContainerTabCount": <number-of-tabs-in-the-container>, "clickedContainerTabCount": <number-of-tabs-in-the-container>,
"event": "open-tab", "event": "open-tab",
@ -83,6 +84,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"event": "edit-containers" "event": "edit-containers"
} }
``` ```
@ -91,6 +93,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"event": "edit-container" "event": "edit-container"
} }
@ -100,6 +103,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"event": "delete-container" "event": "delete-container"
} }
@ -109,6 +113,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"event": "add-container" "event": "add-container"
} }
@ -118,8 +123,10 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"event": "sort-tabs", "event": "sort-tabs",
"totalContainerTabsCount": <number-of-all-container-tabs> "totalContainerTabsCount": <number-of-all-container-tabs>
"totalNonContainerTabsCount": <number-of-all-non-container-tabs>
} }
``` ```
@ -127,6 +134,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"clickedContainerTabCount": <number-of-tabs-in-the-container>, "clickedContainerTabCount": <number-of-tabs-in-the-container>,
"event": "hide-tabs", "event": "hide-tabs",
@ -138,6 +146,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"clickedContainerTabCount": <number-of-tabs-in-the-container>, "clickedContainerTabCount": <number-of-tabs-in-the-container>,
"event": "show-tabs" "event": "show-tabs"
@ -148,6 +157,7 @@ of a `testpilottest` telemetry ping for each scenario.
```js ```js
{ {
"uuid": <uuid>,
"userContextId": <userContextId>, "userContextId": <userContextId>,
"clickedContainerTabCount": <number-of-tabs-in-the-container>, "clickedContainerTabCount": <number-of-tabs-in-the-container>,
"event": "move-tabs-to-window" "event": "move-tabs-to-window"
@ -159,12 +169,14 @@ of a `testpilottest` telemetry ping for each scenario.
```lua ```lua
local schema = { local schema = {
-- column name field type length attributes field name -- 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]"}, {"clickedContainerTabCount", "INTEGER", 255, nil, "Fields[payload.clickedContainerTabCount]"},
{"eventSource", "VARCHAR", 255, nil, "Fields[payload.eventSource]"}, {"eventSource", "VARCHAR", 255, nil, "Fields[payload.eventSource]"},
{"event", "VARCHAR", 255, nil, "Fields[payload.event]"}, {"event", "VARCHAR", 255, nil, "Fields[payload.event]"},
{"hiddenContainersCount", "INTEGER", 255, nil, "Fields[payload.hiddenContainersCount]"}, {"hiddenContainersCount", "INTEGER", 255, nil, "Fields[payload.hiddenContainersCount]"},
{"totalContainerTabsCount", "INTEGER", 255, nil, "Fields[payload.totalContainerTabsCount]"}, {"totalContainerTabsCount", "INTEGER", 255, nil, "Fields[payload.totalContainerTabsCount]"},
{"totalNonContainerTabsCount", "INTEGER", 255, nil, "Fields[payload.totalNonContainerTabsCount]"}
} }
``` ```