Bug 1808310 - Remove formautofill fill_type_* scalar telemetry r=sgalich

Differential Revision: https://phabricator.services.mozilla.com/D165862
This commit is contained in:
Dimi 2023-01-05 07:39:47 +00:00
Родитель a17ef9ce14
Коммит d78ca0e85c
2 изменённых файлов: 0 добавлений и 63 удалений

Просмотреть файл

@ -545,11 +545,6 @@ class FormAutofillParent extends JSWindowActorParent {
lazy.gFormAutofillStorage.addresses.notifyUsed(guid)
);
};
// Address should be updated
Services.telemetry.scalarAdd(
"formautofill.addresses.fill_type_autofill_update",
1
);
} else {
this._recordFormFillingTime(
"address",
@ -557,11 +552,6 @@ class FormAutofillParent extends JSWindowActorParent {
timeStartedFillingMS
);
lazy.gFormAutofillStorage.addresses.notifyUsed(address.guid);
// Address is merged successfully
Services.telemetry.scalarAdd(
"formautofill.addresses.fill_type_autofill",
1
);
}
} else {
let changedGUIDs = await lazy.gFormAutofillStorage.addresses.mergeToStorage(
@ -596,12 +586,6 @@ class FormAutofillParent extends JSWindowActorParent {
browser.ownerGlobal.openPreferences("privacy-address-autofill");
};
} else {
// We want to exclude the first time form filling.
Services.telemetry.scalarAdd(
"formautofill.addresses.fill_type_manual",
1
);
}
}
return showDoorhanger;

Просмотреть файл

@ -4055,53 +4055,6 @@ formautofill:
- 'main'
formautofill.addresses:
fill_type_manual:
bug_numbers:
- 990200
description: Count at submission time whether the submitted form was filled manually.
expires: never
kind: uint
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
release_channel_collection: opt-out
products:
- 'firefox'
- 'fennec'
record_in_processes:
- 'main'
fill_type_autofill:
bug_numbers:
- 990200
description: Count at submission time whether the submitted form was autofilled.
expires: never
kind: uint
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
release_channel_collection: opt-out
products:
- 'firefox'
- 'fennec'
record_in_processes:
- 'main'
fill_type_autofill_update:
bug_numbers:
- 990200
description: >
Count at submission time whether the submitted form was autofilled, but
the data in form is changed and can not be merged to orginal address profile.
expires: never
kind: uint
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
release_channel_collection: opt-out
products:
- 'firefox'
- 'fennec'
record_in_processes:
- 'main'
detected_sections_count:
bug_numbers:
- 1801039