Hybrid Content Telemetry
Telemetry is being introduced to the discovery pane to replace Google Analytics.
The following events are logged to telemetry if:
- HCT is enabled for the host
- Telemetry collection is allowed by the end-user.
Category | Method | Action | Value | Extra | This is logged when... |
---|---|---|---|---|---|
disco.interaction | addon_click | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | An add-on link is clicked |
disco.interaction | download_failed | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | The download of an extension has failed |
disco.interaction | enabled | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | Add-on is enabled |
disco.interaction | installed | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | Add-on is installed |
disco.interaction | install_cancelled | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | Add-on install is cancelled |
disco.interaction | install_started | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | Add-on install has started |
disco.interaction | uninstalled | [addon/theme/statictheme] | [Add-on name] | { origin: [origin] } | Add-on uninstalled |
disco.interaction | navigation_click | click | [Click description] | { origin: [origin] } | When user clicks "Find more Add-ons" |
Testing in your local development environment
Here are the steps to test collection locally:
hctEnabled
is set totrue
by default inconfig/development-disco.js
.- Run
yarn disco:https
to start the disco app because HCT requires HTTPS. - Go to
about:config
and enabledevtools.chrome.enabled
so that the browser console has the CLI enabled. - Open the Browser Console (and not the classic devtools) and type:
let hostURI = Services.io.newURI('https://example.com:3000');
Services.perms.add(hostURI, 'hc_telemetry', Services.perms.ALLOW_ACTION);
Testing on -dev (hosted environment)
You'll need to enable installs from -dev before enabling collection. You can skip this step if it's already been done.
NOTE: It's recommended you do these settings changes in a new profile as changing to the -dev cert will mark all existing add-ons as invalid.
- Right click in
about:config
, selectnew
and then addxpinstall.signatures.dev-root
asBoolean
. It should betrue
. - Right click in
about:config
, selectnew
and addextensions.webapi.testing
asBoolean
. It should betrue
. - Restart the browser.
Now enable collection on -dev:
- Open the Browser Console (and not the classic devtools) and type:
let hostURI = Services.io.newURI('https://discovery.addons-dev.allizom.org');
Services.perms.add(hostURI, 'hc_telemetry', Services.perms.ALLOW_ACTION);
Viewing data collected
- Navigate to
about:telemetry#events-tab
and select thedynamic
filter (top-right dropdown)
If there's no data shown, interact with the disco pane and refresh the page (you will need to reselect dynamic) in the filter.
Here's the link to the -dev disco pane