Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

Latest commit

 

History

History
34 lines (30 loc) · 982 Bytes

data.md

File metadata and controls

34 lines (30 loc) · 982 Bytes

Add-ons Search Detection Pings

This add-on will collect information about search engines.

  • addonsSearchDetection
    • etld_change: indicates a eTLD change
      • webrequest or other: the "API" used to change the eTLD. Note that other is used when the change has not been initiated from the client.
      • extension or server: whether the eTLD change has been done by an extension (add-on) or server.
      • addonId: the add-on ID tied to this change
      • addonVersion: the version of the add-on
      • from: the eTLD of the search endpoint hostname defined by the Search service
      • to: the eTLD of the final endpoint hostname

Example log entry

  "dynamic": {
  "events": [
    [
      123456,
      "addonsSearchDetection",
      "etld_change",
      "webrequest",
      "extension",
      {
        addonId:  "[email protected]",
        addonVersion: "1.2",
        from: "google.com",
        to: "example.com"
      }
    ]
  ]
}