Bug 1703670: Removed expired telemetry probe networking.ftp_opened_channels_files and networking.ftp_opened_channels_listings r=chutten,necko-reviewers,valentin

Differential Revision: https://phabricator.services.mozilla.com/D111268
This commit is contained in:
jenny 2021-04-10 13:42:04 +00:00
Родитель 6835fd8098
Коммит 9a2b67ba48
2 изменённых файлов: 0 добавлений и 44 удалений

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

@ -1059,9 +1059,6 @@ nsresult nsFtpState::S_list() {
FTP_STATE
nsFtpState::R_list() {
if (mResponseCode / 100 == 1) {
Telemetry::ScalarAdd(
Telemetry::ScalarID::NETWORKING_FTP_OPENED_CHANNELS_LISTINGS, 1);
mRlist1xxReceived = true;
// OK, time to start reading from the data connection.
@ -1102,10 +1099,6 @@ nsFtpState::R_retr() {
if (mResponseCode / 100 == 1) {
mChannel->SetContentType(nsLiteralCString(APPLICATION_OCTET_STREAM));
Telemetry::ScalarAdd(
Telemetry::ScalarID::NETWORKING_FTP_OPENED_CHANNELS_FILES, 1);
mRretr1xxReceived = true;
if (mDataStream && HasPendingCallback())
@ -1189,9 +1182,6 @@ nsFtpState::R_stor() {
}
if (mResponseCode / 100 == 1) {
Telemetry::ScalarAdd(
Telemetry::ScalarID::NETWORKING_FTP_OPENED_CHANNELS_FILES, 1);
LOG(("FTP:(%p) writing on DT\n", this));
mRstor1xxReceived = true;
return FTP_READ_BUF;

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

@ -5879,40 +5879,6 @@ networking:
record_in_processes:
- 'main'
ftp_opened_channels_listings:
bug_numbers:
- 1579507
description: >
Number of FTP channels opened for directory listings.
expires: "77"
keyed: false
kind: uint
notification_emails:
- mnovotny@mozilla.com
products:
- 'firefox'
- 'fennec'
record_in_processes:
- 'main'
release_channel_collection: opt-out
ftp_opened_channels_files:
bug_numbers:
- 1579507
description: >
Number of FTP channels opened for files.
expires: "77"
keyed: false
kind: uint
notification_emails:
- mnovotny@mozilla.com
products:
- 'firefox'
- 'fennec'
record_in_processes:
- 'main'
release_channel_collection: opt-out
http3_enabled:
bug_numbers:
- 1652104