Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 2.23 KB

metrics.md

File metadata and controls

66 lines (45 loc) · 2.23 KB

Cliqz Metrics

A summary of the metrics the Cliqz add-on will record.

Data collection

Apart from the standard Test Pilot telemetry data and the standard Cliqz telemetry data, there is also some additional data collection specific to this Test Pilot experiment.

Metrics gathered from the Cliqz add-on will be reported to the Test Pilot add-on, which will augment that information and relay it to Firefox's telemetry system via submitExternalPing.

Here is a rough schema:

{
  event: ‘cliqzEnabled’ or ‘cliqzDisabled’ or ‘cliqzInstalled’ or ‘cliqzUninstalled’ or ‘userVisitedEngineResult’ or ‘userVisitedEngineHost’
  cliqzSession: a session string
  sessionId: a string containing the telemetry session ID
  subsessionId: a string containing the telemetry subsession ID
  contentSearch: ‘google’ or ‘yahoo’ or ‘bing’ or not present
}

Here is an example of the payload portion of a Test Pilot telemetry ping when the add-on is enabled:

"payload": {
  "event": "cliqzEnabled",
  "cliqzSession": "session string",
  "sessionId": "telemetry session ID",
  "subsessionId": "telemetry subsession ID"
}

And here is another example of the payload portion of a Test Pilot telemetry ping after the user has visited bing.com searching for something:

"payload": {
  "event": "userVisitedEngineResult",
  "cliqzSession": "session string",
  "sessionId": "telemetry session ID",
  "subsessionId": "telemetry subsession ID",
  "contentSearch": "bing"
}

Data analysis

The collected data will primarily be used to answer the following questions.

Add-on uninstall rates

How soon do users uninstall the add-on?

This will allow us to understand the overall user satisfaction with Cliqz.

Add-on disabling rates

How often do users disable the add-on?

This will also allow us to understand the overall user satisfaction and engagement with Cliqz.

In-content search rates

How often do users search not through the awesomebar, but by visiting a search engine directly?

This will allow us to understand how well the search capabilities of Cliqz are understood and whether the interactions are intuitive enough.